-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfile.html
2422 lines (2419 loc) · 270 KB
/
file.html
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
<!DOCTYPE html>
<html>
<head>
<title> Gia Phả Họ Phạm </title>
<style>
</style>
<head>
<body style = "margin: 0 ;padding: 0 ;">
<div id="container" style = "position: relative;">
<div style="white-space:nowrap;font-size:300px;position:absolute;top:0px;left:50px;" > Gia Phả Họ Phạm </div>
<div style="white-space:pre;text-align: center;position:absolute;top:310px;left:50px;height:120px;width:1100px;font-size:45px"> Người ta nguồn gốc từ đâu
Có tổ tiên trước rồi sau có mình
Muốn biết ai sinh thành mà có
Phải xem gia phả mới rõ phân minh !
</div>
<div style="position:absolute;white-space: pre-wrap;top:550px;left:50px;width:1100px;font-size:35px"> Nguyên tổ tiên ta từ trước ở làng Rĩ-xá huyện Kim Bảng, tỉnh Hà Nam (nay là tỉnh Nam Hà) đến Nội Xá (tức Vạn Thắng) sinh cơ lập nghiệp truyền đến chúng ta ngày nay. Nay là thôn Vạn Thắng, xã Vạn Thái, huyện Ứng Hoà, tỉnh Hà Tây.
Gia phả trước kia đều có cả, nhưng chẳng may giặc Pháp sang xâm lăng, đốt phá làng mạc năm 1952 nên cháy mất. Để sau này cho con cháu biết rõ nguồn gốc ông cha ta nên ngày 3-11-1972 dương lịch tức là ngày 28-9 năm Nhâm Tý (Âm lịch). Ông cụ Phạm Quý Triêm là cháu 11 đời soạn và ông Phạm Trọng Tấn là cháu 12 đời ghi chép thành văn bản.
Để tránh rách nát, thất lạc, được sự nhất trí cụa Họ vào ngày 13-2-1992 tức 10-1-Tân Mùi, Phạm Hồng Chính là cháu 13 đời chép lại theo quyển gia phả gốc mà 2 ông Phạm Quý Triêm và Phạm Trọng Tấn đã soạn thảo. Thêm vào đó, có bổ sung các đời sau.
Sau 28 năm, ngày 16-12-2020 tức ngày 3-11-Canh Tý, để cập nhật gia phả, Phạm Chí Bách là cháu 14 đời chép lại quyển gia phả mà ông Phạm Hồng Chính chép lại.
Trong quá trình ghi chép laị, để tránh "tam sao thất bản" người chép lại đã chép đúng nguyên bản chỉ sửa lại những câu, chữ trong gia phả gốc mà thôi.
Và họ coi đây là Gia Phả Gốc.
</div>
</div>
<div style = "border-width:2px;position: absolute;top:6.25px;left:46738.7451171875px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "1.0.1name" onclick="myFunction('1.0.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:12.5px;left:46744.9951171875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Không rõ
Tự Phúc An </div>
<div id = "1.0.1.1name" onclick="myFunction('1.0.1.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:100.0px;left:46744.9951171875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Không rõ
Hiệu Từ Ơn </div>
<div style = "border-width:2px;position: absolute;top:218.75px;left:46738.7451171875px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "2.0.1name" onclick="myFunction('2.0.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:225.0px;left:46744.9951171875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Không rõ
Tự Phúc Kiên </div>
<div id = "2.0.1.1name" onclick="myFunction('2.0.1.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:312.5px;left:46744.9951171875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Không rõ
Hiệu Từ Trân </div>
<div style = "border-width:2px;position: absolute;top:431.25px;left:46738.7451171875px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "3.0.1name" onclick="myFunction('3.0.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:437.5px;left:46744.9951171875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Không rõ
Tự Phúc Tiến </div>
<div id = "3.0.1.1name" onclick="myFunction('3.0.1.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:525.0px;left:46744.9951171875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Duyên </div>
<div style = "border-width:2px;position: absolute;top:643.75px;left:46738.7451171875px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "4.0.1name" onclick="myFunction('4.0.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:650.0px;left:46744.9951171875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phấn
Tự Phúc Hữu </div>
<div id = "4.0.1.1name" onclick="myFunction('4.0.1.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:737.5px;left:46744.9951171875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Không rõ </div>
<div style = "border-width:2px;position: absolute;top:856.25px;left:44024.365234375px; width: 5722.509765625px;height: 162.5px;border-style:dashed;"></div>
<div id = "5.0.1name" onclick="myFunction('5.0.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:862.5px;left:46744.9951171875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Đình Ban
Tự Đình Huyên </div>
<div id = "5.0.1.1name" onclick="myFunction('5.0.1.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:950.0px;left:44030.615234375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Nhơn
Hiệu Lê </div>
<div id = "5.0.1.2name" onclick="myFunction('5.0.1.2')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:950.0px;left:49459.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Sanh
Hiệu Văng </div>
<div style = "border-width:2px;position: absolute;top:1068.75px;left:44024.365234375px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "6.0.1name" onclick="myFunction('6.0.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1075.0px;left:44030.615234375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Thọ
Tự Đình Giai </div>
<div id = "6.0.1.1name" onclick="myFunction('6.0.1.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1162.5px;left:44030.615234375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Tiếp
Hiệu Đăng </div>
<div style = "border-width:2px;position: absolute;top:1281.25px;left:38901.85546875px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "7.1.1name" onclick="myFunction('7.1.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1287.5px;left:38908.10546875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Trương
Tự Công Thạc </div>
<div id = "7.1.1.1name" onclick="myFunction('7.1.1.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1375.0px;left:38908.10546875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Ngô Thị Khước
Hiệu Mỹ </div>
<div style = "border-width:2px;position: absolute;top:1493.75px;left:10310.546875px; width: 38211.328125px;height: 162.5px;border-style:dashed;"></div>
<div id = "8.1.1name" onclick="myFunction('8.1.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1500.0px;left:29275.5859375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Toa
Tự Công Bá </div>
<div id = "8.1.1.1name" onclick="myFunction('8.1.1.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1587.5px;left:10316.796875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Chỉnh
Hiệu Từ Ninh </div>
<div id = "8.1.1.2name" onclick="myFunction('8.1.1.2')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1587.5px;left:29782.8125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Lịch
Hiệu Từ Tĩnh </div>
<div id = "8.1.1.3name" onclick="myFunction('8.1.1.3')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1587.5px;left:40922.65625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Ngô Thị Hinh
Hiệu Từ Hương </div>
<div id = "8.1.1.4name" onclick="myFunction('8.1.1.4')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1587.5px;left:48234.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Đỗ Thị Trác </div>
<div style = "border-width:2px;position: absolute;top:1493.75px;left:48534.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "8.1.2name" onclick="myFunction('8.1.2')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1500.0px;left:48540.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Không rõ
Tự Đình Tín </div>
<div style = "border-width:2px;position: absolute;top:1706.25px;left:146.875px; width: 20621.09375px;height: 162.5px;border-style:dashed;"></div>
<div id = "9.1.1name" onclick="myFunction('9.1.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1712.5px;left:10316.796875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Giáo
Tự Đình Phan </div>
<div id = "9.1.1.1name" onclick="myFunction('9.1.1.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1800.0px;left:153.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Trần Quí Nguyên
Hiệu Nguyên </div>
<div id = "9.1.1.2name" onclick="myFunction('9.1.1.2')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1800.0px;left:14604.296875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Nghiên
Hiệu Hiểu </div>
<div id = "9.1.1.3name" onclick="myFunction('9.1.1.3')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1800.0px;left:20480.46875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Đệ
Hiệu Đê </div>
<div style = "border-width:2px;position: absolute;top:1706.25px;left:21584.375px; width: 11012.5px;height: 162.5px;border-style:dashed;"></div>
<div id = "9.1.2name" onclick="myFunction('9.1.2')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1712.5px;left:26950.0px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Huyến
Tự Đình Thiều </div>
<div id = "9.1.2.1name" onclick="myFunction('9.1.2.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1800.0px;left:21590.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Huynh </div>
<div id = "9.1.2.2name" onclick="myFunction('9.1.2.2')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1800.0px;left:26126.953125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Cao Thị Thanh </div>
<div id = "9.1.2.3name" onclick="myFunction('9.1.2.3')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1800.0px;left:32309.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nghiêm Thị Đoan
Hiệu Chính </div>
<div style = "border-width:2px;position: absolute;top:1706.25px;left:32609.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "9.1.3name" onclick="myFunction('9.1.3')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1712.5px;left:32615.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Dư </div>
<div style = "border-width:2px;position: absolute;top:1706.25px;left:33910.9375px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "9.1.4name" onclick="myFunction('9.1.4')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1712.5px;left:33917.1875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Xuyển
Tự Đình Cẩn </div>
<div id = "9.1.4.1name" onclick="myFunction('9.1.4.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1800.0px;left:33917.1875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Trần Thị Vạnh
Hiệu Vịnh </div>
<div style = "border-width:2px;position: absolute;top:1706.25px;left:44782.8125px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "9.1.5name" onclick="myFunction('9.1.5')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1712.5px;left:44789.0625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Hoản
Tự Đình Lâm </div>
<div id = "9.1.5.1name" onclick="myFunction('9.1.5.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1800.0px;left:44789.0625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Ngô Thị Thướt
Hiệu Thiết </div>
<div style = "border-width:2px;position: absolute;top:1706.25px;left:47309.375px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "9.1.6name" onclick="myFunction('9.1.6')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1712.5px;left:47315.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Huyển
Tự Đình Chất </div>
<div id = "9.1.6.1name" onclick="myFunction('9.1.6.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1800.0px;left:47315.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phùng Thị Điểm
Hiệu Kiển </div>
<div style = "border-width:2px;position: absolute;top:1706.25px;left:47615.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "9.1.7name" onclick="myFunction('9.1.7')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1712.5px;left:47621.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Diễn </div>
<div style = "border-width:2px;position: absolute;top:1706.25px;left:47921.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "9.1.8name" onclick="myFunction('9.1.8')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1712.5px;left:47928.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Triện </div>
<div style = "border-width:2px;position: absolute;top:1706.25px;left:48228.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "9.1.9name" onclick="myFunction('9.1.9')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1712.5px;left:48234.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Đình Duyện </div>
<div style = "border-width:2px;position: absolute;top:1918.75px;left:146.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "10.1.1name" onclick="myFunction('10.1.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1925.0px;left:153.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Lãng </div>
<div style = "border-width:2px;position: absolute;top:1918.75px;left:9908.59375px; width: 9672.65625px;height: 162.5px;border-style:dashed;"></div>
<div id = "10.1.2name" onclick="myFunction('10.1.2')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1925.0px;left:14604.296875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Hịn
Tự Đình Chương </div>
<div id = "10.1.2.1name" onclick="myFunction('10.1.2.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2012.5px;left:9914.84375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Đỗ Thị Chinh
Hiệu Trường </div>
<div id = "10.1.2.2name" onclick="myFunction('10.1.2.2')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2012.5px;left:19293.75px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Ngô Thị Khuyết
Hiệu Khang </div>
<div style = "border-width:2px;position: absolute;top:1918.75px;left:20053.125px; width: 1135.9375px;height: 162.5px;border-style:dashed;"></div>
<div id = "10.1.3name" onclick="myFunction('10.1.3')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1925.0px;left:20480.46875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Đình Nghĩa </div>
<div id = "10.1.3.1name" onclick="myFunction('10.1.3.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2012.5px;left:20059.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Đặng Thị Mụ </div>
<div id = "10.1.3.2name" onclick="myFunction('10.1.3.2')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2012.5px;left:20901.5625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Lê Thị Quệ </div>
<div style = "border-width:2px;position: absolute;top:1918.75px;left:22196.875px; width: 8141.40625px;height: 162.5px;border-style:dashed;"></div>
<div id = "10.1.4name" onclick="myFunction('10.1.4')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1925.0px;left:26126.953125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Tụy
Tự Đình Thúy </div>
<div id = "10.1.4.1name" onclick="myFunction('10.1.4.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2012.5px;left:22203.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nghiêm Thị Vấm
Hiệu Quyển </div>
<div id = "10.1.4.2name" onclick="myFunction('10.1.4.2')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2012.5px;left:30050.78125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Ngô Thị Tiện
Hiệu Hiền </div>
<div style = "border-width:2px;position: absolute;top:1918.75px;left:33068.75px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "10.1.5name" onclick="myFunction('10.1.5')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1925.0px;left:33075.0px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Đình Kiện
Tự Đình Trọng </div>
<div id = "10.1.5.1name" onclick="myFunction('10.1.5.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2012.5px;left:33075.0px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Tẩy
Hiệu Đảng </div>
<div style = "border-width:2px;position: absolute;top:1918.75px;left:33528.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "10.1.6name" onclick="myFunction('10.1.6')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1925.0px;left:33534.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Đình Tráng </div>
<div style = "border-width:2px;position: absolute;top:1918.75px;left:33834.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "10.1.7name" onclick="myFunction('10.1.7')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1925.0px;left:33840.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Đình Mận
Tự Đình Tấn </div>
<div style = "border-width:2px;position: absolute;top:1918.75px;left:34140.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "10.1.8name" onclick="myFunction('10.1.8')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1925.0px;left:34146.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Trấn </div>
<div style = "border-width:2px;position: absolute;top:1918.75px;left:34446.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "10.1.9name" onclick="myFunction('10.1.9')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1925.0px;left:34453.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Võ </div>
<div style = "border-width:2px;position: absolute;top:1918.75px;left:34753.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "10.1.10name" onclick="myFunction('10.1.10')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1925.0px;left:34759.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Hường </div>
<div style = "border-width:2px;position: absolute;top:1918.75px;left:42562.5px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "10.1.11name" onclick="myFunction('10.1.11')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1925.0px;left:42568.75px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Đình Khắc
Tự Đình Du </div>
<div id = "10.1.11.1name" onclick="myFunction('10.1.11.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2012.5px;left:42568.75px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Ngô Thị Hiện </div>
<div style = "border-width:2px;position: absolute;top:1918.75px;left:47003.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "10.1.12name" onclick="myFunction('10.1.12')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1925.0px;left:47009.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Quyển </div>
<div style = "border-width:2px;position: absolute;top:1918.75px;left:47309.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "10.1.13name" onclick="myFunction('10.1.13')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1925.0px;left:47315.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Quyển </div>
<div style = "border-width:2px;position: absolute;top:2131.25px;left:2826.5625px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "11.1.1name" onclick="myFunction('11.1.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2137.5px;left:2832.8125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Tế
Tự Mạnh Quỳnh </div>
<div id = "11.1.1.1name" onclick="myFunction('11.1.1.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2225.0px;left:2832.8125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nghiêm Thị Châu
Hiệu Chân </div>
<div style = "border-width:2px;position: absolute;top:2131.25px;left:6501.5625px; width: 1901.5625px;height: 162.5px;border-style:dashed;"></div>
<div id = "11.1.2name" onclick="myFunction('11.1.2')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2137.5px;left:7311.71875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thế </div>
<div id = "11.1.2.1name" onclick="myFunction('11.1.2.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2225.0px;left:6507.8125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Viên
Hiệu Viên </div>
<div id = "11.1.2.2name" onclick="myFunction('11.1.2.2')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2225.0px;left:8115.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Đỗ Thị Thuyện </div>
<div style = "border-width:2px;position: absolute;top:2131.25px;left:9851.171875px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "11.1.3name" onclick="myFunction('11.1.3')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2137.5px;left:9857.421875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thiếp
Tự Đình Tuân </div>
<div id = "11.1.3.1name" onclick="myFunction('11.1.3.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2225.0px;left:9857.421875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Thuế </div>
<div style = "border-width:2px;position: absolute;top:2131.25px;left:15038.28125px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "11.1.4name" onclick="myFunction('11.1.4')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2137.5px;left:15044.53125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Phổ
Tự Đình Côi </div>
<div id = "11.1.4.1name" onclick="myFunction('11.1.4.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2225.0px;left:15044.53125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Diễn </div>
<div style = "border-width:2px;position: absolute;top:2131.25px;left:16378.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "11.1.5name" onclick="myFunction('11.1.5')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2137.5px;left:16384.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Kinh </div>
<div style = "border-width:2px;position: absolute;top:2131.25px;left:16684.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "11.1.6name" onclick="myFunction('11.1.6')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2137.5px;left:16690.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thi Quyền </div>
<div style = "border-width:2px;position: absolute;top:2131.25px;left:16990.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "11.1.7name" onclick="myFunction('11.1.7')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2137.5px;left:16996.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Lượng </div>
<div style = "border-width:2px;position: absolute;top:2131.25px;left:18215.625px; width: 1518.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "11.1.8name" onclick="myFunction('11.1.8')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2137.5px;left:18834.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Quý Triêm </div>
<div id = "11.1.8.1name" onclick="myFunction('11.1.8.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2225.0px;left:18221.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Trá </div>
<div id = "11.1.8.2name" onclick="myFunction('11.1.8.2')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2225.0px;left:19446.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Trần Thị Trừ </div>
<div style = "border-width:2px;position: absolute;top:2131.25px;left:19746.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "11.1.9name" onclick="myFunction('11.1.9')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2137.5px;left:19753.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Kiệu </div>
<div style = "border-width:2px;position: absolute;top:2131.25px;left:20053.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "11.1.10name" onclick="myFunction('11.1.10')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2137.5px;left:20059.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Vòng </div>
<div style = "border-width:2px;position: absolute;top:2131.25px;left:20359.375px; width: 600.0px;height: 162.5px;border-style:dashed;"></div>
<div id = "11.1.11name" onclick="myFunction('11.1.11')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2137.5px;left:20518.75px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Trẽ
Tự Đình Trẽ </div>
<div id = "11.1.11.1name" onclick="myFunction('11.1.11.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2225.0px;left:20365.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Trần Thị Xuân </div>
<div id = "11.1.11.2name" onclick="myFunction('11.1.11.2')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2225.0px;left:20671.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Trần Thị Loát </div>
<div style = "border-width:2px;position: absolute;top:2131.25px;left:20971.875px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "11.1.12name" onclick="myFunction('11.1.12')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2137.5px;left:20978.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Trượi
Tự Đình Trượi </div>
<div id = "11.1.12.1name" onclick="myFunction('11.1.12.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2225.0px;left:20978.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Đỗ Thị Thoa </div>
<div style = "border-width:2px;position: absolute;top:2131.25px;left:21278.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "11.1.13name" onclick="myFunction('11.1.13')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2137.5px;left:21284.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Ủn </div>
<div style = "border-width:2px;position: absolute;top:2131.25px;left:21890.625px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "11.1.14name" onclick="myFunction('11.1.14')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2137.5px;left:21896.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Điện </div>
<div id = "11.1.14.1name" onclick="myFunction('11.1.14.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2225.0px;left:21896.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Không rõ </div>
<div style = "border-width:2px;position: absolute;top:2131.25px;left:22196.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "11.1.15name" onclick="myFunction('11.1.15')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2137.5px;left:22203.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị My </div>
<div style = "border-width:2px;position: absolute;top:2131.25px;left:22503.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "11.1.16name" onclick="myFunction('11.1.16')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2137.5px;left:22509.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Nhị </div>
<div style = "border-width:2px;position: absolute;top:2131.25px;left:28092.1875px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "11.1.17name" onclick="myFunction('11.1.17')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2137.5px;left:28098.4375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Úy </div>
<div id = "11.1.17.1name" onclick="myFunction('11.1.17.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2225.0px;left:28098.4375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Quỳ </div>
<div style = "border-width:2px;position: absolute;top:2131.25px;left:31078.125px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "11.1.18name" onclick="myFunction('11.1.18')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2137.5px;left:31084.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Vân </div>
<div id = "11.1.18.1name" onclick="myFunction('11.1.18.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2225.0px;left:31084.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Ngô Thị Xuyên </div>
<div style = "border-width:2px;position: absolute;top:2131.25px;left:31690.625px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "11.1.19name" onclick="myFunction('11.1.19')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2137.5px;left:31696.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Sơn </div>
<div id = "11.1.19.1name" onclick="myFunction('11.1.19.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2225.0px;left:31696.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Ngô Thị Chủy </div>
<div style = "border-width:2px;position: absolute;top:2131.25px;left:31996.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "11.1.20name" onclick="myFunction('11.1.20')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2137.5px;left:32003.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Thủy </div>
<div style = "border-width:2px;position: absolute;top:2131.25px;left:32915.625px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "11.1.21name" onclick="myFunction('11.1.21')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2137.5px;left:32921.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Thắng
Tự Đình Tơ </div>
<div id = "11.1.21.1name" onclick="myFunction('11.1.21.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2225.0px;left:32921.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Không rõ </div>
<div style = "border-width:2px;position: absolute;top:2131.25px;left:33221.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "11.1.22name" onclick="myFunction('11.1.22')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2137.5px;left:33228.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Hệ </div>
<div style = "border-width:2px;position: absolute;top:2131.25px;left:38428.125px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "11.1.23name" onclick="myFunction('11.1.23')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2137.5px;left:38434.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Khải </div>
<div id = "11.1.23.1name" onclick="myFunction('11.1.23.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2225.0px;left:38434.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Phế </div>
<div style = "border-width:2px;position: absolute;top:2131.25px;left:43557.8125px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "11.1.24name" onclick="myFunction('11.1.24')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2137.5px;left:43564.0625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Khích </div>
<div id = "11.1.24.1name" onclick="myFunction('11.1.24.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2225.0px;left:43564.0625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Rúc </div>
<div style = "border-width:2px;position: absolute;top:2131.25px;left:46084.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "11.1.25name" onclick="myFunction('11.1.25')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2137.5px;left:46090.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Khúc </div>
<div style = "border-width:2px;position: absolute;top:2131.25px;left:46390.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "11.1.26name" onclick="myFunction('11.1.26')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2137.5px;left:46396.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Đích </div>
<div style = "border-width:2px;position: absolute;top:2131.25px;left:46696.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "11.1.27name" onclick="myFunction('11.1.27')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2137.5px;left:46703.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Thích </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:453.125px; width: 600.0px;height: 162.5px;border-style:dashed;"></div>
<div id = "12.1.1name" onclick="myFunction('12.1.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:612.5px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Mạnh Thao
Tự Hồng Thủy </div>
<div id = "12.1.1.1name" onclick="myFunction('12.1.1.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2437.5px;left:459.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Ịch
Hiệu Địch </div>
<div id = "12.1.1.2name" onclick="myFunction('12.1.1.2')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2437.5px;left:765.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Xuân </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:1065.625px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "12.1.2name" onclick="myFunction('12.1.2')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:1071.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Trọng Tấn
Tự Song Hà </div>
<div id = "12.1.2.1name" onclick="myFunction('12.1.2.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2437.5px;left:1071.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Đặng Thị È
Hiệu Trịnh </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:1984.375px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "12.1.3name" onclick="myFunction('12.1.3')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:1990.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Tam Cấp
Tự Trung </div>
<div id = "12.1.3.1name" onclick="myFunction('12.1.3.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2437.5px;left:1990.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Vinh An </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:3362.5px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "12.1.4name" onclick="myFunction('12.1.4')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:3368.75px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Tư Phách </div>
<div id = "12.1.4.1name" onclick="myFunction('12.1.4.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2437.5px;left:3368.75px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Vũ Thị Nhiễu </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:4128.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "12.1.5name" onclick="myFunction('12.1.5')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:4134.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Thục </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:4434.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "12.1.6name" onclick="myFunction('12.1.6')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:4440.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Qui </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:4740.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "12.1.7name" onclick="myFunction('12.1.7')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:4746.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Phác </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:5046.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "12.1.8name" onclick="myFunction('12.1.8')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:5053.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Thoa </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:5506.25px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "12.1.9name" onclick="myFunction('12.1.9')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:5512.5px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Đình Lạc </div>
<div id = "12.1.9.1name" onclick="myFunction('12.1.9.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2437.5px;left:5512.5px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Đỗ Thị Thoan </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:6425.0px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "12.1.10name" onclick="myFunction('12.1.10')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:6431.25px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Trọng Trạc </div>
<div id = "12.1.10.1name" onclick="myFunction('12.1.10.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2437.5px;left:6431.25px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nghiêm Thị Phi </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:7190.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "12.1.11name" onclick="myFunction('12.1.11')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:7196.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Các </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:7496.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "12.1.12name" onclick="myFunction('12.1.12')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:7503.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Tác </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:7803.125px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "12.1.13name" onclick="myFunction('12.1.13')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:7809.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Đình Kế </div>
<div id = "12.1.13.1name" onclick="myFunction('12.1.13.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2437.5px;left:7809.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị ? </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:8109.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "12.1.14name" onclick="myFunction('12.1.14')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:8115.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Chuyền </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:8415.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "12.1.15name" onclick="myFunction('12.1.15')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:8421.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Hiền </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:8721.875px; width: 2552.34375px;height: 162.5px;border-style:dashed;"></div>
<div id = "12.1.16name" onclick="myFunction('12.1.16')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:9857.421875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Tất Tố </div>
<div id = "12.1.16.1name" onclick="myFunction('12.1.16.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2437.5px;left:8728.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Dương Thị Sinh </div>
<div id = "12.1.16.2name" onclick="myFunction('12.1.16.2')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2437.5px;left:10986.71875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Vụn </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:14004.6875px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "12.1.17name" onclick="myFunction('12.1.17')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:14010.9375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Mạnh Quán </div>
<div id = "12.1.17.1name" onclick="myFunction('12.1.17.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2437.5px;left:14010.9375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Sinh </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:14846.875px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "12.1.18name" onclick="myFunction('12.1.18')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:14853.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Đình Độ </div>
<div id = "12.1.18.1name" onclick="myFunction('12.1.18.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2437.5px;left:14853.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Ngắn </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:15153.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "12.1.19name" onclick="myFunction('12.1.19')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:15159.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Trọng Trạch
Tự Lê Thành </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:15459.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "12.1.20name" onclick="myFunction('12.1.20')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:15465.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Tiễn </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:15765.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "12.1.21name" onclick="myFunction('12.1.21')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:15771.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Uyên </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:16071.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "12.1.22name" onclick="myFunction('12.1.22')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:16078.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Hải </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:17296.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "12.1.23name" onclick="myFunction('12.1.23')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:17303.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Không rõ
Tự Đình Ân </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:17603.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "12.1.24name" onclick="myFunction('12.1.24')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:17609.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Thiêm </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:17909.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "12.1.25name" onclick="myFunction('12.1.25')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:17915.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Đạm </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:18215.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "12.1.26name" onclick="myFunction('12.1.26')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:18221.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Bình </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:18521.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "12.1.27name" onclick="myFunction('12.1.27')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:18528.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Hiếu </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:18828.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "12.1.28name" onclick="myFunction('12.1.28')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:18834.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Trị </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:19134.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "12.1.29name" onclick="myFunction('12.1.29')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:19140.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Dương </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:19440.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "12.1.30name" onclick="myFunction('12.1.30')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:19446.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Hảo </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:20665.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "12.1.31name" onclick="myFunction('12.1.31')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:20671.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Be </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:20971.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "12.1.32name" onclick="myFunction('12.1.32')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:20978.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Quyên </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:24646.875px; width: 3050.0px;height: 162.5px;border-style:dashed;"></div>
<div id = "12.1.33name" onclick="myFunction('12.1.33')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:26031.25px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Túy </div>
<div id = "12.1.33.1name" onclick="myFunction('12.1.33.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2437.5px;left:24653.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Xì </div>
<div id = "12.1.33.2name" onclick="myFunction('12.1.33.2')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2437.5px;left:27409.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Ngô Thị Thu </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:28934.375px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "12.1.34name" onclick="myFunction('12.1.34')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:28940.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Hảo </div>
<div id = "12.1.34.1name" onclick="myFunction('12.1.34.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2437.5px;left:28940.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Tiết Thị Ngữ </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:29853.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "12.1.35name" onclick="myFunction('12.1.35')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:29859.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Quí </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:30159.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "12.1.36name" onclick="myFunction('12.1.36')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:30165.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Lan </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:30771.875px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "12.1.37name" onclick="myFunction('12.1.37')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:30778.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Vụ </div>
<div id = "12.1.37.1name" onclick="myFunction('12.1.37.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2437.5px;left:30778.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Thanh </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:31384.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "12.1.38name" onclick="myFunction('12.1.38')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:31390.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Vũ </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:36284.375px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "12.1.39name" onclick="myFunction('12.1.39')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:36290.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Chiểu </div>
<div id = "12.1.39.1name" onclick="myFunction('12.1.39.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2437.5px;left:36290.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Trạc </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:38887.5px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "12.1.40name" onclick="myFunction('12.1.40')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:38893.75px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Bình </div>
<div id = "12.1.40.1name" onclick="myFunction('12.1.40.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2437.5px;left:38893.75px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Chẩn </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:40571.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "12.1.41name" onclick="myFunction('12.1.41')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:40578.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Ca </div>
<div style = "border-width:2px;position: absolute;top:2343.75px;left:43557.8125px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "12.1.42name" onclick="myFunction('12.1.42')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2350.0px;left:43564.0625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Mạnh Khoa </div>
<div id = "12.1.42.1name" onclick="myFunction('12.1.42.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2437.5px;left:43564.0625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Ca </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:453.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.1name" onclick="myFunction('13.1.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:459.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Vinh </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:759.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.2name" onclick="myFunction('13.1.2')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:765.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Phái </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:1371.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.3name" onclick="myFunction('13.1.3')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:1378.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị An Khang </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:1678.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.4name" onclick="myFunction('13.1.4')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:1684.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Minh Phương </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:2137.5px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "13.1.5name" onclick="myFunction('13.1.5')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:2143.75px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Hồng Chuyên
Tự Nhất Nguyên </div>
<div id = "13.1.5.1name" onclick="myFunction('13.1.5.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2650.0px;left:2143.75px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thu Hương </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:2596.875px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "13.1.6name" onclick="myFunction('13.1.6')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:2603.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Hồng Ngoạn </div>
<div id = "13.1.6.1name" onclick="myFunction('13.1.6.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2650.0px;left:2603.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Lê Thị Thu Minh </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:3056.25px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "13.1.7name" onclick="myFunction('13.1.7')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:3062.5px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Hồng Trung </div>
<div id = "13.1.7.1name" onclick="myFunction('13.1.7.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2650.0px;left:3062.5px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Ngọ </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:3668.75px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "13.1.8name" onclick="myFunction('13.1.8')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:3675.0px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Hồng Chính </div>
<div id = "13.1.8.1name" onclick="myFunction('13.1.8.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2650.0px;left:3675.0px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thi Hoan </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:5353.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.9name" onclick="myFunction('13.1.9')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:5359.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Hoan </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:5659.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.10name" onclick="myFunction('13.1.10')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:5665.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Toan </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:5965.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.11name" onclick="myFunction('13.1.11')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:5971.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Phi Hùng </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:6271.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.12name" onclick="myFunction('13.1.12')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:6278.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Hiệp </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:6578.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.13name" onclick="myFunction('13.1.13')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:6584.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Điệp </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:6884.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.14name" onclick="myFunction('13.1.14')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:6890.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Hạnh </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:8721.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.15name" onclick="myFunction('13.1.15')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:8728.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Tâm </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:9028.125px; width: 753.125px;height: 162.5px;border-style:dashed;"></div>
<div id = "13.1.16name" onclick="myFunction('13.1.16')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:9264.0625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Tất Thắng </div>
<div id = "13.1.16.1name" onclick="myFunction('13.1.16.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2650.0px;left:9034.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Y lan </div>
<div id = "13.1.16.2name" onclick="myFunction('13.1.16.2')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2650.0px;left:9493.75px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Lê Thị Thu Hương </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:10406.25px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "13.1.17name" onclick="myFunction('13.1.17')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:10412.5px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Tất Thành </div>
<div id = "13.1.17.1name" onclick="myFunction('13.1.17.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2650.0px;left:10412.5px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Trần Thị Thu Trang </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:11171.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.18name" onclick="myFunction('13.1.18')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:11178.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Ánh </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:11478.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.19name" onclick="myFunction('13.1.19')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:11484.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Khanh </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:11784.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.20name" onclick="myFunction('13.1.20')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:11790.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Nhung </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:12090.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.21name" onclick="myFunction('13.1.21')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:12096.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Dung </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:12703.125px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "13.1.22name" onclick="myFunction('13.1.22')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:12709.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Tuấn Anh </div>
<div id = "13.1.22.1name" onclick="myFunction('13.1.22.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2650.0px;left:12709.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Chiêm </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:13468.75px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "13.1.23name" onclick="myFunction('13.1.23')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:13475.0px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Tuấn Hưng </div>
<div id = "13.1.23.1name" onclick="myFunction('13.1.23.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2650.0px;left:13475.0px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Hoàng Thị Thúy </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:13928.125px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "13.1.24name" onclick="myFunction('13.1.24')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:13934.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Quang </div>
<div id = "13.1.24.1name" onclick="myFunction('13.1.24.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2650.0px;left:13934.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Trang Thị Tuyết </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:14234.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.25name" onclick="myFunction('13.1.25')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:14240.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Đông </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:14540.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.26name" onclick="myFunction('13.1.26')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:14546.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Hương </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:23115.625px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "13.1.27name" onclick="myFunction('13.1.27')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:23121.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Hồng Thái </div>
<div id = "13.1.27.1name" onclick="myFunction('13.1.27.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2650.0px;left:23121.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Trần Thị Mỹ </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:23728.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.28name" onclick="myFunction('13.1.28')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:23734.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Hồng Minh </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:24340.625px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "13.1.29name" onclick="myFunction('13.1.29')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:24346.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Pham Văn Từ </div>
<div id = "13.1.29.1name" onclick="myFunction('13.1.29.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2650.0px;left:24346.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Chẵn </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:25106.25px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "13.1.30name" onclick="myFunction('13.1.30')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:25112.5px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Liên </div>
<div id = "13.1.30.1name" onclick="myFunction('13.1.30.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2650.0px;left:25112.5px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Sáu </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:25565.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.31name" onclick="myFunction('13.1.31')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:25571.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Hiếu </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:25871.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.32name" onclick="myFunction('13.1.32')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:25878.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Thư </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:26178.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.33name" onclick="myFunction('13.1.33')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:26184.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thi Ninh </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:26943.75px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "13.1.34name" onclick="myFunction('13.1.34')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:26950.0px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Thư </div>
<div id = "13.1.34.1name" onclick="myFunction('13.1.34.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2650.0px;left:26950.0px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Ngô Thị Lan </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:27862.5px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "13.1.35name" onclick="myFunction('13.1.35')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:27868.75px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Thịnh </div>
<div id = "13.1.35.1name" onclick="myFunction('13.1.35.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2650.0px;left:27868.75px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Phúc </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:28321.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.36name" onclick="myFunction('13.1.36')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:28328.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Hải </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:28628.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.37name" onclick="myFunction('13.1.37')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:28634.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Hưng </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:28934.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.38name" onclick="myFunction('13.1.38')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:28940.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Hà </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:29240.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.39name" onclick="myFunction('13.1.39')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:29246.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Hiền </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:29546.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.40name" onclick="myFunction('13.1.40')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:29553.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Huệ </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:30465.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.41name" onclick="myFunction('13.1.41')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:30471.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Hùng </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:30771.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.42name" onclick="myFunction('13.1.42')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:30778.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Dũng </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:31078.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.43name" onclick="myFunction('13.1.43')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:31084.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Huyền </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:35671.875px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "13.1.44name" onclick="myFunction('13.1.44')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:35678.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Quốc Hiểu </div>
<div id = "13.1.44.1name" onclick="myFunction('13.1.44.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2650.0px;left:35678.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Trịnh Thị Minh </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:36590.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.45name" onclick="myFunction('13.1.45')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:36596.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Hiền </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:36896.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.46name" onclick="myFunction('13.1.46')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:36903.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Hòa </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:37509.375px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "13.1.47name" onclick="myFunction('13.1.47')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:37515.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Bẹt
Tự Văn Việt </div>
<div id = "13.1.47.1name" onclick="myFunction('13.1.47.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2650.0px;left:37515.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Dé </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:38275.0px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "13.1.48name" onclick="myFunction('13.1.48')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:38281.25px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Thành </div>
<div id = "13.1.48.1name" onclick="myFunction('13.1.48.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2650.0px;left:38281.25px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Liên </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:38734.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.49name" onclick="myFunction('13.1.49')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:38740.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Thanh </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:39040.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.50name" onclick="myFunction('13.1.50')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:39046.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Vinh </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:39346.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.51name" onclick="myFunction('13.1.51')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:39353.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Bột </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:39653.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.52name" onclick="myFunction('13.1.52')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:39659.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Liên </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:39959.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.53name" onclick="myFunction('13.1.53')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:39965.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thi Minh </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:40265.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.54name" onclick="myFunction('13.1.54')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:40271.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Tám </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:41337.5px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "13.1.55name" onclick="myFunction('13.1.55')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:41343.75px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Mạnh Kì </div>
<div id = "13.1.55.1name" onclick="myFunction('13.1.55.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2650.0px;left:41343.75px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Huynh </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:42103.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.56name" onclick="myFunction('13.1.56')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:42109.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Hồng Cẩm </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:42868.75px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "13.1.57name" onclick="myFunction('13.1.57')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:42875.0px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Toán </div>
<div id = "13.1.57.1name" onclick="myFunction('13.1.57.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2650.0px;left:42875.0px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Lý </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:43787.5px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "13.1.58name" onclick="myFunction('13.1.58')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:43793.75px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Đoán
Tự Văn Tư </div>
<div id = "13.1.58.1name" onclick="myFunction('13.1.58.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2650.0px;left:43793.75px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Khỏe </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:44553.125px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "13.1.59name" onclick="myFunction('13.1.59')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:44559.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Đoàn
Tự Văn Năm </div>
<div id = "13.1.59.1name" onclick="myFunction('13.1.59.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2650.0px;left:44559.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Hiếu </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:45165.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.60name" onclick="myFunction('13.1.60')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:45171.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Dung </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:45471.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.61name" onclick="myFunction('13.1.61')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:45478.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Dinh </div>
<div style = "border-width:2px;position: absolute;top:2556.25px;left:45778.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "13.1.62name" onclick="myFunction('13.1.62')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2562.5px;left:45784.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Ninh </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:1984.375px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "14.1.1name" onclick="myFunction('14.1.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:1990.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Trí Tùng
Tự Chí Tùng </div>
<div id = "14.1.1.1name" onclick="myFunction('14.1.1.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2862.5px;left:1990.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thanh Thảo </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:2290.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.2name" onclick="myFunction('14.1.2')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:2296.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Chí Bách </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:2596.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.3name" onclick="myFunction('14.1.3')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:2603.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Chí Nguyên </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:2903.125px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "14.1.4name" onclick="myFunction('14.1.4')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:2909.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Chí Dũng </div>
<div id = "14.1.4.1name" onclick="myFunction('14.1.4.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2862.5px;left:2909.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Nguyễn Thị Ngọc Huyền </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:3209.375px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "14.1.5name" onclick="myFunction('14.1.5')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:3215.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Chí Kiên </div>
<div id = "14.1.5.1name" onclick="myFunction('14.1.5.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2862.5px;left:3215.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Hoàng Hải Hậu </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:3515.625px; width: 293.75px;height: 162.5px;border-style:dashed;"></div>
<div id = "14.1.6name" onclick="myFunction('14.1.6')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:3521.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Vũ Hồng Chinh
Tự Chí Đại </div>
<div id = "14.1.6.1name" onclick="myFunction('14.1.6.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2862.5px;left:3521.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Đinh Thị Thủy </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:3821.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.7name" onclick="myFunction('14.1.7')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:3828.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Chí Công </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:9028.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.8name" onclick="myFunction('14.1.8')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:9034.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Y Linh </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:9334.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.9name" onclick="myFunction('14.1.9')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:9340.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Tất Tùng </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:9640.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.10name" onclick="myFunction('14.1.10')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:9646.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Trúc Lâm </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:9946.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.11name" onclick="myFunction('14.1.11')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:9953.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Anh Thư </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:10253.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.12name" onclick="myFunction('14.1.12')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:10259.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Anh Tú </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:10559.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.13name" onclick="myFunction('14.1.13')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:10565.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Anh Trúc </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:10865.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.14name" onclick="myFunction('14.1.14')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:10871.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Tất Thành Trí </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:12396.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.15name" onclick="myFunction('14.1.15')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:12403.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Ngọc Ánh </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:12703.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.16name" onclick="myFunction('14.1.16')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:12709.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Khánh Linh </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:13009.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.17name" onclick="myFunction('14.1.17')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:13015.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thanh Tùng </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:13315.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.18name" onclick="myFunction('14.1.18')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:13321.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Phú Thịnh </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:13621.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.19name" onclick="myFunction('14.1.19')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:13628.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Phú Toàn </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:22809.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.20name" onclick="myFunction('14.1.20')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:22815.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Đức Long </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:23115.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.21name" onclick="myFunction('14.1.21')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:23121.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Đức Nam </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:23421.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.22name" onclick="myFunction('14.1.22')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:23428.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Hạnh </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:24034.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.23name" onclick="myFunction('14.1.23')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:24040.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Hùng </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:24340.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.24name" onclick="myFunction('14.1.24')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:24346.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Mai </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:24646.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.25name" onclick="myFunction('14.1.25')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:24653.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Tiến </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:24953.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.26name" onclick="myFunction('14.1.26')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:24959.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Ngọc </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:25259.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.27name" onclick="myFunction('14.1.27')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:25265.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Hằng </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:26484.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.28name" onclick="myFunction('14.1.28')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:26490.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Mạnh </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:26790.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.29name" onclick="myFunction('14.1.29')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:26796.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Hà </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:27096.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.30name" onclick="myFunction('14.1.30')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:27103.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Thanh Nhàn </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:27403.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.31name" onclick="myFunction('14.1.31')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:27409.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Cường </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:27709.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.32name" onclick="myFunction('14.1.32')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:27715.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Hồng </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:28015.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.33name" onclick="myFunction('14.1.33')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:28021.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thế Lộc </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:35059.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.34name" onclick="myFunction('14.1.34')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:35065.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Quốc Hoàn </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:35365.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.35name" onclick="myFunction('14.1.35')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:35371.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Quốc Việt </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:35671.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.36name" onclick="myFunction('14.1.36')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:35678.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thu Hồng </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:35978.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.37name" onclick="myFunction('14.1.37')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:35984.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Thu Hà </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:36284.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.38name" onclick="myFunction('14.1.38')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:36290.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Thu Hương </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:37203.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.39name" onclick="myFunction('14.1.39')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:37209.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Đông </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:37509.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.40name" onclick="myFunction('14.1.40')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:37515.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Toàn </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:37815.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.41name" onclick="myFunction('14.1.41')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:37821.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Hoàn </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:38121.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.42name" onclick="myFunction('14.1.42')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:38128.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Long </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:38428.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.43name" onclick="myFunction('14.1.43')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:38434.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Phượng </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:40878.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.44name" onclick="myFunction('14.1.44')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:40884.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Diên </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:41184.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.45name" onclick="myFunction('14.1.45')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:41190.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Phiên </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:41490.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.46name" onclick="myFunction('14.1.46')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:41496.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Lan </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:41796.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.47name" onclick="myFunction('14.1.47')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:41803.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Huệ </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:42409.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.48name" onclick="myFunction('14.1.48')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:42415.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Tuyên </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:42715.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.49name" onclick="myFunction('14.1.49')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:42721.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Ngọc </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:43021.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.50name" onclick="myFunction('14.1.50')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:43028.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Ngần </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:43328.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.51name" onclick="myFunction('14.1.51')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:43334.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Ngoan </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:43634.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.52name" onclick="myFunction('14.1.52')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:43640.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Tuệ </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:43940.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.53name" onclick="myFunction('14.1.53')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:43946.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Tuyển </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:44246.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.54name" onclick="myFunction('14.1.54')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:44253.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Văn Đông </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:44553.125px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.55name" onclick="myFunction('14.1.55')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:44559.375px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Bắc </div>
<div style = "border-width:2px;position: absolute;top:2768.75px;left:44859.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "14.1.56name" onclick="myFunction('14.1.56')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2775.0px;left:44865.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Thị Hường </div>
<div style = "border-width:2px;position: absolute;top:2981.25px;left:1984.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "15.1.1name" onclick="myFunction('15.1.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2987.5px;left:1990.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Duy Khôi Nguyên </div>
<div style = "border-width:2px;position: absolute;top:2981.25px;left:3209.375px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "15.1.2name" onclick="myFunction('15.1.2')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:2987.5px;left:3215.625px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Phạm Huy Cường </div>
<div style = "border-width:2px;position: absolute;top:1281.25px;left:48840.625px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "7.2.1name" onclick="myFunction('7.2.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1287.5px;left:48846.875px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Chi 2 </div>
<div style = "border-width:2px;position: absolute;top:1281.25px;left:49146.875px; width: 293.75px;height: 75.0px;border-style:dashed;"></div>
<div id = "7.3.1name" onclick="myFunction('7.3.1')" style = "cursor:pointer;border-width:3px;background: white;text-align: center; white-space: pre;position: absolute;top:1287.5px;left:49153.125px; width: 281.25px;height: 62.5px;border-style:solid;font-size: 25px;"> Chi 3 </div>
<div id = "1.0.1info" onclick="myFunction('1.0.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:12.5px;left:46744.9951171875px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Quý Công
Tự Phúc An
Mất: 5/10/?(AL)
Giỗ: 29/10/2022
Thọ: ? </div>
<div id = "1.0.1.1info" onclick="myFunction('1.0.1.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:100.0px;left:46744.9951171875px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Hiệu Từ Ơn
Sinh: ?/?/?(AL) </div>
<div id = "2.0.1info" onclick="myFunction('2.0.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:225.0px;left:46744.9951171875px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Quý Công
Tự Phúc Kiên
Thọ: ? </div>
<div id = "2.0.1.1info" onclick="myFunction('2.0.1.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:312.5px;left:46744.9951171875px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Hiệu Từ Trân
Sinh: ?/?/?(AL) </div>
<div id = "3.0.1info" onclick="myFunction('3.0.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:437.5px;left:46744.9951171875px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Quý Công
Tự Phúc Tiến
Thọ: ? </div>
<div id = "3.0.1.1info" onclick="myFunction('3.0.1.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:525.0px;left:46744.9951171875px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Nguyễn Thị Duyên
Sinh: ?/?/?(AL) </div>
<div id = "4.0.1info" onclick="myFunction('4.0.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:650.0px;left:46744.9951171875px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Quý Công
Huý Phấn
Tự Phúc Hữu
Mất: 14/4/?(AL)
Giỗ: 14/5/2022
Thọ: ? </div>
<div id = "4.0.1.1info" onclick="myFunction('4.0.1.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:737.5px;left:46744.9951171875px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;">
Sinh: ?/?/?(AL) </div>
<div id = "5.0.1info" onclick="myFunction('5.0.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:862.5px;left:46744.9951171875px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Quý Công
Huý Phạm Đình Ban
Tự Đình Huyên
Thọ: 82
Làm Cai Tổng thời vua Lê Lợi </div>
<div id = "5.0.1.1info" onclick="myFunction('5.0.1.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:950.0px;left:44030.615234375px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Nguyễn Thị Nhơn Hiệu Lê
Sinh: ?/?/?(AL) </div>
<div id = "5.0.1.2info" onclick="myFunction('5.0.1.2')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:950.0px;left:49459.375px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Nguyễn Thị Sanh Hiệu Văng
Sinh: ?/?/?(AL)
Quê Thái Bình, Vạn Thái, Hà Tây </div>
<div id = "6.0.1info" onclick="myFunction('6.0.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1075.0px;left:44030.615234375px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Quý Công
Huý Thọ
Tự Đình Giai
Mất: 19/03/?(AL)
Giỗ: 19/4/2022
Thọ: ? </div>
<div id = "6.0.1.1info" onclick="myFunction('6.0.1.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1162.5px;left:44030.615234375px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Nguyễn Thị Tiếp Hiệu Đăng
Sinh: ?/?/?(AL)
Mất: 08/01/?(AL)
Giỗ: 8/2/2022 </div>
<div id = "7.1.1info" onclick="myFunction('7.1.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1287.5px;left:38908.10546875px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Quý Công
Huý Trương
Tự Công Thạc
Mất: 17/05/1815(AL)
Giỗ: 15/6/2022
Thọ: 41 </div>
<div id = "7.1.1.1info" onclick="myFunction('7.1.1.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1375.0px;left:38908.10546875px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Ngô Thị Khước Hiệu Mỹ
Sinh: ?/?/1779(AL)
Mất: 21/10/1841(AL)
Giỗ: 14/11/2022 </div>
<div id = "8.1.1info" onclick="myFunction('8.1.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1500.0px;left:29275.5859375px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Quý Công
Huý Toa
Tự Công Bá
Mất: 29/10/1858(AL)
Giỗ: 22/11/2022
Thọ: 62
4 vợ: 6 Trai, 3 Gái </div>
<div id = "8.1.1.1info" onclick="myFunction('8.1.1.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1587.5px;left:10316.796875px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Nguyễn Thị Chỉnh Hiệu Từ Ninh
Sinh: ?/?/1808(AL)
Thọ: 22.0 </div>
<div id = "8.1.1.2info" onclick="myFunction('8.1.1.2')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1587.5px;left:29782.8125px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Nguyễn Thị Lịch Hiệu Từ Tĩnh
Sinh: ?/?/1812(AL)
Mất: 30/07/1844(AL)
Thọ: 32.0 </div>
<div id = "8.1.1.3info" onclick="myFunction('8.1.1.3')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1587.5px;left:40922.65625px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Ngô Thị Hinh Hiệu Từ Hương
Sinh: ?/?/?(AL)
Mất: 06/10/?(AL)
Giỗ: 30/10/2022 </div>
<div id = "8.1.1.4info" onclick="myFunction('8.1.1.4')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1587.5px;left:48234.375px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Đỗ Thị Trác
Sinh: ?/?/1809(AL)
Mất: 14/12/1889(AL)
Giỗ: 16/1/2022
Thọ: 80.0 </div>
<div id = "8.1.2info" onclick="myFunction('8.1.2')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1500.0px;left:48540.625px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Quý Công
Tự Đình Tín
Mất: 10/03/?(AL)
Giỗ: 10/4/2022
Thọ: ? </div>
<div id = "9.1.1info" onclick="myFunction('9.1.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1712.5px;left:10316.796875px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Quý Công
Huý Giáo
Tự Đình Phan
Mất: 11/01/1871(AL)
Giỗ: 11/2/2022
Thọ: 49
Làm Cai Tổng </div>
<div id = "9.1.1.1info" onclick="myFunction('9.1.1.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1800.0px;left:153.125px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Trần Quí Nguyên Hiệu Nguyên
Sinh: ?/?/1826(AL)
Mất: 10/08/1899(AL)
Giỗ: 5/9/2022
Thọ: 73.0 </div>
<div id = "9.1.1.2info" onclick="myFunction('9.1.1.2')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1800.0px;left:14604.296875px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Nguyễn Thị Nghiên Hiệu Hiểu
Sinh: ?/?/1831(AL)
Mất: 28/08/1900(AL)
Giỗ: 23/9/2022
Thọ: 70.0 </div>
<div id = "9.1.1.3info" onclick="myFunction('9.1.1.3')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1800.0px;left:20480.46875px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Nguyễn Thị Đệ Hiệu Đê
Sinh: ?/?/?(AL)
Mất: 19/04/?(AL)
Giỗ: 19/5/2022
Thọ: 73.0 </div>
<div id = "9.1.2info" onclick="myFunction('9.1.2')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1712.5px;left:26950.0px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Quý Công
Huý Huyến
Tự Đình Thiều
Mất: 12/01/1899(AL)
Giỗ: 12/2/2022
Thọ: 60
Đi lính đóng đội </div>
<div id = "9.1.2.1info" onclick="myFunction('9.1.2.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1800.0px;left:21590.625px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Nguyễn Thị Huynh
Sinh: ?/?/?(AL) </div>
<div id = "9.1.2.2info" onclick="myFunction('9.1.2.2')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1800.0px;left:26126.953125px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Cao Thị Thanh
Sinh: ?/?/?(AL)
Mất: 11/05/?(AL)
Giỗ: 9/6/2022 </div>
<div id = "9.1.2.3info" onclick="myFunction('9.1.2.3')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1800.0px;left:32309.375px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Nghiêm Thị Đoan Hiệu Chính
Sinh: ?/?/?(AL)
Mất: 08/08/?(AL)
Giỗ: 3/9/2022 </div>
<div id = "9.1.3info" onclick="myFunction('9.1.3')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1712.5px;left:32615.625px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Thị Dư
Thọ: ? </div>
<div id = "9.1.4info" onclick="myFunction('9.1.4')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1712.5px;left:33917.1875px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Quý Công
Huý Xuyển
Tự Đình Cẩn
Mất: 20/01/?(AL)
Giỗ: 20/2/2022
Thọ: ? </div>
<div id = "9.1.4.1info" onclick="myFunction('9.1.4.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1800.0px;left:33917.1875px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Trần Thị Vạnh Hiệu Vịnh
Sinh: ?/?/?(AL) </div>
<div id = "9.1.5info" onclick="myFunction('9.1.5')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1712.5px;left:44789.0625px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Quý Công
Huý Hoản
Tự Đình Lâm
Mất: 18/06/?(AL)
Giỗ: 16/7/2022
Thọ: 29 </div>
<div id = "9.1.5.1info" onclick="myFunction('9.1.5.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1800.0px;left:44789.0625px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Ngô Thị Thướt Hiệu Thiết
Sinh: ?/?/?(AL)
Mất: 28/02/?(AL)
Giỗ: 30/3/2022 </div>
<div id = "9.1.6info" onclick="myFunction('9.1.6')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1712.5px;left:47315.625px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Quý Công
Huý Huyển
Tự Đình Chất
Mất: 9/01/?(AL)
Giỗ: 9/2/2022
Thọ: ? </div>
<div id = "9.1.6.1info" onclick="myFunction('9.1.6.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1800.0px;left:47315.625px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phùng Thị Điểm Hiệu Kiển
Sinh: ?/?/?(AL)
Mất: 07/05/?(AL)
Giỗ: 5/6/2022 </div>
<div id = "9.1.7info" onclick="myFunction('9.1.7')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1712.5px;left:47621.875px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Thị Diễn
Thọ: ? </div>
<div id = "9.1.8info" onclick="myFunction('9.1.8')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1712.5px;left:47928.125px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Thị Triện
Thọ: ? </div>
<div id = "9.1.9info" onclick="myFunction('9.1.9')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1712.5px;left:48234.375px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Quý Công
Huý Phạm Đình Duyện
Mất: 06/08/06/08(AL)
Giỗ: 1/9/2022
Thọ: ?
Chết non </div>
<div id = "10.1.1info" onclick="myFunction('10.1.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1925.0px;left:153.125px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Thị Lãng
Thọ: ? </div>
<div id = "10.1.2info" onclick="myFunction('10.1.2')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1925.0px;left:14604.296875px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Quý Công
Huý Hịn
Tự Đình Chương
Mất: 16/05/1935(AL)
Giỗ: 14/6/2022
Thọ: 74
Làm Chánh Tổng </div>
<div id = "10.1.2.1info" onclick="myFunction('10.1.2.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2012.5px;left:9914.84375px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Đỗ Thị Chinh Hiệu Trường
Sinh: ?/?/1865(AL)
Mất: 20/04/1932(AL)
Giỗ: 20/5/2022
Thọ: 68.0 </div>
<div id = "10.1.2.2info" onclick="myFunction('10.1.2.2')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2012.5px;left:19293.75px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Ngô Thị Khuyết Hiệu Khang
Sinh: ?/?/1874(AL)
Thọ: 89.0 </div>
<div id = "10.1.3info" onclick="myFunction('10.1.3')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1925.0px;left:20480.46875px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Quý Công
Huý Phạm Đình Nghĩa
Mất: 06/02/1919(AL)
Giỗ: 8/3/2022
Thọ: 61 </div>
<div id = "10.1.3.1info" onclick="myFunction('10.1.3.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2012.5px;left:20059.375px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Đặng Thị Mụ
Sinh: ?/?/?(AL)
Mất: 15/05/?(AL)
Giỗ: 13/6/2022 </div>
<div id = "10.1.3.2info" onclick="myFunction('10.1.3.2')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2012.5px;left:20901.5625px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Lê Thị Quệ
Sinh: ?/?/?(AL)
Mất: 12/05/?(AL)
Giỗ: 10/6/2022 </div>
<div id = "10.1.4info" onclick="myFunction('10.1.4')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1925.0px;left:26126.953125px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Quý Công
Huý Phạm Tụy
Tự Đình Thúy
Mất: 29/01/?(AL)
Giỗ: 1/3/2022
Thọ: 40 </div>
<div id = "10.1.4.1info" onclick="myFunction('10.1.4.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2012.5px;left:22203.125px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Nghiêm Thị Vấm Hiệu Quyển
Sinh: ?/?/?(AL)
Mất: 15/12/?(AL)
Giỗ: 17/1/2022 </div>
<div id = "10.1.4.2info" onclick="myFunction('10.1.4.2')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2012.5px;left:30050.78125px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Ngô Thị Tiện Hiệu Hiền
Sinh: ?/?/?(AL)
Mất: 06/06/?(AL)
Giỗ: 4/7/2022 </div>
<div id = "10.1.5info" onclick="myFunction('10.1.5')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1925.0px;left:33075.0px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Quý Công
Huý Phạm Đình Kiện
Tự Đình Trọng
Mất: 04/08/?(AL)
Giỗ: 30/8/2022
Thọ: 63 </div>
<div id = "10.1.5.1info" onclick="myFunction('10.1.5.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2012.5px;left:33075.0px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Nguyễn Thị Tẩy Hiệu Đảng
Sinh: ?/?/?(AL)
Mất: 06/04/?(AL)
Giỗ: 6/5/2022
Thọ: 73.0 </div>
<div id = "10.1.6info" onclick="myFunction('10.1.6')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1925.0px;left:33534.375px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Quý Công
Huý Phạm Đình Tráng
Thọ: ?
Mất Tích </div>
<div id = "10.1.7info" onclick="myFunction('10.1.7')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1925.0px;left:33840.625px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Quý Công
Huý Phạm Đình Mận
Tự Đình Tấn
Mất: 22/01/?(AL)
Giỗ: 22/2/2022
Thọ: 59 </div>
<div id = "10.1.8info" onclick="myFunction('10.1.8')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1925.0px;left:34146.875px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Thị Trấn
Thọ: ? </div>
<div id = "10.1.9info" onclick="myFunction('10.1.9')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1925.0px;left:34453.125px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Thị Võ
Thọ: ? </div>
<div id = "10.1.10info" onclick="myFunction('10.1.10')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1925.0px;left:34759.375px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Thị Hường
Thọ: ? </div>
<div id = "10.1.11info" onclick="myFunction('10.1.11')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1925.0px;left:42568.75px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Quý Công
Huý Phạm Đình Khắc
Tự Đình Du
Mất: 11/04/?(AL)
Giỗ: 11/5/2022
Thọ: ? </div>
<div id = "10.1.11.1info" onclick="myFunction('10.1.11.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2012.5px;left:42568.75px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Ngô Thị Hiện
Sinh: ?/?/?(AL)
Mất: 21/03/?(AL)
Giỗ: 21/4/2022 </div>
<div id = "10.1.12info" onclick="myFunction('10.1.12')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1925.0px;left:47009.375px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Thị Quyển
Thọ: ? </div>
<div id = "10.1.13info" onclick="myFunction('10.1.13')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:1925.0px;left:47315.625px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Thị Quyển
Thọ: ? </div>
<div id = "11.1.1info" onclick="myFunction('11.1.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2137.5px;left:2832.8125px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Quý Công
Huý Phạm Tế
Tự Mạnh Quỳnh
Mất: 10/03/1943(AL)
Giỗ: 10/4/2022
Thọ: 57 </div>
<div id = "11.1.1.1info" onclick="myFunction('11.1.1.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2225.0px;left:2832.8125px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Nghiêm Thị Châu Hiệu Chân
Sinh: ?/?/1885(AL)
Mất: 27/10/1966(AL)
Giỗ: 20/11/2022 </div>
<div id = "11.1.2info" onclick="myFunction('11.1.2')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2137.5px;left:7311.71875px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Quý Công
Huý Phạm Thế
Mất: 14/01/1961(AL)
Giỗ: 14/2/2022
Thọ: 75
Làm Chánh Tổng </div>
<div id = "11.1.2.1info" onclick="myFunction('11.1.2.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2225.0px;left:6507.8125px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Nguyễn Thị Viên Hiệu Viên
Sinh: ?/?/1886(AL)
Mất: 23/03/1939(AL)
Giỗ: 23/4/2022
Thọ: 54.0 </div>
<div id = "11.1.2.2info" onclick="myFunction('11.1.2.2')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2225.0px;left:8115.625px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Đỗ Thị Thuyện
Sinh: ?/?/1912(AL)
Mất: 08/04/1949(AL)
Giỗ: 8/5/2022
Thọ: 38.0 </div>
<div id = "11.1.3info" onclick="myFunction('11.1.3')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2137.5px;left:9857.421875px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Quý Công
Huý Phạm Thiếp
Tự Đình Tuân
Mất: 27/11/1924(AL)
Giỗ: 20/12/2022
Thọ: 34 </div>
<div id = "11.1.3.1info" onclick="myFunction('11.1.3.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2225.0px;left:9857.421875px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Nguyễn Thị Thuế
Sinh: ?/?/?(AL)
Mất: 29/07/29/07(AL)
Giỗ: 26/8/2022 </div>
<div id = "11.1.4info" onclick="myFunction('11.1.4')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2137.5px;left:15044.53125px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Quý Công
Huý Phạm Phổ
Tự Đình Côi
Mất: 16/01/1974(AL)
Giỗ: 16/2/2022
Thọ: 68
Làm Chánh Hội </div>
<div id = "11.1.4.1info" onclick="myFunction('11.1.4.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2225.0px;left:15044.53125px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Nguyễn Thị Diễn
Sinh: ?/?/1903(AL)
Thọ: 89.0 </div>
<div id = "11.1.5info" onclick="myFunction('11.1.5')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2137.5px;left:16384.375px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Thị Kinh
Thọ: ? </div>
<div id = "11.1.6info" onclick="myFunction('11.1.6')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2137.5px;left:16690.625px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Thi Quyền
Thọ: ? </div>
<div id = "11.1.7info" onclick="myFunction('11.1.7')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2137.5px;left:16996.875px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Thị Lượng
Thọ: ? </div>
<div id = "11.1.8info" onclick="myFunction('11.1.8')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2137.5px;left:18834.375px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Quý Công
Huý Phạm Quý Triêm
Mất: 17/11/1975(AL)
Giỗ: 10/12/2022
Thọ: 75 </div>
<div id = "11.1.8.1info" onclick="myFunction('11.1.8.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2225.0px;left:18221.875px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Nguyễn Thị Trá
Sinh: ?/?/?(AL)
Mất: 12/07/1973(AL)
Giỗ: 9/8/2022 </div>
<div id = "11.1.8.2info" onclick="myFunction('11.1.8.2')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2225.0px;left:19446.875px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Trần Thị Trừ
Sinh: ?/?/?(AL) </div>
<div id = "11.1.9info" onclick="myFunction('11.1.9')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2137.5px;left:19753.125px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Thị Kiệu
Thọ: ? </div>
<div id = "11.1.10info" onclick="myFunction('11.1.10')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2137.5px;left:20059.375px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Thị Vòng
Thọ: ? </div>
<div id = "11.1.11info" onclick="myFunction('11.1.11')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2137.5px;left:20518.75px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Quý Công
Huý Phạm Văn Trẽ
Tự Đình Trẽ
Mất: 29/12/?(AL)
Giỗ: 31/1/2022
Thọ: 35 </div>
<div id = "11.1.11.1info" onclick="myFunction('11.1.11.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2225.0px;left:20365.625px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Trần Thị Xuân
Sinh: ?/?/?(AL) </div>
<div id = "11.1.11.2info" onclick="myFunction('11.1.11.2')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2225.0px;left:20671.875px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Trần Thị Loát
Sinh: ?/?/?(AL) </div>
<div id = "11.1.12info" onclick="myFunction('11.1.12')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2137.5px;left:20978.125px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Quý Công
Huý Phạm Văn Trượi
Tự Đình Trượi
Mất: 29/12/1978(AL)
Giỗ: 31/1/2022
Thọ: ?
Ông bị điên </div>
<div id = "11.1.12.1info" onclick="myFunction('11.1.12.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2225.0px;left:20978.125px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Đỗ Thị Thoa
Sinh: ?/?/?(AL)
Đi lấy chồng khác vì ông bị điên </div>
<div id = "11.1.13info" onclick="myFunction('11.1.13')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2137.5px;left:21284.375px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Thị Ủn
Thọ: ? </div>
<div id = "11.1.14info" onclick="myFunction('11.1.14')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2137.5px;left:21896.875px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Quý Công
Huý Phạm Văn Điện
Mất: 06/10/1983(AL)
Giỗ: 30/10/2022
Thọ: 74
Vào Sài Gòn sinh sống </div>
<div id = "11.1.14.1info" onclick="myFunction('11.1.14.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2225.0px;left:21896.875px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;">
Sinh: ?/?/?(AL)
Không có con, đi lấy chồng </div>
<div id = "11.1.15info" onclick="myFunction('11.1.15')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2137.5px;left:22203.125px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Thị My
Thọ: ? </div>
<div id = "11.1.16info" onclick="myFunction('11.1.16')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2137.5px;left:22509.375px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Thị Nhị
Thọ: ? </div>
<div id = "11.1.17info" onclick="myFunction('11.1.17')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2137.5px;left:28098.4375px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Quý Công
Huý Phạm Văn Úy
Mất: 23/11/?(AL)
Giỗ: 16/12/2022
Thọ: 40 </div>
<div id = "11.1.17.1info" onclick="myFunction('11.1.17.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2225.0px;left:28098.4375px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Nguyễn Thị Quỳ
Sinh: ?/?/?(AL)
Mất: 14/05/?(AL)
Giỗ: 12/6/2022
Thọ: 42.0 </div>
<div id = "11.1.18info" onclick="myFunction('11.1.18')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2137.5px;left:31084.375px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Quý Công
Huý Phạm Văn Vân
Mất: 20/10/?(AL)
Giỗ: 13/11/2022
Thọ: 65 </div>
<div id = "11.1.18.1info" onclick="myFunction('11.1.18.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2225.0px;left:31084.375px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Ngô Thị Xuyên
Sinh: ?/?/1900(AL)
Mất: 06/12/1982(AL)
Giỗ: 28/12/2022
Thọ: 82.0 </div>
<div id = "11.1.19info" onclick="myFunction('11.1.19')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2137.5px;left:31696.875px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Quý Công
Huý Phạm Văn Sơn
Mất: 14/07/?(AL)
Giỗ: 11/8/2022
Thọ: ? </div>
<div id = "11.1.19.1info" onclick="myFunction('11.1.19.1')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2225.0px;left:31696.875px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Ngô Thị Chủy
Sinh: ?/?/?(AL)
Mất: 14/06/?(AL)
Giỗ: 12/7/2022 </div>
<div id = "11.1.20info" onclick="myFunction('11.1.20')" style = "font-weight:bold;cursor:pointer;border-width:5px;background: white;text-align: center; white-space: pre;display: none;position: absolute;top:2137.5px;left:32003.125px; min-width: 281.25px; min-height: 62.5px; border-style:solid;font-size: 25px;"> Phạm Quý Công
Huý Phạm Văn Thủy