-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathall_files.txt
11962 lines (11962 loc) · 612 KB
/
all_files.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
254796669 product/priv-app/Velvet/Velvet.apk
185414080 system/system/system_ext/priv-app/Settings/Settings.apk
178203624 system/system/data-app/MIMediaEditorGlobal/MIMediaEditorGlobal.apk
134217728 boot.img
126757288 system/system/priv-app/MiuiCamera/MiuiCamera.apk
114795127 system/system/system_ext/apex/com.android.vndk.v30.apex
110426643 product/app/WebViewGoogle/WebViewGoogle.apk
110236364 product/priv-app/GmsCore/GmsCore.apk
106768789 product/app/Messages/Messages.apk
99721152 bootimg/01_dtbdump_MT6833.dtb
96938309 system/system/priv-app/MIUIGalleryGlobal/MIUIGalleryGlobal.apk
95308904 product/data-app/Photos/Photos.apk
92250637 cust/app/customized/partner-com.snapchat.android_200/partner-com.snapchat.android_200.apk
91925120 system/system/lib64/librelight_only_extraphoto.so
85350567 product/app/Gmail2/Gmail2.apk
85284661 product/app/Maps/Maps.apk
82704174 product/app/LatinImeGoogle/LatinImeGoogle.apk
82143697 product/app/YouTube/YouTube.apk
77067430 product/app/TrichromeLibrary/TrichromeLibrary.apk
72605652 cust/app/customized/partner-com.spotify.music_159/partner-com.spotify.music_159.apk
72153678 system/system/priv-app/SecurityCenter/SecurityCenter.apk
67735263 cust/app/customized/partner-com.facebook.katana_91/partner-com.facebook.katana_91.apk
67108864 cust/[SYS]/Journal
65258410 product/app/SpeechServicesByGoogle/SpeechServicesByGoogle.apk
63206482 product/data-app/Duo/Duo.apk
63015924 product/priv-app/Phonesky/Phonesky.apk
60569727 product/priv-app/GoogleDialer/GoogleDialer.apk
60289461 system/system/data-app/MIUINotes/MIUINotes.apk
59869379 system/system/app/MIUIGalleryPlayerService/MIUIGalleryPlayerService.apk
53067895 cust/app/customized/partner-in.amazon.mShop.android.shopping_51/partner-in.amazon.mShop.android.shopping_51.apk
51386141 bootRE/boot.elf
50101928 system/system/system_ext/priv-app/MiuiSystemUI/MiuiSystemUI.apk
45192720 vendor/lib64/libarcsoft_super_night_raw.so
45183041 product/data-app/YTMusic/YTMusic.apk
42444544 vendor/lib64/libmibokeh_mt6873.so
41989191 system/system/apex/com.android.vndk.current.apex
41238104 system/system/priv-app/MiuiCamera/oat/arm64/MiuiCamera.odex
41165203 system/system/framework/framework-res.apk
40870216 product/data-app/Drive/Drive.apk
40652896 system/system/framework/oat/arm64/services.odex
39629470 system/system/data-app/XMRemoteController/XMRemoteController.apk
39402712 system/system/priv-app/MIUIMusicGlobal/MIUIMusicGlobal.apk
38262509 cust/app/customized/partner-com.preff.kb.xm_146/partner-com.preff.kb.xm_146.apk
37995800 vendor/lib64/egl/libGLES_mali.so
37107704 system/system/apex/com.android.i18n.apex
36121630 product/prebuilts/com.android.deskclock/com.android.deskclocklib.res20190812.apk
35578026 system/system/framework/framework.jar
35404904 vendor/lib64/libanc_dc_base.so
35385960 system/system/lib64/libstfaceunlockppl.so
34629540 cust/app/customized/partner-com.funnypuri.client_166/partner-com.funnypuri.client_166.apk
34496576 bootimg/00_kernel
34297035 product/app/Chrome/Chrome.apk
33374221 system/system/priv-app/MiLauncherGlobal/MiLauncherGlobal.apk
33074740 cust/app/customized/partner-com.amazon.avod.thirdpartyclient_108/partner-com.amazon.avod.thirdpartyclient_108.apk
32731796 system/system/data-app/MIDrop/MIDrop.apk
32186139 system/system/app/XiaomiAccount/XiaomiAccount.apk
31158688 vendor/lib64/libarcsoft_beautyshot.so
31097707 system/system/app/MIUIThemeManagerGlobal/MIUIThemeManagerGlobal.apk
30587193 system/system/priv-app/VoiceUnlock/VoiceUnlock.apk
30454524 product/app/talkback/talkback.apk
30389889 system/system/priv-app/CleanMaster/CleanMaster.apk
29512064 system/system/app/MiuiBluetooth/MiuiBluetooth.apk
28925693 system/system/app/PaymentService/PaymentService.apk
28791645 system/system/data-app/MIGalleryLockScreenGlobal/MIGalleryLockScreenGlobal.apk
28542212 system/system/apex/com.google.android.art_compressed.apex
28216413 product/data-app/Videos/Videos.apk
28068105 system/system/app/MiSound/MiSound.apk
27162248 vendor/lib/egl/libGLES_mali.so
25440751 system/system/priv-app/MtkTeleService/MtkTeleService.apk
24774996 system/system/fonts/NotoSerifCJK-Regular.ttc
24651565 system/system/priv-app/CloudBackup/CloudBackup.apk
24116120 system/system/priv-app/MISettings/MISettings.apk
24115880 vendor/lib64/libxmi_high_dynamic_range.so
22616719 system/system/app/CameraTools/CameraTools.apk
20148173 system/system/priv-app/MiuiCalendarGlobal/MiuiCalendarGlobal.apk
20139224 system/system/data-app/MiuiScanner/MiuiScanner.apk
19925687 system/system/app/MIUIMiPicks/MIUIMiPicks.apk
19659646 system/system/priv-app/MiuiFreeformService/MiuiFreeformService.apk
19610734 boot/ramdisk.packed
19474852 system/system/fonts/NotoSansCJK-Regular.ttc
19244656 vendor/lib64/libsdk_sr.so
19111551 system/system/app/MiLinkGlobal/MiLinkGlobal.apk
19019553 system/system/framework/services.jar
18963568 system/system/lib64/libLLVM_android.so
18371027 system/system/priv-app/MIUIGlobalMinusScreen/MIUIGlobalMinusScreen.apk
18279916 product/app/GPayIndia/oat/arm64/GPayIndia.vdex
18045427 system/system/app/CloudService/CloudService.apk
17652987 system/system/app/MiConnectService/MiConnectService.apk
17600213 system/system/data-app/MIUISoundRecorderTargetSdk30Global/MIUISoundRecorderTargetSdk30Global.apk
17124692 product/app/GPayIndia/GPayIndia.apk
16802439 system/system/priv-app/MiuiHome/MiuiHome.apk
16705363 system/system/app/MIUIDeskClockGlobal/MIUIDeskClockGlobal.apk
16598405 system/system/app/MMIGroup/MMIGroup.apk
16570837 system/system/priv-app/MIUIGlobalMinusScreenWidget/MIUIGlobalMinusScreenWidget.apk
16494860 product/priv-app/Wellbeing/Wellbeing.apk
16494755 system/system/app/Updater/Updater.apk
16459638 system/system/app/MiuiSecurityAddGlobal/MiuiSecurityAddGlobal.apk
16367844 system/system/data-app/MIUIWeatherGlobal/MIUIWeatherGlobal.apk
16167064 system/system/system_ext/lib64/libmvpuop_mtk_cv.mtk.so
16027687 system/system/priv-app/Backup/Backup.apk
15735545 system/system/priv-app/DownloadProviderUi/DownloadProviderUi.apk
15697633 product/priv-app/GmsCore/m/independent/AndroidPlatformServices.apk
15655680 system/system/lib64/libgallery_arcsoft_portrait_lighting.so
15308934 product/data-app/GoogleNews/GoogleNews.apk
15244720 vendor/etc/audio_param/Speech_AudioParam.xml
15244720 vendor/etc/audio_param_global/Speech_AudioParam.xml
15173480 system/system/lib64/libdoc_photo.so
15098602 system/system/app/MiBugReportGlobal/MiBugReportGlobal.apk
14881946 boot/kernel
14637284 system/system/system_ext/lib/libmvpuop_mtk_cv.mtk.so
14610008 product/data-app/GoogleNews/oat/arm64/GoogleNews.vdex
14066051 product/app/GoogleContacts/GoogleContacts.apk
13828200 system/system/system_ext/lib64/libarmnn_ndk.mtk.so
13593216 product/usr/srec/en-US/pumpkin.mmap
13564592 system/system/priv-app/MIServiceGlobal/MIServiceGlobal.apk
13530323 system/system/app/MIUIFileExplorerGlobal/MIUIFileExplorerGlobal.apk
12034256 system/system/system_ext/lib/libarmnn_ndk.mtk.so
11991815 system/system/app/MIUIGlobalPackageInstaller/MIUIGlobalPackageInstaller.apk
11703784 system/system/lib64/libgallery_arcsoft_portrait_lighting_c.so
11628708 product/app/Chrome/oat/arm/Chrome.vdex
11628708 product/app/Chrome/oat/arm64/Chrome.vdex
11618193 system/system/app/SecurityCoreAdd/SecurityCoreAdd.apk
11588340 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/hhhh/p2/antiCmds/Model4.bin
11588340 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/hhhh/p2.3/antiCmds/Model4.bin
11588340 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/hhhh/p2/antiCmds/Model4.bin
11588340 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/hhhh/p2.3/antiCmds/Model4.bin
11588340 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/hhhh/p2/antiCmds/Model4.bin
11588340 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/hhhh/p2.3/antiCmds/Model4.bin
11588340 vendor/etc/voicecommand/training/ubmfile/keyword03/es-ES/hhhh/p2/antiCmds/Model4.bin
11588340 vendor/etc/voicecommand/training/ubmfile/keyword03/es-ES/hhhh/p2.3/antiCmds/Model4.bin
11588340 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/hhhh/p2/antiCmds/Model4.bin
11588340 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/hhhh/p2.3/antiCmds/Model4.bin
11588340 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/hhhh/p2/antiCmds/Model4.bin
11588340 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/hhhh/p2.3/antiCmds/Model4.bin
11588340 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/hhhh/p2/antiCmds/Model4.bin
11588340 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/hhhh/p2.3/antiCmds/Model4.bin
11588340 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/hhhh/p2/antiCmds/Model4.bin
11588340 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/hhhh/p2.3/antiCmds/Model4.bin
11588340 vendor/etc/voicecommand/training/ubmfile/keyword02/hhaa/p2/antiCmds/Model4.bin
11588340 vendor/etc/voicecommand/training/ubmfile/keyword02/dddd/p2/antiCmds/Model4.bin
11411873 system/system/priv-app/Provision/Provision.apk
11299961 system/system/app/HTMLViewer/HTMLViewer.apk
11233768 vendor/lib64/libcamera_scene.so
10799640 system/system/lib64/libbluetooth.so
10760416 system/system/framework/arm64/boot-framework.oat
10502728 vendor/lib64/libwa_rtdof.so
10369184 vendor/lib64/libwa_depth.so
10357154 system/system/priv-app/MtkTelecom/MtkTelecom.apk
10295488 vendor/lib64/libcamalgo.fdft.so
10185288 system/system/data-app/MIUICalculatorGlobal/MIUICalculatorGlobal.apk
9923352 system/system/lib64/libsurfaceflinger.so
9787376 vendor/lib64/libaiawb_sun_model.so
9536232 system/system/system_ext/lib64/libmvpuop_mtk_nn.mtk.so
9488530 product/priv-app/GoogleRestore/GoogleRestore.apk
9437184 vendor/bin/lib3a.ccu.ddr
9163392 system/system/framework/arm/boot-framework.oat
9106210 system/system/app/MIUIHealthGlobal/MIUIHealthGlobal.apk
9083884 system/system/app/MIUIScreenshot/MIUIScreenshot.apk
8964704 system/system/fonts/NotoColorEmoji.ttf
8919392 system/system/lib64/libwa_refocus_extraphoto.so
8918096 system/system/lib64/libhwui.so
8889569 system/system/apex/com.android.runtime.apex
8748646 system/system/priv-app/MIUIYellowPageGlobal/MIUIYellowPageGlobal.apk
8746888 system/system/system_ext/lib64/libnir_neon_driver_ndk.mtk.so
8684856 system/system/framework/oat/arm64/miui-services.odex
8589904 vendor/lib64/libwa_refocus.so
8507070 system/system/app/XiaomiSimActivateService/XiaomiSimActivateService.apk
8481145 system/system/app/MtkBluetooth/MtkBluetooth.apk
8456171 product/priv-app/CarrierServices/CarrierServices.apk
8447783 system/system/priv-app/MiuiExtraPhoto/MiuiExtraPhoto.apk
8348315 system/system/app/InMIpay/InMIpay.apk
8270497 system/system/apex/com.google.android.media.swcodec_compressed.apex
8261244 system/system/system_ext/priv-app/SetupWizard/SetupWizard.apk
8202509 system/system/app/MIUISystemUIPlugin/MIUISystemUIPlugin.apk
8107360 system/system/lib64/libmibokeh_gallery.so
8002620 system/system/lib/libbluetooth.so
7830879 system/system/app/NotificationCenter/NotificationCenter.apk
7821930 system/system/app/PowerKeeper/PowerKeeper.apk
7798300 system/system/system_ext/lib/libmvpuop_mtk_nn.mtk.so
7714501 system/system/priv-app/Traceur/Traceur.apk
7563148 system/system/app/MIUISystemAppUpdater/MIUISystemAppUpdater.apk
7532911 product/app/GoogleOne/GoogleOne.apk
7447368 vendor/lib64/libvidhance.so
7394360 system/system/system_ext/priv-app/GoogleServicesFramework/GoogleServicesFramework.apk
7307176 system/system/lib64/libXiaoMiMagicVoice.so
7272382 system/system/system_ext/priv-app/EmergencyInfo/EmergencyInfo.apk
7241125 system/system/system_ext/priv-app/StorageManager/StorageManager.apk
7097851 system/system/app/MIWallpaper/MIWallpaper.apk
6858164 system/system/lib/libXiaoMiMagicVoice.so
6668741 product/priv-app/Turbo/Turbo.apk
6564680 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/hhhh/p2/antiCmds/Model1.bin
6564680 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/hhhh/p2.3/antiCmds/Model1.bin
6564680 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/hhhh/p2/antiCmds/Model1.bin
6564680 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/hhhh/p2.3/antiCmds/Model1.bin
6564680 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/hhhh/p2/antiCmds/Model1.bin
6564680 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/hhhh/p2.3/antiCmds/Model1.bin
6564680 vendor/etc/voicecommand/training/ubmfile/keyword03/es-ES/hhhh/p2/antiCmds/Model1.bin
6564680 vendor/etc/voicecommand/training/ubmfile/keyword03/es-ES/hhhh/p2.3/antiCmds/Model1.bin
6564680 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/hhhh/p2/antiCmds/Model1.bin
6564680 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/hhhh/p2.3/antiCmds/Model1.bin
6564680 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/hhhh/p2/antiCmds/Model1.bin
6564680 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/hhhh/p2.3/antiCmds/Model1.bin
6564680 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/hhhh/p2/antiCmds/Model1.bin
6564680 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/hhhh/p2.3/antiCmds/Model1.bin
6564680 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/hhhh/p2/antiCmds/Model1.bin
6564680 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/hhhh/p2.3/antiCmds/Model1.bin
6564680 vendor/etc/voicecommand/training/ubmfile/keyword02/hhaa/p2/antiCmds/Model1.bin
6564680 vendor/etc/voicecommand/training/ubmfile/keyword02/dddd/p2/antiCmds/Model1.bin
6501199 system/system/data-app/MIUIScreenRecorderLiteGlobal/MIUIScreenRecorderLiteGlobal.apk
6434832 system/system/system_ext/lib64/libmcv_runtime_usdk.mtk.so
6313321 vendor/etc/camera/model/dof_model/capture_model
6292634 system/system/framework/framework-ext-res/framework-ext-res.apk
6245150 system/system/priv-app/DocumentsUIGoogle/DocumentsUIGoogle.apk
6146028 system/system/lib/libhwui.so
6112502 system/system/priv-app/barrage/barrage.apk
6080579 product/priv-app/ConfigUpdater/ConfigUpdater.apk
5847384 product/app/SpeechServicesByGoogle/oat/arm64/SpeechServicesByGoogle.vdex
5831419 system/system/priv-app/AuthManager/AuthManager.apk
5829042 vendor/etc/voicecommand/training/ubmfile/keyword08/hhaa/supplement/27
5829042 vendor/etc/voicecommand/training/ubmfile/keyword08/dddd/supplement/27
5829042 vendor/etc/voicecommand/training/ubmfile/keyword02/hhaa/supplement/27
5829042 vendor/etc/voicecommand/training/ubmfile/keyword02/dddd/supplement/27
5810196 system/system/app/facebook-appmanager/facebook-appmanager.apk
5782069 system/system/app/HybridAccessory/HybridAccessory.apk
5768210 vendor/etc/voicecommand/training/ubmfile/keyword08/hhaa/supplement/29
5768210 vendor/etc/voicecommand/training/ubmfile/keyword08/dddd/supplement/29
5768210 vendor/etc/voicecommand/training/ubmfile/keyword02/hhaa/supplement/29
5768210 vendor/etc/voicecommand/training/ubmfile/keyword02/dddd/supplement/29
5748040 vendor/lib64/libmnl.so
5597040 system/system/apex/com.google.android.permission_compressed.apex
5529616 vendor/lib/modules/wlan_drv_gen4m.ko
5520577 vendor/thh/ta/8888c03fc30c4dd0a319ea29643d4d4b.ta
5474404 product/app/GoogleOne/oat/arm64/GoogleOne.vdex
5452200 vendor/lib64/s5kjn1sunny_mipi_raw_tuning.so
5391591 product/usr/srec/en-US/rescoring.fst.compact
5388800 system/system/lib64/libnexeditorsdk.so
5344144 system/system/system_ext/lib/libnir_neon_driver_ndk.mtk.so
5117722 system/system/data-app/wps_lite/wps_lite.apk
4998216 vendor/lib64/ov50c40ofilm_mipi_raw_tuning.so
4955084 vendor/lib/s5kjn1sunny_mipi_raw_tuning.so
4747882 system/system/framework/miui-services.jar
4731280 system/system/system_ext/lib64/libneuronusdk_adapter.mtk.so
4711822 system/system/app/MSA-Global/MSA-Global.apk
4683760 vendor/lib64/libmtk-ril.so
4671013 system/system/app/MIUIFrequentPhrase/MIUIFrequentPhrase.apk
4643367 product/usr/srec/en-US/lstm_model.uint8.data
4641483 system/system/priv-app/Stk1/Stk1.apk
4636350 system/system/media/theme/cust_config/Poco/bootanimation.zip
4616957 system/system/framework/miui-framework.jar
4600528 vendor/lib/ov50c40ofilm_mipi_raw_tuning.so
4585448 system/system/system_ext/lib64/libtflite_mtk.mtk.so
4581853 system/system/media/wallpaper/wallpaper_group/04_NaturalTexture/NaturalTexture004.jpg
4576524 system/system/apex/com.google.android.cellbroadcast_compressed.apex
4566779 system/system/framework/miuix.jar
4556144 system/system/lib64/libtflite_mtk.so
4539827 system/system/priv-app/FindDevice/FindDevice.apk
4399362 system/system/app/miui/miui.apk
4348120 system/system/app/KeyChain/oat/arm64/KeyChain.odex
4310087 system/system/priv-app/ManagedProvisioning/ManagedProvisioning.apk
4236343 system/system/etc/precust_theme/theme/.data/content/icons/1d5959e0-c5ba-41e9-a265-b15e7c39922d.mrc
4230718 system/system/app/MiuiPrintSpoolerBeta/MiuiPrintSpoolerBeta.apk
4210848 vendor/lib64/libaiawb_moon_model.so
4159129 product/priv-app/ImsServiceEntitlement/ImsServiceEntitlement.apk
4127836 system/system/system_ext/lib/libneuronusdk_adapter.mtk.so
4026827 vendor/res/images/lcd_test_01.png
4014753 system/system/framework/telephony-common.jar
4007342 system/system/apex/com.google.android.neuralnetworks_compressed.apex
3967488 vendor/lib64/ov16a1qqtech_mipi_raw_tuning.so
3967488 vendor/lib64/ov16a1qofilm_mipi_raw_tuning.so
3954284 product/data-app/Podcasts/oat/arm64/Podcasts.vdex
3935700 product/usr/srec/en-US/CLG.prewalk.fst
3915504 system/system/lib64/libpdfium.so
3873459 system/system/media/wallpaper/wallpaper_group/05_BlackGobi/BlackGobi05.jpg
3872408 product/priv-app/AndroidAutoStub/AndroidAutoStub.apk
3842048 system/system/framework/arm64/boot-framework.art
3777936 system/system/lib/libpdfium.so
3764050 system/system/media/wallpaper/wallpaper_group/04_NaturalTexture/NaturalTexture006.jpg
3728553 system/system/etc/precust_theme/theme/.data/content/icons/2ec5884d-22a6-423b-9f2c-5c0202ba2fa7.mrc
3716656 vendor/lib64/libmtkmipc-ril.so
3714656 vendor/lib/ov16a1qqtech_mipi_raw_tuning.so
3714656 vendor/lib/ov16a1qofilm_mipi_raw_tuning.so
3698688 system/system/framework/arm/boot-framework.art
3667120 product/usr/srec/en-US/dnn
3666674 system/system/media/wallpaper/wallpaper_group/04_NaturalTexture/NaturalTexture001.jpg
3662188 system/system/system_ext/lib/libmcv_runtime_usdk.mtk.so
3642067 system/system/priv-app/EngineerMode/EngineerMode.apk
3582720 system/system/lib64/libgallery_arcsoft_dualcam_refocus.so
3582496 product/app/GoogleCalendarSyncAdapter/oat/arm64/GoogleCalendarSyncAdapter.vdex
3547471 system/system/media/wallpaper/wallpaper_group/04_NaturalTexture/NaturalTexture003.jpg
3452840 vendor/lib64/libanc_dc_plugin_xiaomi_v2.so
3326536 product/usr/srec/en-US/g2p_fst
3291090 system/system/priv-app/GooglePackageInstaller/GooglePackageInstaller.apk
3290331 system/system/apex/com.google.android.adbd_trimmed_compressed.apex
3284075 system/system/media/wallpaper/wallpaper_group/04_NaturalTexture/NaturalTexture002.jpg
3267769 system/system/framework/mediatek-telephony-common.jar
3259316 system/system/system_ext/lib/libtflite_mtk.mtk.so
3237964 system/system/lib/libtflite_mtk.so
3214654 system/system/media/wallpaper/wallpaper_group/04_NaturalTexture/NaturalTexture007.jpg
3180948 system/system/app/KeyChain/KeyChain.apk
3121818 cust/app/customized/partner-com.netflix.mediaclient_90/partner-com.netflix.mediaclient_90.apk
3080310 system/system/priv-app/MiuiVpnDialogs/MiuiVpnDialogs.apk
3079276 system/system/media/wallpaper/wallpaper_group/04_NaturalTexture/NaturalTexture005.jpg
3062786 system/system/system_ext/app/FM/FM.apk
3047008 system/system/system_ext/lib64/libtess.so
3032304 vendor/lib64/vendor.mediatek.hardware.mtkradioex@3.0.so
3032304 system/system/system_ext/lib64/vendor.mediatek.hardware.mtkradioex@3.0.so
3021760 vendor/bin/hw/wpa_supplicant
2904131 system/system/media/wallpaper/wallpaper_group/05_BlackGobi/BlackGobi04.jpg
2898272 system/system/bin/iorap.cmd.compiler
2897447 system/system/priv-app/facebook-services/facebook-services.apk
2885860 system/system/apex/com.google.android.extservices_compressed.apex
2805040 system/system/apex/com.google.android.media_compressed.apex
2764336 vendor/lib64/libwvhidl.so
2760918 system/system/app/miuix/miuix.apk
2759575 system/system/media/theme/default/dynamicicons
2735696 vendor/lib64/libmtkcam_hwnode.so
2698619 system/system/media/audio/alarms/Dewdrops.ogg
2693478 system/system/app/MIRadioGlobalBuiltin/MIRadioGlobalBuiltin.apk
2666981 system/system/app/MIUIGlobalLayout/MIUIGlobalLayout.apk
2662944 product/overlay/MiuiTelcelWallpaperOverlay.apk
2654472 vendor/firmware/lib3a.ccu
2650249 system/system/media/wallpaper/wallpaper_group/03_Concerto/Concerto02_dark.jpg
2626909 system/system/app/MIUIGuardProviderGlobal/MIUIGuardProviderGlobal.apk
2600728 vendor/lib64/imx355sunny_mipi_raw_tuning.so
2600720 vendor/lib64/imx355ofilm_mipi_raw_tuning.so
2589319 system/system/app/FidoAuthen/FidoAuthen.apk
2586819 system/system/media/wallpaper/wallpaper_group/05_BlackGobi/BlackGobi03.jpg
2585824 boot/ramdisk/system/bin/recovery
2579216 system/system/lib64/libvis.so
2518048 vendor/bin/mtk_agpsd
2508725 system/system/framework/mediatek-ims-legacy.jar
2506318 system/system/app/LiveWallpapersPicker/LiveWallpapersPicker.apk
2493880 vendor/lib64/mediadrm/libwvdrmengine.so
2484539 product/app/GoogleCalendarSyncAdapter/GoogleCalendarSyncAdapter.apk
2461672 system/system/system_ext/lib64/liblept.so
2454048 product/overlay/MiuiClaroWallpaperOverlay.apk
2447612 system/system/media/wallpaper/wallpaper_group/05_BlackGobi/BlackGobi02.jpg
2447480 system/system/lib64/libcameraservice.so
2444144 vendor/lib/modules/wmt_drv.ko
2375073 system/system/media/wallpaper/wallpaper_group/05_BlackGobi/BlackGobi01.jpg
2372548 system/system/fonts/Roboto-Regular.ttf
2349280 vendor/lib64/libSQLiteModule_VER_ALL.so
2347714 product/data-app/Podcasts/Podcasts.apk
2343080 vendor/lib64/libmtkcam.featurepipe.streaming.so
2331243 system/system/apex/com.google.android.conscrypt_compressed.apex
2325146 system/system/framework/ext.jar
2316448 vendor/lib64/lib_sr_models.so
2304247 product/usr/srec/en-US/TERSE_LSTM_LM.lstm_lm.self_normalized_model.uint8.data
2299040 vendor/lib64/libgf_hal.so
2297976 vendor/lib64/hw/audio.primary.mt6833.so
2297856 system/system/framework/oat/arm64/services.art
2286180 vendor/lib/libwvhidl.so
2266352 vendor/lib/hw/audio.primary.mt6833.so
2262905 system/system/etc/precust_theme/theme/.data/content/wallpaper/ada80cb3-690b-4d2d-b8a4-faf31a83ac38.mrc
2262905 system/system/etc/precust_theme/theme/.data/content/lockscreen/e8bd788a-692d-4ed1-855d-996a18399503.mrc
2254875 system/system/apex/com.android.appsearch.apex
2244792 vendor/lib64/libprotobuf-cpp-full-3.9.1.so
2244792 system/system/lib64/libprotobuf-cpp-full.so
2219176 product/priv-app/SettingsIntelligence/SettingsIntelligence.apk
2214928 product/app/GoogleContactsSyncAdapter/oat/arm64/GoogleContactsSyncAdapter.vdex
2210348 system/system/system_ext/lib/vendor.mediatek.hardware.mtkradioex@3.0.so
2196483 system/system/apex/com.android.wifi.capex
2190128 boot/ramdisk/system/bin/update_engine_sideload
2170452 system/system/media/audio/ringtones/MiJazz.ogg
2166081 system/system/media/wallpaper/wallpaper_group/03_Concerto/Concerto02.jpg
2146520 system/system/lib64/libandroid_runtime.so
2142084 system/system/media/wallpaper/wallpaper_group/03_Concerto/Concerto01_dark.jpg
2112360 boot/ramdisk/system/bin/adbd
2101381 vendor/res/images/lcd_test_00.png
2098882 system/system/media/wallpaper/wallpaper_group/03_Concerto/Concerto04_dark.jpg
2068684 vendor/lib/mediadrm/libwvdrmengine.so
2061955 system/system/media/audio/alarms/Fireflies.ogg
2058856 system/system/bin/update_engine
2055077 system/system/media/wallpaper/wallpaper_group/03_Concerto/Concerto05_dark.jpg
2043984 system/system/bin/init
2017792 boot/ramdisk/system/bin/init
2015104 system/system/lib64/libclang_rt.asan-aarch64-android.so
1977512 vendor/lib64/egl/libGLES_meow.so
1965663 system/system/media/wallpaper/wallpaper_group/03_Concerto/Concerto03_dark.jpg
1920044 vendor/res/sound/ringtone.wav
1903080 vendor/lib64/libvideofilter_only.so
1883456 system/system/lib64/hw/audio.a2dp.default.so
1868752 system/system/app/MiuiDaemon/MiuiDaemon.apk
1864685 system/system/framework/cloud-common-runtime.jar
1862316 system/system/system_ext/lib/libtess.so
1854752 system/system/lib64/libstagefright.so
1853750 system/system/app/EasterEgg/EasterEgg.apk
1851088 vendor/lib/libvpx.so
1846101 vendor/res/images/lcd_test_02.png
1844369 system/system/media/wallpaper/wallpaper_group/03_Concerto/Concerto01.jpg
1836237 system/system/apex/com.google.android.resolv_compressed.apex
1835486 system/system/apex/com.google.mainline.primary.libs.apex
1824625 system/system/apex/com.google.android.mediaprovider_compressed.apex
1818753 system/system/media/audio/ringtones/MiMix2.ogg
1810417 system/system/etc/selinux/plat_sepolicy.cil
1805040 vendor/etc/voicecommand/training/ubmfile/keyword08/hhaa/supplement/26
1805040 vendor/etc/voicecommand/training/ubmfile/keyword08/dddd/supplement/26
1805040 vendor/etc/voicecommand/training/ubmfile/keyword02/hhaa/supplement/26
1805040 vendor/etc/voicecommand/training/ubmfile/keyword02/dddd/supplement/26
1793136 system/system/lib/libclang_rt.asan-arm-android.so
1772649 system/system/framework/mediatek-wfo-legacy.jar
1770648 vendor/lib64/libimageio_plat_drv.so
1768568 system/system/bin/bootstrap/linker64
1768568 boot/ramdisk/system/bin/linker64
1714177 vendor/etc/camera/model/rt_model/preview_model
1685231 system/system/media/wallpaper/wallpaper_group/03_Concerto/Concerto03.jpg
1683985 system/system/media/wallpaper/wallpaper_group/03_Concerto/Concerto04.jpg
1661360 system/system/framework/oat/arm64/android-support-v13.odex
1657344 vendor/lib64/mt6833/libdpframework.so
1633565 vendor/thh/ta/7778c03fc30c4dd0a319ea29643d4d4b.ta
1617835 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/hhhh/p2.5/n2
1617835 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/hhhh/p2.5/n0
1617835 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/hhhh/p2.5/n2
1617835 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/hhhh/p2.5/n0
1617835 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/hhhh/p2.5/n2
1617835 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/hhhh/p2.5/n0
1617835 vendor/etc/voicecommand/training/ubmfile/keyword03/es-ES/hhhh/p2.5/n2
1617835 vendor/etc/voicecommand/training/ubmfile/keyword03/es-ES/hhhh/p2.5/n0
1617835 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/hhhh/p2.5/n2
1617835 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/hhhh/p2.5/n0
1617835 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/hhhh/p2.5/n2
1617835 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/hhhh/p2.5/n0
1617835 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/hhhh/p2.5/n2
1617835 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/hhhh/p2.5/n0
1617835 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/hhhh/p2.5/n2
1617835 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/hhhh/p2.5/n0
1616088 vendor/lib64/libvendor.goodix.hardware.biometrics.fingerprint@2.1.so
1614061 vendor/etc/voicecommand/training/ubmfile/keyword08/hhaa/p2.5/n0
1614061 vendor/etc/voicecommand/training/ubmfile/keyword08/dddd/p2.5/n0
1608760 vendor/lib/libprotobuf-cpp-full-3.9.1.so
1608512 vendor/thh/ta/655a4b46cd7711eaaafbf382a6988e7b.ta
1608504 system/system/lib/libprotobuf-cpp-full.so
1603719 vendor/etc/voicecommand/training/ubmfile/keyword02/hhaa/p2.5/n0
1603719 vendor/etc/voicecommand/training/ubmfile/keyword02/dddd/p2.5/n0
1594312 system/system/bin/keystore2
1594312 boot/ramdisk/system/bin/keystore2
1587816 system/system/system_ext/lib/liblept.so
1577904 system/system/lib64/libmediaplayerservice.so
1575686 system/system/app/mediatek-res/mediatek-res.apk
1574848 system/system/bin/bootstrap/linkerconfig
1571497 product/app/GoogleContactsSyncAdapter/GoogleContactsSyncAdapter.apk
1571460 system/system/media/audio/ringtones/Carousel.ogg
1546728 vendor/lib64/android.hardware.radio@1.6.so
1546728 system/system/lib64/android.hardware.radio@1.6.so
1545864 vendor/lib64/libmtkcam.featurepipe.capture.so
1516932 system/system/lib/libandroid_runtime.so
1509425 system/system/priv-app/ImsService/ImsService.apk
1484225 system/system/app/Joyose/Joyose.apk
1477288 system/system/framework/miuipushsdkshared.jar
1465366 product/usr/srec/en-US/TERSE_LSTM_LM.lstm_lm.main_model.uint8.data
1448720 vendor/lib/modules/met.ko
1444518 vendor/firmware/aw869x_rtp_silk.bin
1444518 vendor/firmware/aw869x_rtp_lighthouse.bin
1444518 vendor/firmware/aw869x_rtp.bin
1440676 vendor/etc/voicecommand/training/ubmfile/keyword08/hhaa/p2.3/model.bin
1440676 vendor/etc/voicecommand/training/ubmfile/keyword08/dddd/p2.3/model.bin
1440676 vendor/etc/voicecommand/training/ubmfile/keyword02/hhaa/p2.3/model.bin
1440676 vendor/etc/voicecommand/training/ubmfile/keyword02/dddd/p2.3/model.bin
1435130 system/system/priv-app/DownloadProvider/DownloadProvider.apk
1426648 system/system/framework/oat/arm/android-support-v13.odex
1423653 vendor/thh/ta/c09c9c5daa504b78b0e46eda61556c3a.ta
1421800 system/system/bin/simpleperf
1421704 system/system/lib64/libgrpc++.so
1412816 vendor/lib/egl/libGLES_meow.so
1409056 system/system/lib/libstagefright.so
1407808 system/system/lib/hw/audio.a2dp.default.so
1395776 vendor/lib64/libmtkcam.featurepipe.depthmap.so
1385272 vendor/lib64/lib3a.ae.so
1375902 product/usr/srec/en-US/lexicon.U.fst
1363672 system/system/media/audio/alarms/Daydream.ogg
1350320 vendor/lib/libvcodecdrv.so
1341568 system/system/system_ext/lib64/libcmdl_ndk.mtk.so
1338352 system/system/lib64/libsqliteX.so
1318352 vendor/lib64/libcam.isptuning.so
1316440 vendor/lib64/android.hardware.radio@1.5.so
1316440 system/system/system_ext/lib64/android.hardware.radio@1.5.so
1309680 vendor/lib64/android.hardware.wifi.supplicant@1.0.so
1301672 system/system/lib64/libchrome.so
1301192 system/system/lib64/bootstrap/libc.so
1301192 boot/ramdisk/system/lib64/libc.so
1301088 vendor/lib64/android.hardware.radio@1.0.so
1301088 system/system/lib64/android.hardware.radio@1.0.so
1290832 system/system/lib64/libgui.so
1289776 system/system/bin/bootstrap/linker
1284016 vendor/lib64/libgpudataproducer.so
1277568 system/system/system_ext/lib64/libmvpu_runtime_pub.mtk.so
1277568 system/system/system_ext/lib64/libmvpu_runtime.mtk.so
1275504 system/system/lib64/libxml2.so
1264024 vendor/lib/mt6833/libdpframework.so
1249984 product/priv-app/GoogleAssistant/oat/arm64/GoogleAssistant.vdex
1248872 vendor/lib64/android.hardware.audio.effect@7.0.so
1248872 system/system/lib64/android.hardware.audio.effect@7.0.so
1247592 system/system/bin/iorapd
1247200 system/system/lib64/libaudioflinger.so
1240128 boot/ramdisk/system/bin/fastbootd
1238040 system/system/lib64/service.incremental.so
1228196 system/system/app/miuisystem/miuisystem.apk
1228072 system/system/lib64/android.hardware.audio.effect@5.0.so
1228048 vendor/lib64/android.hardware.audio.effect@6.0.so
1228048 system/system/lib64/android.hardware.audio.effect@6.0.so
1228040 system/system/lib64/android.hardware.audio.effect@4.0.so
1224872 system/system/framework/arm64/boot-core-icu4j.oat
1224144 system/system/lib64/libcrypto.so
1224144 boot/ramdisk/system/lib64/libcrypto.so
1213440 vendor/lib64/mt6833/libpq_prot.so
1213112 system/system/lib64/libvow_ap_train_hhha.so
1212551 system/system/media/audio/ringtones/POCO.ogg
1211104 system/system/lib64/libperfetto.so
1200240 vendor/lib64/lib3a.awb.core.so
1193228 system/system/lib/libmediaplayerservice.so
1185320 vendor/lib64/libcodec2_mtk_venc.so
1180176 system/system/lib64/libvow_ap_train_hhhh.so
1177592 system/system/lib64/libblas.so
1160536 system/system/lib64/libbcinfo.so
1157936 vendor/lib64/libcodec2_mtk_vdec.so
1154840 vendor/bin/hw/hostapd
1151608 system/system/lib64/libsqlite.so
1150420 vendor/etc/voicecommand/training/ubmfile/keyword02/hhaa/p2.5/ubmModel3.bin
1150420 vendor/etc/voicecommand/training/ubmfile/keyword02/hhaa/p2.5/ubmModel0.bin
1150420 vendor/etc/voicecommand/training/ubmfile/keyword02/dddd/p2.5/ubmModel3.bin
1150420 vendor/etc/voicecommand/training/ubmfile/keyword02/dddd/p2.5/ubmModel0.bin
1146032 vendor/lib64/hw/hwcomposer.mt6833.so
1142976 system/system/bin/snapshotctl
1142904 system/system/lib64/libvow_ap_train_dddd.so
1139251 system/system/media/wallpaper/wallpaper_group/01_MoltenGlass/MoltenGlass03.jpg
1135434 system/system/apex/com.google.android.tethering_compressed.apex
1131763 product/priv-app/GoogleAssistant/GoogleAssistant.apk
1126010 boot/ramdisk/sepolicy
1125160 vendor/lib64/android.hardware.radio@1.4.so
1125160 system/system/lib64/android.hardware.radio@1.4.so
1124700 system/system/lib64/libclcore_g.bc
1109712 system/system/lib64/libvow_ap_train_hhaa.so
1107011 system/system/media/wallpaper/wallpaper_group/01_MoltenGlass/MoltenGlass04_dark.jpg
1105669 system/system/etc/NOTICE.xml.gz
1100484 system/system/media/audio/ringtones/AcousticGuitar.ogg
1100000 system/system/fonts/NotoSerifTibetan-VF.ttf
1099424 vendor/lib64/libcam.halsensor.so
1098520 system/system/system_ext/bin/trace
1097569 vendor/etc/camera/model/dof_model/capture_cache
1097320 vendor/lib/mt6833/libpq_prot.so
1097232 system/system/lib64/libvow_ap_train_hhnn.so
1091392 system/system/lib/android.hardware.radio@1.6.so
1085008 system/system/bin/snapuserd
1084568 system/system/lib/bootstrap/libc.so
1077160 system/system/lib64/libclcore_debug_g.bc
1075426 vendor/etc/voicecommand/training/ubmfile/keyword08/hhaa/supplement/13
1075426 vendor/etc/voicecommand/training/ubmfile/keyword08/dddd/supplement/13
1075426 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/hhhh/supplement/13
1075426 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/hhhh/supplement/13
1075426 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/hhhh/supplement/13
1075426 vendor/etc/voicecommand/training/ubmfile/keyword03/es-ES/hhhh/supplement/13
1075426 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/hhhh/supplement/13
1075426 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/hhhh/supplement/13
1075426 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/hhhh/supplement/13
1075426 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/hhhh/supplement/13
1075426 vendor/etc/voicecommand/training/ubmfile/keyword02/hhaa/supplement/13
1075426 vendor/etc/voicecommand/training/ubmfile/keyword02/dddd/supplement/13
1067372 system/system/lib/libclcore_g.bc
1066574 system/system/media/wallpaper/wallpaper_group/03_Concerto/Concerto05.jpg
1065800 boot/ramdisk/first_stage_ramdisk/system/bin/e2fsck
1064168 system/system/bin/vold
1064168 boot/ramdisk/system/bin/vold
1056821 system/system/framework/android-support-v13.jar
1056192 vendor/lib64/libmtkcam.logicalmodule.so
1054640 vendor/lib64/libc++_shared.so
1054640 system/system/lib64/libdoc_photo_c++_shared.so
1053848 vendor/etc/selinux/vendor_sepolicy.cil
1050780 system/system/framework/arm/boot-core-icu4j.oat
1050712 vendor/lib64/libmialgo_utils.so
1050664 vendor/lib/libgpudataproducer.so
1036984 system/system/lib64/libaudiopolicymanagerdefault.so
1035868 system/system/lib/libgrpc++.so
1034168 vendor/lib64/android.hardware.wifi@1.0.so
1031416 vendor/lib64/android.hardware.radio@1.2.so
1031416 system/system/lib64/android.hardware.radio@1.2.so
1030184 vendor/lib64/libFactoryHALCommon.so
1027403 vendor/etc/selinux/precompiled_sepolicy
1022697 system/system/media/wallpaper/wallpaper_group/01_MoltenGlass/MoltenGlass04.jpg
1021448 system/system/priv-app/NetworkStackGoogle/NetworkStackGoogle.apk
1014647 product/usr/srec/en-US/g2p.data
1013348 system/system/bin/QMESA_64
1003256 system/system/lib64/libharfbuzz_ng.so
993890 system/system/etc/apns-conf.xml
989200 vendor/lib64/android.hardware.wifi.supplicant@1.4.so
986464 product/usr/srec/en-US/verbalizer_terse.mfar
976880 system/system/lib64/libc++_shared.so
976124 system/system/lib/libharfbuzz_ng.so
969068 vendor/etc/voicecommand/training/ubmfile/keyword08/hhaa/supplement/25
969068 vendor/etc/voicecommand/training/ubmfile/keyword08/dddd/supplement/25
969068 vendor/etc/voicecommand/training/ubmfile/keyword02/hhaa/supplement/25
969068 vendor/etc/voicecommand/training/ubmfile/keyword02/dddd/supplement/25
968978 vendor/firmware/Carousel_RTP.bin
968978 vendor/firmware/24_Carousel_RTP.bin
967084 vendor/etc/selinux/plat_pub_versioned.cil
966264 vendor/lib64/android.hardware.radio@1.3.so
966264 system/system/lib64/android.hardware.radio@1.3.so
964236 system/system/lib/libvow_ap_train_hhha.so
962108 vendor/etc/voicecommand/training/ubmfile/keyword08/hhaa/supplement/12
962108 vendor/etc/voicecommand/training/ubmfile/keyword08/dddd/supplement/12
962108 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/hhhh/supplement/12
962108 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/hhhh/supplement/12
962108 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/hhhh/supplement/12
962108 vendor/etc/voicecommand/training/ubmfile/keyword03/es-ES/hhhh/supplement/12
962108 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/hhhh/supplement/12
962108 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/hhhh/supplement/12
962108 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/hhhh/supplement/12
962108 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/hhhh/supplement/12
962108 vendor/etc/voicecommand/training/ubmfile/keyword02/hhaa/supplement/12
962108 vendor/etc/voicecommand/training/ubmfile/keyword02/dddd/supplement/12
961828 system/system/system_ext/lib/libmvpu_runtime_pub.mtk.so
961796 system/system/system_ext/lib/libmvpu_runtime.mtk.so
960742 vendor/etc/voicecommand/training/ubmfile/keyword08/hhaa/supplement/8
960742 vendor/etc/voicecommand/training/ubmfile/keyword08/dddd/supplement/8
960742 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/hhhh/supplement/8
960742 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/hhhh/supplement/8
960742 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/hhhh/supplement/8
960742 vendor/etc/voicecommand/training/ubmfile/keyword03/es-ES/hhhh/supplement/8
960742 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/hhhh/supplement/8
960742 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/hhhh/supplement/8
960742 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/hhhh/supplement/8
960742 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/hhhh/supplement/8
960742 vendor/etc/voicecommand/training/ubmfile/keyword02/hhaa/supplement/8
960742 vendor/etc/voicecommand/training/ubmfile/keyword02/dddd/supplement/8
960000 vendor/etc/voicecommand/training/ubmfile/keyword08/hhaa/supplement/9
960000 vendor/etc/voicecommand/training/ubmfile/keyword08/hhaa/supplement/7
960000 vendor/etc/voicecommand/training/ubmfile/keyword08/hhaa/supplement/6
960000 vendor/etc/voicecommand/training/ubmfile/keyword08/hhaa/supplement/5
960000 vendor/etc/voicecommand/training/ubmfile/keyword08/hhaa/supplement/4
960000 vendor/etc/voicecommand/training/ubmfile/keyword08/hhaa/supplement/3
960000 vendor/etc/voicecommand/training/ubmfile/keyword08/hhaa/supplement/2
960000 vendor/etc/voicecommand/training/ubmfile/keyword08/hhaa/supplement/10
960000 vendor/etc/voicecommand/training/ubmfile/keyword08/hhaa/supplement/1
960000 vendor/etc/voicecommand/training/ubmfile/keyword08/dddd/supplement/9
960000 vendor/etc/voicecommand/training/ubmfile/keyword08/dddd/supplement/7
960000 vendor/etc/voicecommand/training/ubmfile/keyword08/dddd/supplement/6
960000 vendor/etc/voicecommand/training/ubmfile/keyword08/dddd/supplement/5
960000 vendor/etc/voicecommand/training/ubmfile/keyword08/dddd/supplement/4
960000 vendor/etc/voicecommand/training/ubmfile/keyword08/dddd/supplement/3
960000 vendor/etc/voicecommand/training/ubmfile/keyword08/dddd/supplement/2
960000 vendor/etc/voicecommand/training/ubmfile/keyword08/dddd/supplement/10
960000 vendor/etc/voicecommand/training/ubmfile/keyword08/dddd/supplement/1
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/hhhh/supplement/9
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/hhhh/supplement/7
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/hhhh/supplement/6
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/hhhh/supplement/5
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/hhhh/supplement/4
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/hhhh/supplement/3
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/hhhh/supplement/2
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/hhhh/supplement/10
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/hhhh/supplement/1
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/hhhh/supplement/9
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/hhhh/supplement/7
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/hhhh/supplement/6
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/hhhh/supplement/5
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/hhhh/supplement/4
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/hhhh/supplement/3
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/hhhh/supplement/2
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/hhhh/supplement/10
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/hhhh/supplement/1
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/hhhh/supplement/9
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/hhhh/supplement/7
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/hhhh/supplement/6
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/hhhh/supplement/5
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/hhhh/supplement/4
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/hhhh/supplement/3
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/hhhh/supplement/2
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/hhhh/supplement/10
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/hhhh/supplement/1
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/es-ES/hhhh/supplement/9
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/es-ES/hhhh/supplement/7
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/es-ES/hhhh/supplement/6
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/es-ES/hhhh/supplement/5
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/es-ES/hhhh/supplement/4
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/es-ES/hhhh/supplement/3
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/es-ES/hhhh/supplement/2
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/es-ES/hhhh/supplement/10
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/es-ES/hhhh/supplement/1
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/hhhh/supplement/9
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/hhhh/supplement/7
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/hhhh/supplement/6
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/hhhh/supplement/5
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/hhhh/supplement/4
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/hhhh/supplement/3
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/hhhh/supplement/2
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/hhhh/supplement/10
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/hhhh/supplement/1
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/hhhh/supplement/9
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/hhhh/supplement/7
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/hhhh/supplement/6
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/hhhh/supplement/5
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/hhhh/supplement/4
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/hhhh/supplement/3
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/hhhh/supplement/2
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/hhhh/supplement/10
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/hhhh/supplement/1
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/hhhh/supplement/9
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/hhhh/supplement/7
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/hhhh/supplement/6
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/hhhh/supplement/5
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/hhhh/supplement/4
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/hhhh/supplement/3
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/hhhh/supplement/2
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/hhhh/supplement/10
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/hhhh/supplement/1
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/hhhh/supplement/9
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/hhhh/supplement/7
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/hhhh/supplement/6
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/hhhh/supplement/5
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/hhhh/supplement/4
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/hhhh/supplement/3
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/hhhh/supplement/2
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/hhhh/supplement/10
960000 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/hhhh/supplement/1
960000 vendor/etc/voicecommand/training/ubmfile/keyword02/hhaa/supplement/9
960000 vendor/etc/voicecommand/training/ubmfile/keyword02/hhaa/supplement/7
960000 vendor/etc/voicecommand/training/ubmfile/keyword02/hhaa/supplement/6
960000 vendor/etc/voicecommand/training/ubmfile/keyword02/hhaa/supplement/5
960000 vendor/etc/voicecommand/training/ubmfile/keyword02/hhaa/supplement/4
960000 vendor/etc/voicecommand/training/ubmfile/keyword02/hhaa/supplement/3
960000 vendor/etc/voicecommand/training/ubmfile/keyword02/hhaa/supplement/2
960000 vendor/etc/voicecommand/training/ubmfile/keyword02/hhaa/supplement/10
960000 vendor/etc/voicecommand/training/ubmfile/keyword02/hhaa/supplement/1
960000 vendor/etc/voicecommand/training/ubmfile/keyword02/dddd/supplement/9
960000 vendor/etc/voicecommand/training/ubmfile/keyword02/dddd/supplement/7
960000 vendor/etc/voicecommand/training/ubmfile/keyword02/dddd/supplement/6
960000 vendor/etc/voicecommand/training/ubmfile/keyword02/dddd/supplement/5
960000 vendor/etc/voicecommand/training/ubmfile/keyword02/dddd/supplement/4
960000 vendor/etc/voicecommand/training/ubmfile/keyword02/dddd/supplement/3
960000 vendor/etc/voicecommand/training/ubmfile/keyword02/dddd/supplement/2
960000 vendor/etc/voicecommand/training/ubmfile/keyword02/dddd/supplement/10
960000 vendor/etc/voicecommand/training/ubmfile/keyword02/dddd/supplement/1
955946 vendor/firmware/MiJazz_RTP.bin
955946 vendor/firmware/42_MiJazz_RTP.bin
953779 system/system/apex/com.google.android.tzdata3.apex
952328 system/system/lib64/libmiuiblursdk.so
950946 system/system/media/wallpaper/wallpaper_group/01_MoltenGlass/MoltenGlass01.jpg
950584 system/system/bin/mdnsd
949404 vendor/etc/voicecommand/training/ubmfile/keyword08/hhaa/supplement/24
949404 vendor/etc/voicecommand/training/ubmfile/keyword08/dddd/supplement/24
949404 vendor/etc/voicecommand/training/ubmfile/keyword02/hhaa/supplement/24
949404 vendor/etc/voicecommand/training/ubmfile/keyword02/dddd/supplement/24
944504 vendor/lib64/libDR.so
941408 system/system/lib/libclcore_debug_g.bc
939760 system/system/lib/libvow_ap_train_hhhh.so
939756 system/system/lib/libchrome.so
937336 vendor/etc/voicecommand/training/ubmfile/keyword08/hhaa/supplement/22
937336 vendor/etc/voicecommand/training/ubmfile/keyword08/dddd/supplement/22
937336 vendor/etc/voicecommand/training/ubmfile/keyword02/hhaa/supplement/22
937336 vendor/etc/voicecommand/training/ubmfile/keyword02/dddd/supplement/22
936372 vendor/etc/voicecommand/training/ubmfile/keyword08/hhaa/supplement/21
936372 vendor/etc/voicecommand/training/ubmfile/keyword08/dddd/supplement/21
936372 vendor/etc/voicecommand/training/ubmfile/keyword02/hhaa/supplement/21
936372 vendor/etc/voicecommand/training/ubmfile/keyword02/dddd/supplement/21
935544 vendor/lib64/android.hardware.gnss@1.0.so
935544 system/system/lib64/android.hardware.gnss@1.0.so
933608 vendor/lib64/lib3a.af.core.so
931936 vendor/lib64/soundfx/libaudiopreprocessing.so
931160 vendor/etc/voicecommand/training/ubmfile/keyword08/hhaa/supplement/23
931160 vendor/etc/voicecommand/training/ubmfile/keyword08/dddd/supplement/23
931160 vendor/etc/voicecommand/training/ubmfile/keyword02/hhaa/supplement/23
931160 vendor/etc/voicecommand/training/ubmfile/keyword02/dddd/supplement/23
928892 vendor/lib/android.hardware.radio@1.0.so
928820 system/system/lib/android.hardware.radio@1.0.so
927960 vendor/lib64/android.hardware.radio@1.1.so
927960 system/system/lib64/android.hardware.radio@1.1.so
926896 vendor/lib64/librilfusion.so
926476 system/system/system_ext/lib/android.hardware.radio@1.5.so
923600 system/system/lib64/libXmStreamingSDK.so
920120 vendor/lib64/libfeature.stereo.provider.so
919214 system/system/priv-app/MediaProviderLegacy/MediaProviderLegacy.apk
917792 system/system/lib64/libgpumemtracer.so
914428 system/system/lib/libvow_ap_train_dddd.so
914140 vendor/lib/android.hardware.audio.effect@7.0.so
914140 system/system/lib/android.hardware.audio.effect@7.0.so
911624 vendor/lib64/libcam.hal3a.v3.platform.so
908984 vendor/lib64/libMtkSpeechEnh.so
906916 system/system/system_ext/lib/libcmdl_ndk.mtk.so
905936 system/system/bin/tcpdump
902536 system/system/lib/libgui.so
902050 system/system/media/audio/ringtones/Mi.ogg
899276 system/system/lib/android.hardware.audio.effect@4.0.so
899216 system/system/lib/android.hardware.audio.effect@5.0.so
899176 system/system/lib/android.hardware.audio.effect@6.0.so
899168 vendor/lib/android.hardware.audio.effect@6.0.so
895291 system/system/priv-app/MtpService/MtpService.apk
893588 system/system/lib/libvow_ap_train_hhaa.so
893200 system/system/lib/libcrypto.so
889592 system/system/lib64/libaudioprocessing.so
888636 system/system/lib/libxml2.so
886792 system/system/bin/hs20-osu-client
884596 system/system/lib/service.incremental.so
883160 system/system/lib/libvow_ap_train_hhnn.so
882616 vendor/lib64/libcam.iopipe.so
880504 system/system/system_ext/lib64/liboemnetdimpl.so
874608 vendor/lib64/libasn1c_mdmi.so
874420 product/usr/srec/en-US/wordlist.syms
871454 vendor/etc/voicecommand/training/ubmfile/keyword08/hhaa/supplement/28
871454 vendor/etc/voicecommand/training/ubmfile/keyword08/dddd/supplement/28
871454 vendor/etc/voicecommand/training/ubmfile/keyword02/hhaa/supplement/28
871454 vendor/etc/voicecommand/training/ubmfile/keyword02/dddd/supplement/28
871096 vendor/lib/libcodec2_mtk_venc.so
869274 product/usr/srec/en-US/TERSE_LSTM_LM.lstm_lm.syms
866048 system/system/bin/netd
862776 vendor/lib/libcodec2_mtk_vdec.so
862712 system/system/lib/libbcinfo.so
862632 vendor/lib64/interfaces.factoryInterface@1.0-adapter-helper.so
862632 system/system/system_ext/lib64/interfaces.factoryInterface@1.0-adapter-helper.so
859069 system/system/media/audio/ringtones/ToyRobot.ogg
848180 system/system/lib/libblas.so
848063 system/system/media/wallpaper/wallpaper_group/01_MoltenGlass/MoltenGlass02.jpg
848063 system/system/media/theme/default/lock_wallpaper
846231 system/system/priv-app/SoundPicker/SoundPicker.apk
843816 system/system/lib64/libandroid_servers.so
843492 system/system/fonts/NotoColorEmojiFlags.ttf
834711 system/system/system_ext/priv-app/AutoBootController/AutoBootController.apk
830832 system/system/lib64/libaudioclient.so
829026 system/system/apex/com.google.android.os.statsd_compressed.apex
828536 vendor/lib64/libmtkcam_fdvt.so
819957 system/system/framework/voip-common.jar
819918 system/system/priv-app/ContactsProvider/ContactsProvider.apk
814712 system/system/media/wallpaper/wallpaper_group/01_MoltenGlass/MoltenGlass05.jpg
813080 system/system/bin/strace
807972 vendor/etc/voicecommand/training/ubmfile/keyword08/hhaa/p2.5/ubmModel3.bin
807972 vendor/etc/voicecommand/training/ubmfile/keyword08/hhaa/p2.5/ubmModel0.bin
807972 vendor/etc/voicecommand/training/ubmfile/keyword08/dddd/p2.5/ubmModel3.bin
807972 vendor/etc/voicecommand/training/ubmfile/keyword08/dddd/p2.5/ubmModel0.bin
804768 product/usr/srec/en-US/embedded_class_denorm.mfar
803409 system/system/media/audio/ringtones/Childhood.ogg
802993 system/system/media/wallpaper/wallpaper_group/01_MoltenGlass/MoltenGlass03_dark.jpg
792608 system/system/lib/android.hardware.radio@1.4.so
792238 system/system/priv-app/CellBroadcastLegacyApp/CellBroadcastLegacyApp.apk
790024 vendor/bin/factory
789170 system/system/media/wallpaper/wallpaper_group/01_MoltenGlass/MoltenGlass01_dark.jpg
787540 system/system/lib/libsqlite.so
784096 system/system/lib64/libclang_rt.ubsan_standalone-aarch64-android.so
783912 vendor/lib/libvc1dec_sa.ca7.so
780872 system/system/lib64/libnexcralbody_mc_jb.so
780608 system/system/lib64/libdng_sdk.so
779656 system/system/lib/libEllipticDebug.so
772048 vendor/lib64/interfaces.factoryInterface@1.0.so
772048 system/system/system_ext/lib64/interfaces.factoryInterface@1.0.so
767817 vendor/firmware/MiMix2_RTP.bin
767817 vendor/firmware/39_MiMix2_RTP.bin
760326 system/system/app/MiuixEditor_global/MiuixEditor_global.apk
753944 system/system/bin/gsid
753762 system/system/media/audio/ringtones/IceLatte.ogg
750272 system/system/bin/ld.mc
747248 vendor/lib/modules/fmradio_drv_mt6631_6635.ko
743456 system/system/bin/logd
743456 boot/ramdisk/system/bin/logd
740804 vendor/lib/libasn1c_mdmi.so
739032 system/system/lib64/libparameter.so
734628 vendor/firmware/WIFI_RAM_CODE_soc2_2_1_1.bin
727024 vendor/lib64/android.hardware.audio@6.0.so
727024 system/system/lib64/android.hardware.audio@6.0.so
726324 system/system/lib/android.hardware.radio@1.2.so
722872 vendor/firmware/WIFI_RAM_CODE_soc2_2_1a_1.bin
722132 vendor/firmware/MiHouse_RTP.bin
722132 vendor/firmware/41_MiHouse_RTP.bin
722022 product/priv-app/GooglePartnerSetup/GooglePartnerSetup.apk
719281 system/system/app/XiaomiServiceFrameworkGlobal/XiaomiServiceFrameworkGlobal.apk
717344 vendor/lib64/android.hardware.wifi.supplicant@1.2.so
712392 vendor/etc/voicecommand/training/ubmfile/keyword08/hhaa/p2.5/KerasModel
712392 vendor/etc/voicecommand/training/ubmfile/keyword08/dddd/p2.5/KerasModel
711401 system/system/media/audio/ui/miui_week_ringtone.ogg
711240 vendor/etc/voicecommand/training/ubmfile/keyword02/hhaa/p2.5/KerasModel
711240 vendor/etc/voicecommand/training/ubmfile/keyword02/dddd/p2.5/KerasModel
710984 vendor/lib64/libaaa_ltm.so
710608 vendor/lib64/libmtkcam_pipelinepolicy.so
710264 vendor/bin/rcs_volte_stack
709328 vendor/lib64/libpkm.so
708968 system/system/fonts/NotoSansSymbols-Regular-Subsetted.ttf
707712 vendor/lib64/android.hardware.wifi@1.5.so
700825 system/system/media/theme/.data/preview/default/en_US_statusbar_1.jpg
700528 vendor/lib64/android.hardware.audio@7.0.so
700528 system/system/lib64/android.hardware.audio@7.0.so
700392 system/system/lib64/libc++.so
700392 boot/ramdisk/system/lib64/libc++.so
698808 system/system/lib64/libhidlbase.so
698696 vendor/lib64/libminiui.so
697664 system/system/media/wallpaper/wallpaper_group/01_MoltenGlass/MoltenGlass02_dark.jpg
697664 system/system/media/theme/default/wallpaper_default_dark.jpg
696019 boot/ramdisk/res/images/installing_tip2.png
694688 boot/ramdisk/system/lib64/libhidlbase.so
693616 vendor/lib64/egl/libMEOW_gift.so
692386 product/priv-app/HotwordEnrollmentOKGoogleRISCV/HotwordEnrollmentOKGoogleRISCV.apk
691385 system/system/system_ext/priv-app/GoogleFeedback/GoogleFeedback.apk
689072 system/system/framework/arm64/boot-telephony-common.oat
688712 vendor/lib64/libmfllcore.so
687812 vendor/firmware/soc2_2_ram_bt_1a_1_hdr.bin
687436 vendor/firmware/soc2_2_ram_bt_1_1_hdr.bin
685992 vendor/lib64/com.fingerprints.extension@1.0.so
685992 system/system/system_ext/lib64/com.fingerprints.extension@1.0.so
683568 system/system/bin/perfetto
681942 system/system/media/wallpaper/wallpaper_group/01_MoltenGlass/MoltenGlass05_dark.jpg
681516 system/system/lib/android.hardware.radio@1.3.so
681224 vendor/lib64/libstereoinfoaccessor_vsdof.so
680705 system/system/media/audio/ringtones/Fairyland.ogg
679672 system/system/lib64/libcodec2_vndk.so
679640 vendor/lib64/libcodec2_vndk.so
677303 system/system/media/audio/ringtones/SpaceAge.ogg
675272 vendor/lib64/libcamdrv_twin.so
672332 system/system/lib/android.hardware.gnss@1.0.so
671308 system/system/system_ext/lib/liboemnetdimpl.so
669632 system/system/lib64/libinputreader.so
668632 vendor/lib/libminiui.so
667944 system/system/lib64/libsfplugin_ccodec.so
666004 system/system/lib/libaudioprocessing.so
664170 system/system/etc/precust_theme/theme/.data/preview/theme/ebfce684-1d1e-4a70-ae14-f7ca038f4d34/preview_launcher_0.jpg
664032 system/system/bin/apexd
663946 system/system/etc/precust_theme/theme/.data/preview/theme/ebfce684-1d1e-4a70-ae14-f7ca038f4d34/en_US_fonts_3.jpg
662584 vendor/lib64/android.hardware.wifi.supplicant@1.3.so
662508 system/system/etc/precust_theme/theme/.data/preview/theme/ebfce684-1d1e-4a70-ae14-f7ca038f4d34/en_US_launcher_0.jpg
657313 system/system/media/theme/default/gadgets/weather_4x4.mtz
654400 system/system/lib64/android.hardware.audio@5.0.so
653396 vendor/lib/android.hardware.radio@1.1.so
653396 system/system/lib/android.hardware.radio@1.1.so
650160 system/system/media/audio/ringtones/Candy.ogg
649920 system/system/lib64/android.hardware.audio@4.0.so
648352 system/system/lib64/libmedia.so
646240 vendor/lib/libstagefright_soft_aacdec.so
644047 system/system/media/theme/.data/preview/default/en_US_statusbar_2.jpg
642677 system/system/etc/precust_theme/theme/.data/preview/theme/ebfce684-1d1e-4a70-ae14-f7ca038f4d34/en_US_launcher_1.jpg
642444 system/system/system_ext/lib/interfaces.factoryInterface@1.0-adapter-helper.so
639257 system/system/framework/mediatek-framework.jar
637264 vendor/lib64/android.hardware.gnss@2.0.so
637264 system/system/lib64/android.hardware.gnss@2.0.so
637248 system/system/etc/precust_theme/theme/.data/preview/theme/ebfce684-1d1e-4a70-ae14-f7ca038f4d34/preview_icons_0.jpg
634914 product/priv-app/HotwordEnrollmentXGoogleRISCV/HotwordEnrollmentXGoogleRISCV.apk
634776 system/system/lib64/libadbconnection_server.so
634776 boot/ramdisk/system/lib64/libadbconnection_server.so
634169 system/system/etc/precust_theme/theme/.data/preview/theme/ebfce684-1d1e-4a70-ae14-f7ca038f4d34/preview_launcher_1.jpg
633024 vendor/lib/soundfx/libaudiopreprocessing.so
629912 system/system/lib/libandroid_servers.so
624784 system/system/lib64/libmedia_jni.so
622992 vendor/lib64/libvow_ap_test_dd.so
618776 system/system/lib64/libfs_mgr_binder.so
616103 system/system/framework/android.test.mock.jar
614128 system/system/lib64/libaudiopolicyenginedefault.so
614016 vendor/etc/voicecommand/training/ubmfile/keyword08/hhaa/p2.5/ubmModel4.bin
614016 vendor/etc/voicecommand/training/ubmfile/keyword08/hhaa/p2.5/ubmModel10.bin
614016 vendor/etc/voicecommand/training/ubmfile/keyword08/dddd/p2.5/ubmModel4.bin
614016 vendor/etc/voicecommand/training/ubmfile/keyword08/dddd/p2.5/ubmModel10.bin
611240 system/system/lib64/libft2.so
610232 system/system/lib64/libaudiopolicyengineconfigurable.so
610208 system/system/lib64/libbinder.so
605629 system/system/etc/preloaded-classes
593928 vendor/lib64/libvow_ap_test_aa.so
592436 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/hhhh/p2.5/ubmModel4.bin
592436 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/hhhh/p2.5/ubmModel4.bin
592436 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/hhhh/p2.5/ubmModel4.bin
592436 vendor/etc/voicecommand/training/ubmfile/keyword03/es-ES/hhhh/p2.5/ubmModel4.bin
592436 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/hhhh/p2.5/ubmModel4.bin
592436 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/hhhh/p2.5/ubmModel4.bin
592436 vendor/etc/voicecommand/training/ubmfile/keyword03/en-GB/hhhh/p2.5/ubmModel4.bin
592436 vendor/etc/voicecommand/training/ubmfile/keyword03/de-DE/hhhh/p2.5/ubmModel4.bin
590688 system/system/lib64/libvintf.so
590444 vendor/etc/voicecommand/training/ubmfile/keyword02/hhaa/p2.5/ubmModel4.bin
590444 vendor/etc/voicecommand/training/ubmfile/keyword02/hhaa/p2.5/ubmModel10.bin
590444 vendor/etc/voicecommand/training/ubmfile/keyword02/dddd/p2.5/ubmModel4.bin
590444 vendor/etc/voicecommand/training/ubmfile/keyword02/dddd/p2.5/ubmModel10.bin
589584 vendor/lib64/libmtkcam_metastore.so
587428 system/system/lib/libft2.so
587000 system/system/media/audio/ringtones/Atlantis.ogg
586848 system/system/lib64/libsonivox.so
586460 vendor/lib/libspeech_enh_lib.so
585917 system/system/app/MiCloudSync/MiCloudSync.apk
585664 system/system/framework/arm/boot-telephony-common.oat
584933 system/system/media/audio/ringtones/Glee.ogg
584160 vendor/lib64/libspeech_enh_lib.so
581440 vendor/lib64/libvow_ap_test_nn.so
577722 vendor/firmware/AcousticGuitar_RTP.bin
577722 vendor/firmware/521_AcousticGuitar_RTP.bin
576436 system/system/system_ext/lib/interfaces.factoryInterface@1.0.so
567180 system/system/lib/libmiuiblursdk.so
565536 system/system/lib/libdng_sdk.so
565280 vendor/lib64/android.hardware.wifi@1.4.so
565016 system/system/lib64/libunwindstack.so
563188 tmp/all_filenames.txt
563041 system/system/media/theme/.data/preview/default/en_US_statusbar_0.jpg
559416 system/system/lib/libaudioflinger.so
556700 system/system/lib/libsonivox.so
556661 system/system/framework/ims-common.jar
556359 vendor/firmware/POCO_RTP.bin
556359 vendor/firmware/99_POCO_RTP.bin
555656 vendor/lib/libvpud_vcodec.so
555008 vendor/lib64/libmtkcam_pipeline.so
549478 system/system/media/audio/ringtones/MiHouse.ogg
546944 product/usr/srec/en-US/offensive_word_normalizer.mfar
546744 vendor/lib64/libcam.hal3a.v3.ae.so
546648 system/system/lib64/libandroidfw.so
544874 system/system/framework/am.jar
544565 system/system/media/audio/alarms/Sunrise.ogg
544033 system/system/framework/protobuf.jar
543924 vendor/etc/voicecommand/training/ubmfile/keyword03/it-IT/hhhh/p2.5/ubmModel3.bin
543924 vendor/etc/voicecommand/training/ubmfile/keyword03/hi-IN/hhhh/p2.5/ubmModel3.bin
543924 vendor/etc/voicecommand/training/ubmfile/keyword03/fr-FR/hhhh/p2.5/ubmModel3.bin
543924 vendor/etc/voicecommand/training/ubmfile/keyword03/es-ES/hhhh/p2.5/ubmModel3.bin
543924 vendor/etc/voicecommand/training/ubmfile/keyword03/en-US/hhhh/p2.5/ubmModel3.bin
543924 vendor/etc/voicecommand/training/ubmfile/keyword03/en-IN/hhhh/p2.5/ubmModel3.bin