-
Notifications
You must be signed in to change notification settings - Fork 2
/
mlm-all.json
1892 lines (1892 loc) · 72.8 KB
/
mlm-all.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"tree": {
"name": "YOHASI MAHINDI Jackson",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "YOHASI NGIMA ELIE",
"icon": "img/user.png",
"foot": 1,
"childs": [
{
"name": "MUPENDAKAZI J-CLAUDE Mupenda",
"icon": "img/user.png",
"foot": 3
}
]
},
{
"name": "KAKULE KANYALUTAMBI BARTELA",
"icon": "img/user.png",
"foot": 2,
"childs": [
{
"name": "MBAHWEKA MITINGI VEDESTUS",
"icon": "img/user.png",
"foot": 1,
"childs": [
{
"name": "MACHOZI LUSENGE FLORENCE",
"icon": "img/user.png",
"foot": 3
}
]
},
{
"name": "MASIKA KIMINYAVAKE JACKELINE",
"icon": "img/user.png",
"foot": 2,
"childs": [
{
"name": "KATEMBERA MUKUZO CIRESI",
"icon": "users/324-1635432414.jpg",
"foot": 1,
"childs": [
{
"name": "KALEBU KABUYAYA CALEB",
"icon": "img/user.png",
"foot": 3
}
]
},
{
"name": "PALUKU BASAMBYA HARIEL",
"icon": "img/user.png",
"foot": 2
},
{
"name": "TSONGO MUNZOMBO JEANPIERRE",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "KAVUTYA Kule Jean",
"icon": "users/340-1636713726.jpg",
"foot": 3
}
]
}
]
},
{
"name": "RACHEL TALEMERWA RACHEL",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "KAMBALE KASALYA KASALYA",
"icon": "img/user.png",
"foot": 1
},
{
"name": "KAVIRA AHUMBA CLEMENTINE",
"icon": "img/user.png",
"foot": 2,
"childs": [
{
"name": "MASIKA CHARLOTTE SAUSI",
"icon": "img/user.png",
"foot": 3
}
]
},
{
"name": "KAVUGHO CHARLOTTE CHARLOTTE",
"icon": "img/user.png",
"foot": 3
}
]
}
]
},
{
"name": "MUSAVULI NIBIABO J-Claude",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "KAMBALE MOLO Molo",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "JAKELINE KIMINYAVAKE MASIKA",
"icon": "img/user.png",
"foot": 1
},
{
"name": "KAVIRA VYAHAVWA GRACE",
"icon": "img/user.png",
"foot": 2,
"childs": [
{
"name": "MBUSA MUTUNDA HENOC",
"icon": "users/326-1635433666.jpg",
"foot": 2
},
{
"name": "KAMBALE VASIMA GILBERT",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "KAMBALE KATHOLYA KATHOLYA",
"icon": "img/user.png",
"foot": 3
}
]
}
]
},
{
"name": "KAVIRA VYAMBWERA Neema",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "MIREMBE VYAMBWERA ROMEO",
"icon": "img/user.png",
"foot": 1,
"childs": [
{
"name": "KAMBALE BILOKO BILOKO",
"icon": "img/user.png",
"foot": 1,
"childs": [
{
"name": "KAHINDO ESPERENCE MUTSEKE",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "MUMBERE KIGHUSU JEAN BOSCO",
"icon": "img/user.png",
"foot": 3
}
]
}
]
},
{
"name": "MBUSA VIHAMBA NELLY",
"icon": "img/user.png",
"foot": 2
},
{
"name": "MUHINDO KISONIA SAMY",
"icon": "img/user.png",
"foot": 3
}
]
},
{
"name": "MUHINDO KOMBI BENKOMBI",
"icon": "img/user.png",
"foot": 2,
"childs": [
{
"name": "KAVIRA KYAMAKYA CECILE",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "MUHINDO MUTHEMBE HELLEN",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "YONES MWESIGE YONES",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "WINNIE IRENE LAPOBO",
"icon": "img/user.png",
"foot": 1,
"childs": [
{
"name": "BAlls JACKSON BALLS",
"icon": "img/user.png",
"foot": 1,
"childs": [
{
"name": "MAHOUMOU KIMINOU Eric",
"icon": "img/user.png",
"foot": 3
}
]
},
{
"name": "WILLIAM MALINZI WILLIAM",
"icon": "img/user.png",
"foot": 2,
"childs": [
{
"name": "JOHN MTAREEBA BATTYA",
"icon": "img/user.png",
"foot": 1
},
{
"name": "MBABAZI EVAS EVAS",
"icon": "img/user.png",
"foot": 2,
"childs": [
{
"name": "BAHIGWA PASCAL TIBAMWENDA",
"icon": "img/user.png",
"foot": 2
},
{
"name": "OBITA JOSEPH OBITA",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "AKULLO BRENDA BRENDA",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "IRENE ELISABETH Akurut",
"icon": "img/user.png",
"foot": 2
},
{
"name": "ALEZUYO MILDRED MILDRED",
"icon": "img/user.png",
"foot": 3
}
]
}
]
}
]
},
{
"name": "KIBUUKA LIVINGISTONE LIVINGISTONE",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "BIRUNGI JUSTINE MUGAGA",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "KAMULEGYA JOICE KAMULEGYA",
"icon": "img/user.png",
"foot": 2
},
{
"name": "CHARLES MOSES BYAKIKA",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "SAHRO ALI Mahamed",
"icon": "img/user.png",
"foot": 1
},
{
"name": "NTIRENGANYA DÉSIRÉ Désiré",
"icon": "img/user.png",
"foot": 2,
"childs": [
{
"name": "SYLVESTRE ALEWI Alewi",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "MAMUTUSA DESIRE DESIRE",
"icon": "img/user.png",
"foot": 3
}
]
}
]
},
{
"name": "KAMYA PONSIANO PONSIANO",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "KAGWA DUMBA DUMBA",
"icon": "img/user.png",
"foot": 3
}
]
}
]
}
]
}
]
}
]
},
{
"name": "ABRAHAM GATKOUTH ABRAHAM",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "DONALD SEGOMOTSO DOLALD",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "Mwenesi Lugalia Sylvia",
"icon": "img/user.png",
"foot": 2
},
{
"name": "WINNIE SEGOMOTSO TEBO",
"icon": "img/user.png",
"foot": 3
}
]
}
]
}
]
},
{
"name": "ANNAH ATWINE ANNAH",
"icon": "img/user.png",
"foot": 2,
"childs": [
{
"name": "SALAMA BABIRYE SALAMA",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "NAMARA JESCA NESCA",
"icon": "img/user.png",
"foot": 2,
"childs": [
{
"name": "TWESIGYE LAUBEN LAUBEN",
"icon": "img/user.png",
"foot": 3
}
]
},
{
"name": "TUMUHAHIRWE JANET JANET",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "NAMULONDO FARIDHA FARIDHA",
"icon": "img/user.png",
"foot": 3
}
]
}
]
}
]
},
{
"name": "JULIET NAMUGGA JULIET",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "NAKIBIRANGO SUZANE SUZANE",
"icon": "img/user.png",
"foot": 1,
"childs": [
{
"name": "MOSES MUGISHA MOSES",
"icon": "img/user.png",
"foot": 2
},
{
"name": "ZAITUNI ABUIN MARIANA",
"icon": "img/user.png",
"foot": 3
}
]
},
{
"name": "TUMUHAIRWE GLORIA GLORIA",
"icon": "img/user.png",
"foot": 2,
"childs": [
{
"name": "SUUBI GENESIS SUUBI",
"icon": "img/user.png",
"foot": 3
}
]
},
{
"name": "SOLANGE KAHINDO KAHAV",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "VELLA ANYAKUN ANYAKUN",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "AGANYIRA TEDDY TEDDY84",
"icon": "img/user.png",
"foot": 2
},
{
"name": "NAMAKULA ZAM BLESSING",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "NABUNYA SARAH SARAH",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "KUTESA MAUREEN MAUREEN",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "CHRISTINE NAKAZIBA CHRISTINE",
"icon": "img/user.png",
"foot": 3
}
]
}
]
}
]
}
]
}
]
}
]
}
]
}
]
}
]
}
]
},
{
"name": "KAVUGHO KASUGHU Devotte",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "PALUKU NZOGHERA Esron",
"icon": "img/user.png",
"foot": 2,
"childs": [
{
"name": "KYAKILWA SIFA Sifa",
"icon": "img/user.png",
"foot": 1,
"childs": [
{
"name": "KAVUGHO LUKULIRWA DENISE",
"icon": "img/user.png",
"foot": 1,
"childs": [
{
"name": "KAHINDO MWAMINI MWAMINI",
"icon": "img/user.png",
"foot": 1
},
{
"name": "KAMBALE KAZI JEANOT",
"icon": "img/user.png",
"foot": 2,
"childs": [
{
"name": "KALONDI ALDEGONDE ALDEGONDE",
"icon": "img/user.png",
"foot": 3
}
]
},
{
"name": "SIFA BIYEMBE ANGE",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "KAKULE TULIRWAGHO AUGUSTIN",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "KAMBALE MAKWEMBE MOISE",
"icon": "img/user.png",
"foot": 3
}
]
}
]
}
]
},
{
"name": "KAKULE MATATA J-BAPTISTE",
"icon": "img/user.png",
"foot": 2,
"childs": [
{
"name": "PALUKU VYAMBWERA VYAMB32",
"icon": "img/user.png",
"foot": 1,
"childs": [
{
"name": "KAHINDO VIVUYA AUXILIATA",
"icon": "img/user.png",
"foot": 3
}
]
},
{
"name": "KAKULE KOMBI MOISE",
"icon": "img/user.png",
"foot": 2,
"childs": [
{
"name": "MUKULU WA VANDU MITSOPE",
"icon": "img/user.png",
"foot": 3
}
]
},
{
"name": "KAKULE MAOMBI RAPHAEL",
"icon": "img/user.png",
"foot": 3
}
]
},
{
"name": "MALO MICHEL MALO",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "YALALA FURAHA CHANTAL",
"icon": "img/user.png",
"foot": 1
},
{
"name": "KAHINDO ELONJA TENTINE",
"icon": "img/user.png",
"foot": 2
},
{
"name": "MASIKA ESPERENCE SITUKA",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "MUMBERE MUYISA SONDIRYA",
"icon": "img/user.png",
"foot": 2
},
{
"name": "KAVIRA MATHE EUGENIE",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "MUMBERE KATALIKO PREMICE",
"icon": "img/user.png",
"foot": 3
}
]
}
]
}
]
}
]
},
{
"name": "BAHATI VYOLOVYOLO Festus",
"icon": "img/user.png",
"foot": 2,
"childs": [
{
"name": "JACQUES MUTAKALA Jacques",
"icon": "img/user.png",
"foot": 1,
"childs": [
{
"name": "KAHINDO MIREMBE Angela",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "KIBWANA VERENA VERENA",
"icon": "img/user.png",
"foot": 1,
"childs": [
{
"name": "KAHAMBU VISESO HEKIMA",
"icon": "img/user.png",
"foot": 3
}
]
},
{
"name": "MUMBERE SIRIWAYO SIRIWAYO",
"icon": "img/user.png",
"foot": 2,
"childs": [
{
"name": "KAVIRA MATINA JEANNETTE",
"icon": "img/user.png",
"foot": 3
}
]
},
{
"name": "KASEREKA NZONDA Célestin",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "KAHINDO NEEMA SIRIWAYO",
"icon": "img/user.png",
"foot": 2
},
{
"name": "KYAKIMWA MULAWA MULAWA",
"icon": "img/user.png",
"foot": 3
}
]
}
]
}
]
},
{
"name": "KAVUGHO ESPÉRANCE Kasumba",
"icon": "img/user.png",
"foot": 2,
"childs": [
{
"name": "MUMBERE MICHELE Vutsumba",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "KAVIRA FIFI SARAH",
"icon": "img/user.png",
"foot": 1,
"childs": [
{
"name": "PAUL MUTSUVA TSONGO",
"icon": "users/317-1634651446.JPG",
"foot": 1,
"childs": [
{
"name": "NONO MUHINDO MUHINDO",
"icon": "users/321-1634653421.JPG",
"foot": 3
}
]
},
{
"name": "KASEREKA KATSUVA ERESTON",
"icon": "img/user.png",
"foot": 2,
"childs": [
{
"name": "KAMBALE ISUKA GERMAIN",
"icon": "img/user.png",
"foot": 3
}
]
},
{
"name": "KASWERA NDUVI Julde",
"icon": "img/user.png",
"foot": 3
}
]
},
{
"name": "KAVUGHO KASUMBA KAKAS",
"icon": "img/user.png",
"foot": 2,
"childs": [
{
"name": "KAVUGHO KINANGA AMINATHA",
"icon": "img/user.png",
"foot": 1
},
{
"name": "KAHINDO SOLANGE SOLANGE",
"icon": "img/user.png",
"foot": 2
},
{
"name": "KAKULE SIRIVAHANI ATHANASE",
"icon": "img/user.png",
"foot": 3
}
]
},
{
"name": "KAVUGHO KASUMBA NANDA",
"icon": "img/user.png",
"foot": 3
}
]
}
]
},
{
"name": "KAVUGHO KAMALA Jeudi",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "KITEMBE ESTHER Kite",
"icon": "img/user.png",
"foot": 1,
"childs": [
{
"name": "MUMBERE KALYAVAHUGHU ROGER",
"icon": "img/user.png",
"foot": 3
}
]
},
{
"name": "KAVUGHO JEANNINE Kombi",
"icon": "img/user.png",
"foot": 2
},
{
"name": "KAVUGHO KAVUGHE Anny",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "KAVUGHO TSANGAMUSA MAMIE",
"icon": "img/user.png",
"foot": 2,
"childs": [
{
"name": "KAMBALE ALAIN MAYELE",
"icon": "users/320-1634652187.JPG",
"foot": 3
}
]
},
{
"name": "KAKULE KALIMBASA ADRIEN",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "MBURA GEORGES KASEREKA",
"icon": "users/319-1634651957.JPG",
"foot": 3
}
]
}
]
}
]
}
]
},
{
"name": "KAKULE KYANIKO Adislon",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "MBAMBU KIVERWA Naomi",
"icon": "img/user.png",
"foot": 2,
"childs": [
{
"name": "KAHINDO MALIKIRWA Jeannine",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "KASEREKA MWALIKIRWA JUDICIEL",
"icon": "img/user.png",
"foot": 3
}
]
}
]
},
{
"name": "KAVIRA KITEMBE Eduige",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "PALUKU MAHAMBA Regan",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "KAVUGHO NZENZE Joséphine",
"icon": "img/user.png",
"foot": 3
}
]
}
]
}
]
}
]
},
{
"name": "SOKI SYAVULIRENE Esther",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "KASEREKA MWENDAKWABO MOISE",
"icon": "img/user.png",
"foot": 1,
"childs": [
{
"name": "KAHINDO SHABANI IVETTE",
"icon": "users/339-1636555253.JPG",
"foot": 2
},
{
"name": "KAMBALE MUSEMO ASELME",
"icon": "img/user.png",
"foot": 3
}
]
},
{
"name": "KAVUGHO VUSUVUSEKA RACHEL",
"icon": "img/user.png",
"foot": 2,
"childs": [
{
"name": "MBAMBU SIVENDANA MARIE LOUISE",
"icon": "users/315-1634553120.JPG",
"foot": 2
},
{
"name": "KAKULE VASOMBOLWA KAWA",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "KAMBALE KITASIMWA ELIAS",
"icon": "img/user.png",
"foot": 1
},
{
"name": "MUHINDO SYAHINGA JONAS",
"icon": "img/user.png",
"foot": 2
},
{
"name": "PALUKU MACHOZI EDISON",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "MIRINDI VUMILIA JOHARI",
"icon": "img/user.png",
"foot": 1
},
{
"name": "KYAKIMWA KAHINDO KAHINDO",
"icon": "img/user.png",
"foot": 2,
"childs": [
{
"name": "KAVIRA TASI FIDELINE",
"icon": "img/user.png",
"foot": 3
}
]
},
{
"name": "KAHINDO YONESI YONESI",
"icon": "img/user.png",
"foot": 3
}
]
}
]
}
]
},
{
"name": "FURAHA KANYERE Desanges",
"icon": "users/9-1632947491.jpg",
"foot": 3,
"childs": [
{
"name": "KAHAMBU SEMWAVYO Devotte",
"icon": "img/user.png",
"foot": 1,
"childs": [
{
"name": "KYAKIMWA KAMBERE SILVIE",
"icon": "img/user.png",
"foot": 1,
"childs": [
{
"name": "KATUNGU KAMBERE ELDA",
"icon": "img/user.png",
"foot": 3
}
]
},
{
"name": "MUMBERE KAHITA Muyisa",
"icon": "img/user.png",
"foot": 2,
"childs": [
{
"name": "KAVUGHO BABWIRWA Julienne",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "KAMBERE KAKULE JUSTIN",
"icon": "img/user.png",
"foot": 2
},
{
"name": "NZUVA KATUNGU Marie",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "FURAHA KAYENGA LISETTE",
"icon": "img/user.png",
"foot": 2,
"childs": [
{
"name": "KAHINDO MUHOLU DARLENE",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "KASEREKA VUTSUMBWA JADOT",
"icon": "img/user.png",
"foot": 3,
"childs": [
{
"name": "NIYOYANKUNZE BERNARD BERNARD",
"icon": "img/user.png",