-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathall_files.txt
More file actions
6398 lines (6398 loc) · 323 KB
/
Copy pathall_files.txt
File metadata and controls
6398 lines (6398 loc) · 323 KB
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
204134042 product/priv-app/Velvet/Velvet.apk
131191674 system/system/apex/com.android.vndk.current.apex
109301832 system/system/priv-app/OneDrive_Samsung_v3/OneDrive_Samsung_v3.apk
100790593 system/system/apex/com.android.art.release.apex
91788196 product/priv-app/GmsCore/GmsCore.apk
83995764 product/app/Maps/Maps.apk
81952994 system/system/priv-app/SecSettings/SecSettings.apk
81299303 system/system/app/HoneyBoard/HoneyBoard.apk
79843640 system/system/priv-app/YourPhone_P1_5/YourPhone_P1_5.apk
78428686 product/app/WebViewGoogle/WebViewGoogle.apk
77341746 system/system/priv-app/AREmoji/AREmoji.apk
77311044 system/system/priv-app/SamsungCoreServices/SamsungCoreServices.apk
72420021 product/app/YouTube/YouTube.apk
71106560 recovery.img
64672068 system/system/priv-app/Bixby/Bixby.apk
62588493 product/app/TrichromeLibrary/TrichromeLibrary.apk
61865984 boot.img
61300325 system/system/framework/framework-res.apk
60008900 product/app/Gmail2/Gmail2.apk
56979570 system/system/priv-app/DualOutFocusViewer_R/DualOutFocusViewer_R.apk
55469192 system/system/framework/oat/arm64/services.odex
52897662 system/system/priv-app/SamsungMessages_12/SamsungMessages_12.apk
50795175 system/system/app/VisionIntelligence3.7/VisionIntelligence3.7.apk
49999288 system/system/system_ext/priv-app/SystemUI/SystemUI.apk
44624005 system/system/priv-app/wallpaper-res/wallpaper-res.apk
44012190 system/system/priv-app/SamsungCamera/SamsungCamera.apk
42003252 system/system/apex/com.android.i18n.apex
41957416 system/system/app/BixbyWakeup/BixbyWakeup.apk
41358713 system/system/priv-app/SamsungPass/SamsungPass.apk
40199955 system/system/framework/framework.jar
39512720 system/system/app/HoneyBoard/oat/arm64/HoneyBoard.odex
39143784 vendor/lib64/egl/libGLES_mali.so
38929541 system/system/priv-app/Upday/Upday.apk
38409176 system/system/priv-app/GalaxyApps_OPEN/GalaxyApps_OPEN.apk
38158886 system/system/priv-app/SamsungCloudClient/SamsungCloudClient.apk
37498490 product/priv-app/Phonesky/Phonesky.apk
35506757 bootRE/boot.elf
35461177 system/system/app/LiveTranscribe/LiveTranscribe.apk
35391783 system/system/app/Cameralyzer/Cameralyzer.apk
35285508 system/system/priv-app/StickerFaceARAvatar/StickerFaceARAvatar.apk
34919872 system/system/priv-app/Routines/Routines.apk
34913466 system/system/priv-app/PhotoEditor_Mid/PhotoEditor_Mid.apk
34770831 product/app/GoogleTTS/GoogleTTS.apk
33187992 system/system/priv-app/GameHome/GameHome.apk
31629352 vendor/lib64/libsnap_compute.so
31547456 bootimg/00_kernel
30876311 system/system/priv-app/Crane/Crane.apk
30763020 recovery/kernel
30763020 boot/kernel
30744076 system/system/priv-app/SamsungExperienceService/SamsungExperienceService.apk
30435192 system/system/priv-app/TelephonyUI/TelephonyUI.apk
30318528 bootimg/01_dtbdump_samsung,armv8.dtb
29873969 system/system/app/ClockPackage/ClockPackage.apk
29852680 system/system/app/SamsungCalendar/SamsungCalendar.apk
29795440 system/system/priv-app/SamsungInCallUI/oat/arm64/SamsungInCallUI.odex
29666898 system/system/priv-app/SingleTakeService/SingleTakeService.apk
29629325 system/system/app/ARZone/ARZone.apk
29483085 system/system/app/ARDrawing/ARDrawing.apk
29377312 system/system/priv-app/SecSettings/oat/arm64/SecSettings.odex
28884848 system/system/lib64/libFacialAttributeDetection.arcsoft.so
28826654 vendor/etc/singletake/aifilter/filter.polarr.db
28781472 system/system/lib/libFacialAttributeDetection.arcsoft.so
28235112 vendor/lib/egl/libGLES_mali.so
28049588 system/system/priv-app/BixbyVisionFramework3.5/BixbyVisionFramework3.5.apk
27578300 system/system/priv-app/SamsungContacts/SamsungContacts.apk
27309530 system/system/framework/services.jar
27306598 system/system/priv-app/SamsungAccount/SamsungAccount.apk
27228311 system/system/priv-app/SamsungGallery2018/SamsungGallery2018.apk
27004962 system/system/app/Weather_SEP12.0/Weather_SEP12.0.apk
26705987 system/system/priv-app/BixbyService/BixbyService.apk
25920030 vendor/saiv/image_understanding/db/slens_classifier/slens_classifier_cnn.raw
25829063 system/system/priv-app/SamsungInCallUI/SamsungInCallUI.apk
24842201 system/system/priv-app/SamsungBilling/SamsungBilling.apk
24776440 system/system/fonts/NotoSerifCJK-Regular.ttc
24451923 system/system/priv-app/AODService_v60/AODService_v60.apk
24434860 system/system/priv-app/TalkbackSE/TalkbackSE.apk
24270607 vendor/saiv/image_understanding/db/aic_classifier/aic_classifier_cnn.raw
24200385 system/system/apex/com.android.runtime.apex
24047521 product/priv-app/DevicePersonalizationServices/DevicePersonalizationServices.apk
23698256 system/system/priv-app/Accessibility/Accessibility.apk
23502686 product/app/Chrome/Chrome.apk
23398159 system/system/priv-app/SamsungDialer/SamsungDialer.apk
22468116 system/system/priv-app/AutoDoodle/AutoDoodle.apk
22087716 system/system/apex/com.android.wifi.apex
21932309 system/system/app/MinusOnePage/MinusOnePage.apk
21039626 system/system/app/FlipboardBriefing/FlipboardBriefing.apk
21008541 system/system/priv-app/DynamicLockscreen/DynamicLockscreen.apk
20869660 vendor/etc/singletake/bestmoment/scoreV2.polarr.db
20666244 system/system/app/HoneyMigrator/HoneyMigrator.apk
20332200 system/system/fonts/NotoSansCJK-Regular.ttc
20261646 system/system/app/SmartReminder/SmartReminder.apk
19737944 system/system/lib64/libface_landmark.arcsoft.so
19712104 system/system/priv-app/SecMyFiles2020/SecMyFiles2020.apk
19671240 system/system/lib/libface_landmark.arcsoft.so
19640392 system/system/saiv/best_composition_db/SmartCrop.polarr.db
19580685 system/system/priv-app/TouchWizHome_2017/TouchWizHome_2017.apk
19132710 system/system/apex/com.google.android.media.swcodec.apex
19040048 system/system/app/StickerCenter/StickerCenter.apk
19025008 system/system/lib64/libLLVM_android.so
17572696 vendor/saiv/image_understanding/db/aig_classifier/aig_classifier_cnn.tf
17419943 system/system/priv-app/SecureFolder/SecureFolder.apk
17133088 system/system/priv-app/SecureFolder/oat/arm64/SecureFolder.odex
17041640 system/system/lib64/libFacialStickerEngine.arcsoft.so
16924860 system/system/app/SmartCapture/SmartCapture.apk
16854536 system/system/lib/libFacialStickerEngine.arcsoft.so
16826156 system/system/fonts/SamsungColorEmoji.ttf
16593384 system/system/fonts/SECCJK-Regular.ttc
16210808 system/system/priv-app/Fmm/Fmm.apk
16117625 system/system/priv-app/IGNITE/IGNITE.apk
16109133 system/system/priv-app/ContainerAgent3/ContainerAgent3.apk
16097547 vendor/saiv/image_understanding/db/srr_interaction/srr_interaction_cnn.tf
15783508 system/system/app/IceCone/IceCone.apk
15697956 system/system/priv-app/RubinVersion28/RubinVersion28.apk
15485802 system/system/priv-app/MateAgent/MateAgent.apk
15246972 system/system/app/VideoEditorLite_Dream_N/VideoEditorLite_Dream_N.apk
15095748 system/system/app/BGMProvider/BGMProvider.apk
14621668 system/system/saiv/best_composition_db/ObjDet.polarr.db
14150163 system/system/priv-app/ThemeStore/ThemeStore.apk
14103655 system/system/app/SamsungTTS/SamsungTTS.apk
14044784 system/system/lib64/libbeautyshot.arcsoft.so
14042328 vendor/lib64/libbeautyshot.arcsoft.so
13919640 system/system/lib/libbeautyshot.arcsoft.so
13918856 vendor/lib/libbeautyshot.arcsoft.so
13657019 system/system/recovery-from-boot.p
13592868 system/system/priv-app/Telecom/Telecom.apk
13585469 vendor/saiv/image_understanding/db/slens_detector/slens_detector_cnn.raw
13540856 recovery/ramdisk.packed
13361014 system/system/priv-app/GameTools_Dream/GameTools_Dream.apk
13295254 system/system/priv-app/Fast/Fast.apk
13130080 system/system/framework/arm64/boot-framework.oat
13121896 system/system/lib/libMultiFrameProcessing10.camera.samsung.so
13102904 system/system/lib64/libMultiFrameProcessing10.camera.samsung.so
13022368 product/usr/srec/en-US/pumpkin.mmap
12267580 system/system/priv-app/PeopleStripe/PeopleStripe.apk
12159419 system/system/priv-app/SecAppSeparation/SecAppSeparation.apk
12122815 system/system/app/HiyaService/HiyaService.apk
11433009 system/system/priv-app/ManagedProvisioning/ManagedProvisioning.apk
11315015 system/system/priv-app/SmartManager_v5/SmartManager_v5.apk
11299778 product/priv-app/GmsCore/m/independent/AndroidPlatformServices.apk
11153140 system/system/app/LinkSharing_v11/LinkSharing_v11.apk
11062366 system/system/priv-app/SVoiceIME/SVoiceIME.apk
10970840 vendor/lib64/libOpenCv.camera.samsung.so
10970840 system/system/lib64/libOpenCv.camera.samsung.so
10962504 system/system/priv-app/Fast/oat/arm64/Fast.odex
10933066 system/system/priv-app/AURA/AURA.apk
10904609 system/system/app/DictDiotekForSec/DictDiotekForSec.apk
10883518 system/system/app/StoryEditor_Dream_N/StoryEditor_Dream_N.apk
10882580 system/system/framework/arm/boot-framework.oat
10820886 system/system/priv-app/Quickboard/Quickboard.apk
10808357 system/system/priv-app/SamsungVideoPlayer/SamsungVideoPlayer.apk
10777932 system/system/priv-app/Finder/Finder.apk
10497200 system/system/lib64/libSmartScan.camera.samsung.so
10485807 system/system/priv-app/GameOptimizingService/GameOptimizingService.apk
10485385 system/system/priv-app/BiometricSetting/BiometricSetting.apk
10477749 product/priv-app/Turbo/Turbo.apk
10401568 system/system/lib64/libveengine.arcsoft.so
10353651 system/system/priv-app/DigitalWellbeing/DigitalWellbeing.apk
10224940 system/system/lib/libveengine.arcsoft.so
10101933 system/system/app/MdecService/MdecService.apk
10080410 system/system/priv-app/EasySetup/EasySetup.apk
10062018 system/system/app/WifiGuider/WifiGuider.apk
10061496 system/system/fonts/NotoColorEmoji.ttf
10059235 system/system/app/FactoryCameraFB/FactoryCameraFB.apk
10044059 system/system/priv-app/imsservice/imsservice.apk
10013824 system/system/app/DAAgent/DAAgent.apk
9758696 system/system/lib64/libhwui.so
9637532 vendor/etc/snap_gpu_kernel_64.bin
9625542 system/system/priv-app/AuthFramework/AuthFramework.apk
9342989 system/system/priv-app/OMCAgent5/OMCAgent5.apk
9315897 system/system/app/RcsSettings/RcsSettings.apk
9169646 system/system/priv-app/Hearingdro_R/Hearingdro_R.apk
8990135 system/system/app/SmartMirroring/SmartMirroring.apk
8905194 system/system/apex/com.google.android.permission.apex
8780507 system/system/priv-app/CocktailBarService_v3.2/CocktailBarService_v3.2.apk
8778408 system/system/priv-app/Telecom/oat/arm64/Telecom.odex
8751261 vendor/tee/00000000-0000-0000-0000-5345435f4652
8630495 system/system/app/MdxKitService/MdxKitService.apk
8601795 system/system/app/Traceur/Traceur.apk
8584084 system/system/system_ext/priv-app/EmergencyInfo/EmergencyInfo.apk
8561685 system/system/priv-app/FotaAgent/FotaAgent.apk
8501136 system/system/lib64/libsec-ims.so
8388608 dtbo.img
8341053 system/system/tts/lang_SMT/smt_ru_RU_f00.am
8265372 system/system/app/MotionPhotoViewer/MotionPhotoViewer.apk
8226716 system/system/app/SoundPicker_R/SoundPicker_R.apk
8218164 system/system/priv-app/IpsGeofence/IpsGeofence.apk
8089902 system/system/apex/com.google.android.adbd.apex
8088849 system/system/system_ext/priv-app/StorageManager/StorageManager.apk
8033900 dtbo/04_dtbdump_samsung,_A51_EUR_OPEN_REV02.dtb
8017464 system/system/lib/libhwui.so
8005848 vendor/lib/libOpenCv.camera.samsung.so
8005848 system/system/lib/libOpenCv.camera.samsung.so
7974272 vendor/lib64/libdualcam_refocus_image.so
7835435 system/system/priv-app/Tips/Tips.apk
7745536 system/system/framework/arm64/boot-framework.art
7632600 system/system/priv-app/ShareLive/ShareLive.apk
7519334 system/system/priv-app/LiveStickers/LiveStickers.apk
7495680 system/system/framework/arm/boot-framework.art
7335029 system/system/priv-app/DeviceTest/DeviceTest.apk
7321948 vendor/lib/libdualcam_refocus_image.so
7274370 system/system/app/AllShareAware/AllShareAware.apk
7229192 system/system/cameradata/SRIB_HumanInsSeg_FP16_V007.snf
7199665 system/system/priv-app/SmartManager_v6_DeviceSecurity/SmartManager_v6_DeviceSecurity.apk
7186485 system/system/app/EmergencyModeService/EmergencyModeService.apk
7151088 system/system/priv-app/TeleService/oat/arm64/TeleService.odex
7096139 system/system/tts/lang_SMT/smt_en_GB_f00.am
7073196 system/system/apex/com.google.android.cellbroadcast.apex
6895048 system/system/lib64/libbluetooth.so
6857467 system/system/tts/lang_SMT/smt_en_US_f00.am
6814680 system/system/lib/libSmartScan.camera.samsung.so
6791939 system/system/priv-app/TeleService/TeleService.apk
6785551 system/system/app/AllshareFileShare/AllshareFileShare.apk
6764132 system/system/cameradata/myfilter/MyFilterModel.tflite
6717263 system/system/tts/lang_SMT/smt_es_MX_f00.am
6617338 system/system/tts/lang_SMT/smt_it_IT_f00.am
6579606 system/system/priv-app/AppsEdgePanel_v3.2/AppsEdgePanel_v3.2.apk
6529065 system/system/app/UnifiedWFC/UnifiedWFC.apk
6508096 system/system/app/UniversalMDMClient/UniversalMDMClient.apk
6495793 system/system/system_ext/priv-app/SetupWizard/SetupWizard.apk
6469109 system/system/system_ext/priv-app/GoogleServicesFramework/GoogleServicesFramework.apk
6448646 system/system/priv-app/SamsungContactsProvider/SamsungContactsProvider.apk
6424322 system/system/priv-app/NetworkDiagnostic/NetworkDiagnostic.apk
6388406 system/system/priv-app/ImsLogger/ImsLogger.apk
6368586 system/system/priv-app/SecSetupWizard_Global/SecSetupWizard_Global.apk
6258270 system/system/tts/lang_SMT/smt_ru_RU.lng
6155393 system/system/priv-app/SmartCallProvider/SmartCallProvider.apk
6154514 system/system/app/ClipboardEdge/ClipboardEdge.apk
5954300 system/system/priv-app/UltraDataSaving_O/UltraDataSaving_O.apk
5934080 system/system/saiv/face/ed/model_3_parts_front_38pt.dat
5887832 system/system/lib64/libPortraitDistortionCorrection.arcsoft.so
5850965 product/priv-app/ConfigUpdater/ConfigUpdater.apk
5831667 system/system/app/AllshareMediaShare/AllshareMediaShare.apk
5825645 system/system/tts/lang_SMT/smt_fr_FR.lng
5811668 system/system/priv-app/HybridRadio/HybridRadio.apk
5805584 system/system/app/MDMApp/MDMApp.apk
5721758 system/system/priv-app/IPService/IPService.apk
5710634 system/system/priv-app/DeviceKeystring/DeviceKeystring.apk
5684396 product/priv-app/GoogleRestore/GoogleRestore.apk
5682792 vendor/bin/hw/gpsd
5648277 system/system/saiv/smartcropping_2.0/db/smartcrop_saliency_train
5644624 system/system/apex/com.google.android.neuralnetworks.apex
5643358 system/system/tts/lang_SMT/smt_es_ES_f00.am
5629293 vendor/tee/00000000-0000-0000-0000-46494e474552
5618601 vendor/saiv/image_understanding/db/aic_detector/aic_detector_cnn.raw
5384044 system/system/priv-app/DressRoom/DressRoom.apk
5308032 system/system/priv-app/SamsungPositioning/SamsungPositioning.apk
5290911 system/system/app/CocktailQuickTool/CocktailQuickTool.apk
5261569 system/system/priv-app/SamsungSocial/SamsungSocial.apk
5248840 system/system/app/Bluetooth/Bluetooth.apk
5203280 system/system/lib/libPortraitDistortionCorrection.arcsoft.so
5174232 system/system/priv-app/DocumentsUIGoogle/DocumentsUIGoogle.apk
5092254 system/system/hidden/INTERNAL_SDCARD/Samsung/Music/Over_the_Horizon.mp3
5009797 system/system/apex/com.google.android.conscrypt.apex
4999858 system/system/priv-app/HwModuleTest/HwModuleTest.apk
4987544 system/system/lib64/libpdfium.so
4917055 system/system/tts/lang_SMT/smt_es_MX.lng
4888132 system/system/app/SetupWizardLegalProvider/SetupWizardLegalProvider.apk
4874718 system/system/framework/telephony-common.jar
4864136 system/system/bin/init
4864056 recovery/ramdisk/system/bin/init
4850376 system/system/lib64/libhigh_dynamic_range.arcsoft.so
4837445 system/system/priv-app/KnoxGuard/KnoxGuard.apk
4817004 system/system/lib/libhigh_dynamic_range.arcsoft.so
4805056 product/usr/srec/en-US/lstm_model.uint8.data
4747609 system/system/apex/com.google.android.media.apex
4724028 system/system/lib/libpdfium.so
4712964 system/system/priv-app/SecCarrierProvider/SecCarrierProvider.apk
4693068 system/system/priv-app/CMHProvider/CMHProvider.apk
4602740 system/system/priv-app/SoundAlive_80/SoundAlive_80.apk
4585003 system/system/priv-app/TADownloader/TADownloader.apk
4577828 product/usr/srec/en-US/rescoring.fst.compact
4540532 system/system/lib/libsmart_cropping.camera.samsung.so
4511568 system/system/priv-app/GpuWatchApp/GpuWatchApp.apk
4458002 system/system/app/EasterEgg/EasterEgg.apk
4444512 vendor/firmware/fimc_is_lib.bin
4387546 system/system/app/EmergencyLauncher/EmergencyLauncher.apk
4378144 system/system/priv-app/SCameraSDKService/lib/arm64/libpalmMobileDetectorFull.so
4374934 system/system/priv-app/SPPPushClient/SPPPushClient.apk
4346487 system/system/priv-app/SCameraSDKService/SCameraSDKService.apk
4311656 system/system/framework/oat/arm64/semwifi-service.odex
4280175 system/system/app/NfcNci/NfcNci.apk
4278213 system/system/priv-app/CallBGProvider/CallBGProvider.apk
4264425 system/system/apex/com.google.android.extservices.apex
4256696 system/system/tts/lang_SMT/smt_en_US.lng
4234336 system/system/lib64/libsmart_cropping.camera.samsung.so
4188562 system/system/priv-app/SamsungSmartSuggestions/SamsungSmartSuggestions.apk
4104679 system/system/apex/com.google.android.mediaprovider.apex
4077212 vendor/etc/singletake/aifilter/scene.polarr.db
4045796 system/system/saiv/face/fr/MobileFace.bin
4021281 system/system/tts/lang_SMT/smt_pt_BR_f00.am
3989591 system/system/app/FBAppManager_NS/FBAppManager_NS.apk
3988496 vendor/saiv/image_understanding/db/aig_detector/aig_detector_cnn.tflite
3970193 system/system/tts/lang_SMT/smt_en_GB.lng
3954054 system/system/app/ESEServiceAgent/ESEServiceAgent.apk
3903459 system/system/priv-app/SecSettingsIntelligence/SecSettingsIntelligence.apk
3887080 vendor/lib64/libsnaplite_native.so
3886183 system/system/tts/lang_SMT/smt_de_DE.lng
3854845 system/system/app/SmartSwitchAgent/SmartSwitchAgent.apk
3848397 system/system/app/VideoTrimmer/VideoTrimmer.apk
3833797 system/system/tts/lang_SMT/smt_de_DE_f00.am
3736453 system/system/priv-app/MultiSoundSetting/MultiSoundSetting.apk
3668624 vendor/lib64/libsec-ril.so
3668240 vendor/lib64/libsec-ril-dsds.so
3667317 system/system/app/SecurityLogAgent/SecurityLogAgent.apk
3667120 product/usr/srec/en-US/dnn
3655448 vendor/lib64/libhigh_dynamic_range_bokeh.so
3645040 product/usr/srec/en-US/CLG.prewalk.fst
3623801 system/system/priv-app/SendHelpMessage/SendHelpMessage.apk
3622176 vendor/lib/libhigh_dynamic_range_bokeh.so
3616728 system/system/lib64/libSDKRecognitionText.spensdk.samsung.so
3529616 system/system/etc/textclassifier/actions_suggestions.en.model
3511292 system/system/saiv/textrecognition/mocr/ocr_db/ocr_engine_chn_mixed.dat
3430916 system/system/priv-app/LinkToWindowsService/LinkToWindowsService.apk
3415448 system/system/lib64/libRectify.camera.samsung.so
3404399 system/system/tts/lang_SMT/smt_fr_FR_f00.am
3397569 system/system/app/SamsungPassAutofill_v1/SamsungPassAutofill_v1.apk
3365560 system/system/lib64/libMyFilter.camera.samsung.so
3331229 system/system/priv-app/SecSoundPicker/SecSoundPicker.apk
3326536 product/usr/srec/en-US/g2p_fst
3303868 system/system/priv-app/HdmApk/HdmApk.apk
3287464 vendor/etc/saiv/fd/fast_face_detect_model_full_angle_16_CHAR.dat
3242665 product/priv-app/AndroidAutoStub/AndroidAutoStub.apk
3226689 system/system/priv-app/TaskEdgePanel_v3.2/TaskEdgePanel_v3.2.apk
3204655 system/system/priv-app/GooglePackageInstaller/GooglePackageInstaller.apk
3199449 vendor/etc/recovery-resource.dat
3163120 system/system/priv-app/NSDSWebApp/oat/arm64/NSDSWebApp.odex
3148484 vendor/firmware/setfile_imx616.bin
3143908 system/system/tts/lang_SMT/smt_pt_BR.lng
3061574 system/system/priv-app/knoxanalyticsagent/knoxanalyticsagent.apk
3021275 system/system/tts/lang_SMT/smt_it_IT.lng
2978480 vendor/lib64/libvideobeauty.arcsoft.so
2952168 vendor/lib64/libsnap_vndk.so
2951752 vendor/bin/hw/wpa_supplicant
2941168 vendor/lib/libvideobeauty.arcsoft.so
2849928 system/system/lib64/libimagecodec.quram.so
2786278 system/system/priv-app/SetupIndiaServicesTnC/SetupIndiaServicesTnC.apk
2775776 vendor/lib64/libHMT.so
2771656 vendor/lib/libHMT.so
2771464 system/system/saiv/textrecognition/mocr/ocr_db/ocr_engine_chn_trad.dat
2762676 product/app/GoogleCalendarSyncAdapter/GoogleCalendarSyncAdapter.apk
2760104 system/system/priv-app/LiveWallpapersPicker/LiveWallpapersPicker.apk
2741428 vendor/bin/slsi_wlan_udi_log_decode
2702348 vendor/firmware/setfile_imx582.bin
2677308 system/system/saiv/textrecognition/mocr/ocr_db/ocr_engine_chn_simp.dat
2659712 vendor/lib64/libcodec2_soft_eac3dec.so
2653136 system/system/app/MAPSAgent/MAPSAgent.apk
2617936 system/system/bin/iorap.cmd.compiler
2608356 system/system/lib/libSDKRecognitionText.spensdk.samsung.so
2607891 system/system/priv-app/Attribution/Attribution.apk
2584448 vendor/lib64/libcodec2_soft_ac4dec.so
2580836 system/system/apex/com.google.android.resolv.apex
2557604 system/system/lib/libimagecodec.quram.so
2523136 system/system/framework/oat/arm64/services.art
2497544 vendor/lib/libsec-ril.so
2496452 vendor/lib/libsec-ril-dsds.so
2493640 system/system/lib64/liblow_light_hdr.arcsoft.so
2472810 system/system/framework/knoxsdk.jar
2464972 vendor/lib/libcodec2_soft_eac3dec.so
2464856 vendor/lib64/libexynoscamera3.so
2451406 system/system/app/FactoryAirCommandManager/FactoryAirCommandManager.apk
2448068 vendor/lib/libcodec2_soft_ac4dec.so
2432888 system/system/lib64/libaplayer.so
2422664 vendor/lib/libstagefright_soft_ddpdec.so
2419744 vendor/lib64/libarcsoft_super_night_raw.so
2412592 system/system/lib64/libtensorflowLite.myfilter.camera.samsung.so
2399480 system/system/lib64/libsurfaceflinger.so
2385140 system/system/lib/libVDLowLight.visidon.so
2359296 vendor/firmware/CC_DRAM_CODE_FLASH.bin
2343236 system/system/saiv/textrecognition/mocr/ocr_db/ocr_engine_jpn.dat
2323558 system/system/priv-app/NSDSWebApp/NSDSWebApp.apk
2295816 vendor/lib/libstagefright_soft_ac4dec.so
2274128 system/system/lib64/libImageTagger.camera.samsung.so
2251728 system/system/lib64/libprotobuf-cpp-full.so
2251688 vendor/lib64/libprotobuf-cpp-full-3.9.1.so
2236650 system/system/priv-app/LogWriter/LogWriter.apk
2222432 system/system/priv-app/AppLock/AppLock.apk
2222120 system/system/lib64/libImageScreener.camera.samsung.so
2221068 system/system/app/Stk/Stk.apk
2220354 system/system/framework/ext.jar
2209544 system/system/lib/libMyFilter.camera.samsung.so
2209496 system/system/lib64/libVDLowLight.visidon.so
2186420 system/system/lib/liblow_light_hdr.arcsoft.so
2183578 system/system/app/Stk2/Stk2.apk
2177584 vendor/firmware/calliope_dram.bin
2172892 system/system/priv-app/SamsungMagnifier3/SamsungMagnifier3.apk
2167232 vendor/firmware/fimc_is_rta.bin
2158744 system/system/lib/libImageTagger.camera.samsung.so
2144172 vendor/lib/libarcsoft_super_night_raw.so
2141108 system/system/saiv/textrecognition/std/detection_kor.dat
2130662 product/priv-app/CarrierWifi/CarrierWifi.apk
2123076 system/system/saiv/textrecognition/std/detection_eng_kor.dat
2115186 system/system/priv-app/BlueLightFilter/BlueLightFilter.apk
2114872 vendor/lib/libwvhidl.so
2095160 system/system/lib64/libevs_float.so
2085158 system/system/priv-app/KnoxCore/KnoxCore.apk
2081168 system/system/lib64/libsthmbc.so
2072789 system/system/framework/semwifi-service.jar
2064649 vendor/etc/singletake/bestmoment/facedetV3.polarr.db
2054364 system/system/lib/libRectify.camera.samsung.so
2035712 vendor/saiv/image_understanding/db/document_verifier/document_verifier_cnn_light.caffemodel
2020608 system/system/lib64/libclang_rt.asan-aarch64-android.so
2012024 vendor/lib64/soundfx/libswdap.so
2010880 vendor/lib/mediadrm/libwvdrmengine.so
2003768 system/system/lib64/libswdap_legacy.so
1994684 system/system/saiv/textrecognition/std/detection_eng.dat
1981720 system/system/lib64/libstagefright.so
1968968 system/system/lib64/libSceneDetector_v1.camera.samsung.so
1918904 vendor/lib/libsnap_vndk.so
1904435 vendor/etc/singletake/bestmoment/facedetV2.polarr.db
1895237 system/system/priv-app/CMFAFramework/CMFAFramework.apk
1885144 system/system/lib/libclang_rt.asan-arm-android.so
1876680 system/system/lib64/libtflite_v113_jni.so
1874408 system/system/priv-app/SCameraSDKService/lib/arm64/libnode-jni.so
1845028 vendor/lib/libexynoscamera3.so
1839812 vendor/lib/libvpx.so
1839672 system/system/lib/libsthmbc.so
1839486 system/system/apex/com.google.android.os.statsd.apex
1838996 system/system/lib/libvpx.so
1835952 vendor/etc/wifi/mx140.bin
1827196 vendor/lib/soundfx/libswdap.so
1824856 system/system/lib/libSceneDetector_v1.camera.samsung.so
1822224 system/system/lib/libswdap_legacy.so
1810433 system/system/priv-app/SecMediaProvider/SecMediaProvider.apk
1788840 system/system/lib64/libtensorflowLite.camera.samsung.so
1788491 system/system/priv-app/DiagMonAgent/DiagMonAgent.apk
1782624 system/system/lib64/libandroid_runtime.so
1770037 system/system/priv-app/TaPackAuthFw/TaPackAuthFw.apk
1764573 system/system/priv-app/SecTelephonyProvider/SecTelephonyProvider.apk
1739720 boot/ramdisk/init
1727720 system/system/lib64/libQREngine_common.camera.samsung.so
1725857 system/system/priv-app/FaceService/FaceService.apk
1718136 system/system/priv-app/NSFusedLocation_v5.3/NSFusedLocation_v5.3.apk
1716150 system/system/app/SLocation/SLocation.apk
1702136 system/system/lib/libsurfaceflinger.so
1641460 system/system/priv-app/SDMConfig/SDMConfig.apk
1637201 system/system/priv-app/StoryService/StoryService.apk
1636448 system/system/lib/libtensorflowLite.myfilter.camera.samsung.so
1634130 system/system/priv-app/DeviceQualityAgent/DeviceQualityAgent.apk
1627064 system/system/lib64/libvpx.so
1625863 system/system/media/audio/ringtones/Flight.ogg
1624028 vendor/lib/libprotobuf-cpp-full-3.9.1.so
1623988 system/system/lib/libprotobuf-cpp-full.so
1618192 system/system/app/SecHTMLViewer/SecHTMLViewer.apk
1600926 system/system/priv-app/SamsungMultiConnectivity/SamsungMultiConnectivity.apk
1583420 system/system/lib/libcameraservice.so
1581552 system/system/lib64/libsavsvc.so
1581536 vendor/lib64/libsavsvc.so
1578734 system/system/etc/selinux/plat_sepolicy.cil
1570440 system/system/lib64/libImageSequenceStabilizer.camera.samsung.so
1564520 system/system/lib64/libmOCR.camera.samsung.so
1556816 vendor/lib/libsavsvc.so
1556776 system/system/lib/libsavsvc.so
1524078 system/system/priv-app/MediaProviderLegacy/MediaProviderLegacy.apk
1522000 system/system/lib64/libsqlite.so
1500220 vendor/firmware/setfile_hi1336.bin
1494152 recovery/ramdisk/system/bin/adbd
1481322 product/app/GoogleContactsSyncAdapter/GoogleContactsSyncAdapter.apk
1452928 system/system/bin/bootstrap/linker64
1452928 recovery/ramdisk/system/bin/linker64
1452262 system/system/app/SimMobilityKit/SimMobilityKit.apk
1451968 system/system/lib64/libFeature.polarr.so
1447100 system/system/priv-app/ClipboardSaveService/ClipboardSaveService.apk
1446914 vendor/etc/selinux/vendor_sepolicy.cil
1437272 system/system/lib64/libvesframework.videoeditor.samsung.so
1431772 system/system/fonts/SECCJK-Regular-Extra.ttf
1411200 vendor/etc/saiv/ld/regress_matrix_short_35pt.dat
1393917 system/system/priv-app/MtpService/MtpService.apk
1382240 system/system/lib64/extractors/libsecmpeg2extractor.so
1376757 system/system/app/SamsungOne/SamsungOne.apk
1364301 system/system/app/NfwLocationPrivacy/NfwLocationPrivacy.apk
1338896 system/system/lib64/libvesgraphicframework.videoeditor.samsung.so
1336593 system/system/app/Foundation/Foundation.apk
1331390 product/usr/srec/en-US/lexicon.U.fst
1325636 system/system/app/PhotoTable/PhotoTable.apk
1319984 system/system/priv-app/ThemeCenter/ThemeCenter.apk
1312776 system/system/priv-app/SamsungDeviceHealthManagerService/SamsungDeviceHealthManagerService.apk
1306504 system/system/lib64/android.hardware.wifi.supplicant@1.0.so
1301192 system/system/lib64/android.hardware.radio@1.0.so
1290496 vendor/lib/lib_SoundAlive_play_plus_ver400.so
1290496 system/system/lib/lib_SoundAlive_play_plus_ver400.so
1283504 system/system/bin/vold
1280296 system/system/lib64/bootstrap/libc.so
1280296 recovery/ramdisk/system/lib64/libc.so
1280106 system/system/priv-app/CameraLightSensor/CameraLightSensor.apk
1274944 system/system/lib64/libaudioflinger.so
1271320 system/system/lib64/libxml2.so
1266446 system/system/priv-app/SettingsBixby/SettingsBixby.apk
1265110 system/system/priv-app/FBServices/FBServices.apk
1261488 system/system/lib/libandroid_runtime.so
1243440 system/system/lib/libQREngine_common.camera.samsung.so
1242224 system/system/lib64/libchrome.so
1238104 system/system/fonts/SamsungKorean-Light.ttf
1235644 system/system/fonts/SamsungKorean-Bold.ttf
1235344 system/system/lib64/android.hardware.audio.effect@2.0.so
1227248 system/system/lib64/android.hardware.audio.effect@4.0.so
1227088 system/system/lib64/android.hardware.audio.effect@6.0.so
1227080 system/system/lib64/android.hardware.audio.effect@5.0.so
1226824 system/system/lib64/libsmat.so
1222584 system/system/lib64/libTracking.polarr.so
1218664 system/system/lib64/libHpr_RecFace_dl_v1.0.camera.samsung.so
1218276 system/system/fonts/SamsungKorean-Regular.ttf
1206271 system/system/app/SafetyInformation/SafetyInformation.apk
1201528 system/system/bin/iorapd
1186376 system/system/media/audio/ringtones/Sparkle.ogg
1180304 system/system/etc/apns-conf.xml
1178440 system/system/lib64/libSamsungPkcs11Wrapper.secsmartcard.samsung.so
1169376 system/system/bin/simpleperf
1163764 system/system/lib/libsmat.so
1161649 system/system/priv-app/KnoxPushManager/KnoxPushManager.apk
1157715 system/system/etc/epdg_apns_conf.xml
1156640 system/system/lib64/libblas.so
1156477 system/system/media/audio/ringtones/Glassy_Bell.ogg
1155192 system/system/lib64/libbcinfo.so
1154460 system/system/priv-app/CIDManager/CIDManager.apk
1144608 recovery/ramdisk/system/lib64/libcrypto.so
1139528 system/system/lib64/libaudiopolicymanagerdefault.so
1136552 system/system/lib64/libcrypto.so
1135932 system/system/media/audio/ringtones/Over_the_Horizon.ogg
1134953 system/system/media/audio/ringtones/Interstellar.ogg
1128820 system/system/lib/libaplayer.so
1124700 system/system/lib64/libclcore_g.bc
1109512 system/system/lib/libstagefright.so
1103665 system/system/priv-app/SVCAgent/SVCAgent.apk
1093128 system/system/lib64/libsmsd.so
1091800 system/system/priv-app/SCameraSDKService/lib/arm64/libQREngine.camera.samsung.so
1089992 system/system/lib/libsmsd.so
1086752 system/system/lib/bootstrap/libc.so
1084856 system/system/lib/libsqlite.so
1077160 system/system/lib64/libclcore_debug_g.bc
1072136 system/system/lib64/libperfetto.so
1069468 system/system/bin/bootstrap/linker
1067372 system/system/lib/libclcore_g.bc
1064792 system/system/app/PrintSpooler/PrintSpooler.apk
1063112 system/system/lib64/libgui.so
1060856 system/system/lib64/libsrib_humanaware_engine.camera.samsung.so
1059438 system/system/app/sveservice/sveservice.apk
1058456 vendor/lib64/libLocalTM_capture_core.camera.samsung.so
1054392 system/system/bin/netd
1049067 system/system/apex/com.google.android.tethering.apex
1048272 system/system/lib64/service.incremental.so
1046126 system/system/priv-app/KLMSAgent/KLMSAgent.apk
1042680 vendor/bin/hw/hostapd
1039860 system/system/lib/libmOCR.camera.samsung.so
1037500 recovery/ramdisk/sepolicy
1035472 system/system/lib64/libnfc_nci_jni.so
1034824 system/system/lib64/android.hardware.wifi@1.0.so
1021200 system/system/lib64/libclang_rt.ubsan_standalone-aarch64-android.so
1020208 system/system/bin/linkerconfig
1019856 system/system/lib/libtensorflowLite.camera.samsung.so
1017664 vendor/lib64/libcodec2_sec_aacdec.so
1017236 product/usr/srec/en-US/g2p.data
1016598 vendor/nfd/nfd_v3_fd.raw
1015376 system/system/priv-app/EpdgService/EpdgService.apk
1013824 system/system/lib64/libEventFinder.camera.samsung.so
1012696 vendor/lib64/lib_SoundAlive_play_plus_ver400.so
1012696 system/system/lib64/lib_SoundAlive_play_plus_ver400.so
1001232 system/system/lib64/libdmcSmartDP.so
1000852 system/system/lib/libFeature.polarr.so
1000704 system/system/lib64/libandroid_servers.so
996540 system/system/media/audio/ringtones/Haze.ogg
985728 vendor/bin/snap_utility_64
985680 system/system/lib/libsrib_humanaware_engine.camera.samsung.so
980780 vendor/lib/libLocalTM_capture_core.camera.samsung.so
971400 system/system/bin/mdnsd
968960 system/system/lib64/libnfc-nci.so
968152 system/system/lib/libImageScreener.camera.samsung.so
966067 system/system/apex/com.google.android.tzdata2.apex
960542 odm/etc/selinux/precompiled_sepolicy
951936 system/system/lib64/libsomxaacd.so
948501 recovery/ramdisk/res/images/wipe_data_sdcard_warning_text.png
942280 system/system/lib64/android.hardware.gnss@1.0.so
941408 system/system/lib/libclcore_debug_g.bc
939220 system/system/lib/android.hardware.wifi.supplicant@1.0.so
931896 system/system/lib64/libEventDetector.camera.samsung.so
927722 system/system/saiv/face/mvfd/fast_face_detect_model_full_angle_16_CHAR_frontal_use_model_17.dat
924920 system/system/lib/libmediaplayerservice.so
919888 system/system/priv-app/SCameraSDKService/lib/arm64/libc++_shared.so
917232 system/system/media/audio/ringtones/Flying_Balloon.ogg
913656 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_dutch.dat
913528 system/system/bin/tcpdump
907368 system/system/lib/libsavsac.so
907360 vendor/lib/libsavsac.so
906476 system/system/lib/libdmcSmartDP.so
906376 vendor/lib64/libsavsac.so
906360 system/system/lib64/libsavsac.so
902168 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_german.dat
902004 system/system/lib/libchrome.so
896972 system/system/saiv/textrecognition/mocr/ocr_db/ocr_engine_kor_hangul.dat
893712 system/system/lib64/libstrongswan.so
891812 system/system/lib/android.hardware.audio.effect@2.0.so
890344 vendor/lib64/libwebrtc_audio_preprocessing.so
888952 system/system/lib/android.hardware.audio.effect@6.0.so
888944 system/system/lib/android.hardware.audio.effect@4.0.so
888616 system/system/lib/android.hardware.audio.effect@5.0.so
884164 system/system/lib/libxml2.so
880616 vendor/etc/selinux/plat_pub_versioned.cil
880216 product/usr/srec/en-US/wordlist.syms
879856 vendor/etc/wifi/mx140/debug/common/log-strings.bin
876683 system/system/priv-app/OmaCP/OmaCP.apk
873992 system/system/priv-app/NetworkStackGoogle/NetworkStackGoogle.apk
869624 vendor/lib/libdualcam_refocus_video.so
869068 system/system/lib/libbcinfo.so
865392 system/system/lib64/libSamsungAPVoiceEngine.so
864847 system/system/priv-app/SKMSAgent/SKMSAgent.apk
854720 system/system/lib/libblas.so
851723 system/system/media/audio/ringtones/Pick_It_Up.ogg
848224 system/system/lib64/libFrucSSMLib.so
846768 system/system/lib64/libaudioclient.so
846344 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_finnish.dat
845581 system/system/app/KidsHome_Installer/KidsHome_Installer.apk
839874 system/system/tts/lang_SMT/smt_es_ES.lng
835524 system/system/lib/libcrypto.so
834543 system/system/app/GearManagerStub/GearManagerStub.apk
828604 system/system/lib/libImageSequenceStabilizer.camera.samsung.so
827832 system/system/lib64/liberis_strongswan.so
824740 system/system/lib/libTracking.polarr.so
823936 vendor/lib64/libvdis_core.so
818938 system/system/framework/voip-common.jar
802044 system/system/cameradata/preloadfilters/Sel/com.samsung.android.provider.filterprovider.pale_jaehan.sel
801816 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_estonian.dat
800484 vendor/etc/wifi/mx140_t/debug/hardware/moredump/moredump.bin
800484 vendor/etc/wifi/mx140/debug/hardware/moredump/moredump.bin
800484 vendor/bin/moredump.bin
794146 system/system/framework/semcontextservice.jar
792264 system/system/bin/wlandutservice
790672 vendor/lib/libcodec2_sec_aacdec.so
790428 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_french.dat
787781 system/system/tts/lang_SMT/smt_it_IT_f00.dt
787428 vendor/lib/libwebrtc_audio_preprocessing.so
786432 system/system/lib64/libcharon.so
785896 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_lithuanian.dat
783892 system/system/lib/libHpr_RecFace_dl_v1.0.camera.samsung.so
782176 system/system/lib64/libdng_sdk.so
780660 system/system/priv-app/SecDownloadProvider/SecDownloadProvider.apk
780376 system/system/lib64/libsamsung_videoengine_9_0.so
779702 boot/ramdisk.packed
778520 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_chinese.dat
769909 system/system/media/audio/ringtones/Dreamscape.ogg
768503 system/system/priv-app/MobileWips/MobileWips.apk
766936 system/system/lib/libSamsungPkcs11Wrapper.secsmartcard.samsung.so
762800 vendor/lib/libvdis_core.so
756472 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_turkish.dat
754648 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_bulgarian.dat
754560 system/system/lib/libgui.so
754160 system/system/lib/libperfetto.so
751168 system/system/bin/ld.mc
749116 system/system/lib/libandroid_servers.so
746996 system/system/lib/service.incremental.so
745504 system/system/lib64/libharfbuzz_ng.so
744312 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_basque.dat
741980 system/system/lib/libsomxaacd.so
738352 system/system/lib/libharfbuzz_ng.so
736720 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_hungarian.dat
733628 system/system/lib/android.hardware.wifi@1.0.so
732016 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_swedish.dat
731952 system/system/tts/lang_SMT/smt_ru_RU_f00.dt
729664 system/system/lib64/libsec_skpm.so
728280 system/system/lib64/android.hardware.audio@6.0.so
728136 system/system/lib/libremotedisplay_wfd.so
720368 system/system/lib64/libmedia.so
715928 system/system/lib64/android.hardware.wifi.supplicant@1.2.so
714428 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_italian.dat
710816 system/system/lib64/libc++.so
710816 recovery/ramdisk/system/lib64/libc++.so
709480 system/system/etc/NOTICE.xml.gz
709316 system/system/cameradata/SRIB_HumanSegLite_INT8_V004.snf
709192 system/system/fonts/NotoSansSymbols-Regular-Subsetted.ttf
704918 system/system/framework/org.apache.http.legacy.jar
702556 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_czech.dat
699118 system/system/saiv/face/mvfd/fast_face_detect_model_full_Front_16_CHAR_tdown1.dat
699118 system/system/saiv/face/mvfd/fast_face_detect_model_full_Front_16_CHAR_right1.dat
699118 system/system/saiv/face/mvfd/fast_face_detect_model_full_Front_16_CHAR_left1.dat
698880 system/system/saiv/face/ed/model_1_pose_front_13pt.dat
697760 system/system/etc/textclassifier/textclassifier.fr.model
697584 system/system/etc/textclassifier/textclassifier.it.model
697568 system/system/etc/textclassifier/textclassifier.es.model
697564 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_spanish.dat
695656 system/system/lib64/liberis_charon.so
695016 recovery/ramdisk/system/lib64/libhidlbase.so
694832 system/system/lib64/libhidlbase.so
694640 vendor/lib64/hw/android.hardware.gnss@2.1-impl.so
693824 system/system/etc/textclassifier/textclassifier.ru.model
693632 system/system/etc/textclassifier/textclassifier.nl.model
693552 system/system/etc/textclassifier/textclassifier.pt.model
693520 system/system/etc/textclassifier/textclassifier.tr.model
693520 system/system/etc/textclassifier/textclassifier.pl.model
690736 system/system/lib/libagifencoder.quram.so
687504 system/system/etc/textclassifier/textclassifier.ar.model
687251 system/system/priv-app/SamsungCalendarProvider/SamsungCalendarProvider.apk
687216 system/system/etc/textclassifier/textclassifier.ko.model
686552 system/system/lib64/libbinder.so
681200 vendor/firmware/mfc_fw.bin
680840 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_polish.dat
680804 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_korean.dat
679464 system/system/lib64/libmediarelayengine.so
674938 system/system/system_ext/priv-app/GoogleFeedback/GoogleFeedback.apk
673344 system/system/lib/android.hardware.gnss@1.0.so
671718 system/system/saiv/face/mvfd/fast_face_detect_model_full_Front_16_CHAR_frontal1.dat
671156 system/system/apex/com.google.android.ipsec.apex
669772 vendor/lib/libFrucSSMLib.so
669748 system/system/lib/libFrucSSMLib.so
669168 system/system/bin/logd
666592 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_russian.dat
666048 system/system/lib64/libsfplugin_ccodec.so
663616 vendor/lib64/libwsmd_functions.so
660960 vendor/lib64/libril.so
658896 system/system/lib64/libagifencoder.quram.so
657728 system/system/lib64/libDocRectifyWrapper.camera.samsung.so
657720 system/system/lib64/libSimpleDocRectify.camera.samsung.so
654992 system/system/lib64/android.hardware.audio@5.0.so
650568 system/system/lib64/android.hardware.audio@4.0.so
649593 system/system/tts/lang_SMT/smt_en_GB_f00.dt
649223 system/system/app/ANTPlusPlugins/ANTPlusPlugins.apk
648037 system/system/tts/lang_SMT/smt_es_MX_f00.dt
642664 system/system/lib64/android.hardware.gnss@2.0.so
642356 vendor/lib/libstagefright_soft_aacdec.so
639104 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_portuguese.dat
637944 system/system/cameradata/myfilter/GrainTemplateImage
636366 system/system/framework/imsmanager.jar
629696 system/system/bin/dumpstate
627168 system/system/etc/textclassifier/textclassifier.zh.model
624120 vendor/lib64/libcodec2_vndk.so
624096 system/system/bin/perfetto
624080 system/system/lib64/libcodec2_vndk.so
623527 system/system/tts/lang_SMT/smt_en_US_f00.dt
622852 vendor/firmware/CP_AUDIO_SLSI_SWA.bin
622852 vendor/firmware/CP_AUDIO_SLSI_SEA.bin
622680 system/system/framework/vsimmanager.jar
621024 system/system/etc/textclassifier/textclassifier.th.model
615872 system/system/lib/libEventFinder.camera.samsung.so
612232 system/system/bin/keystore
610304 system/system/framework/arm64/boot-telephony-common.art
608032 recovery/ramdisk/system/bin/recovery
606800 system/system/lib64/android.hardware.audio@2.0.so
606712 system/system/lib64/libft2.so
606040 system/system/bin/apexd
602333 vendor/bin/add.pb
601720 system/system/lib64/libfs_mgr_binder.so
600064 system/system/lib64/libaudiopolicyenginedefault.so
597960 system/system/priv-app/SettingsProvider/oat/arm64/SettingsProvider.odex
596028 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_slovak.dat
595344 system/system/lib64/libFacePreProcessing.camera.samsung.so
590892 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_indonesian.dat
589824 system/system/framework/arm/boot-telephony-common.art
588616 system/system/lib64/libaudioprocessing.so
588400 system/system/lib64/libstagefright_httplive_sec.so
586828 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_ukrainian.dat
586312 system/system/lib64/libAudioTranscoder.so
584316 system/system/lib/libft2.so
582212 system/system/lib/libQmageDecoder.so
579008 system/system/lib/libEventDetector.camera.samsung.so
577408 system/system/etc/textclassifier/textclassifier.en.model
576492 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_latvian.dat
573616 system/system/lib64/libvintf.so
573340 system/system/lib/libdng_sdk.so
571144 system/system/lib64/libmedia_jni.so
570592 system/system/lib64/libsensorservice.so
566192 system/system/lib64/libQmageDecoder.so
563040 vendor/lib64/libexynosdisplay.so
561680 vendor/lib64/libsavscmn.so
561680 system/system/lib64/libsavscmn.so
560976 system/system/bin/iorap.cmd.maintenance
557236 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_serbian_lat.dat
553896 vendor/etc/wifi/mx140_t/debug/hardware/moredump/peri_registers.xml
553896 vendor/etc/wifi/mx140/debug/hardware/moredump/peri_registers.xml
553609 product/priv-app/GooglePartnerSetup/GooglePartnerSetup.apk
551576 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_croatian.dat
551096 system/system/bin/ss_conn_daemon2
547880 system/system/etc/textclassifier/textclassifier.de.model
546944 product/usr/srec/en-US/offensive_word_normalizer.mfar
545076 system/system/lib/libaudioflinger.so
544404 vendor/lib/libsavscmn.so
544404 system/system/lib/libsavscmn.so
543774 system/system/framework/am.jar
541240 vendor/lib64/vendor.samsung.hardware.radio@2.0.so
539501 recovery/ramdisk/res/images/wipe_data_confirmation_text.png
538840 system/system/lib64/libpredeflicker_native.so
538544 system/system/etc/textclassifier/textclassifier.ja.model
534636 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_slovenian.dat
532448 system/system/etc/preloaded-classes
530106 system/system/priv-app/CSC/CSC.apk
528675 system/system/tts/lang_SMT/smt_pt_BR_f00.dt
528584 system/system/lib/libsec_skpm.so
528080 vendor/etc/saiv/gae/PmAgeModel.bin
527904 vendor/lib64/vendor.samsung.hardware.wifi.supplicant@3.0.so
524848 system/system/lib/android.hardware.wifi.supplicant@1.2.so
522620 system/system/lib/android.hardware.audio@6.0.so
521872 system/system/lib64/android.hardware.media.c2@1.0.so
520244 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_japanese.dat
520192 vendor/etc/wifi/mx140_t/debug/wlan/hydra_config.sdb
520192 vendor/etc/wifi/mx140/debug/wlan/hydra_config.sdb
520128 system/system/lib64/libsecimaging.camera.samsung.so
514739 system/system/app/CertInstaller/CertInstaller.apk
510688 system/system/lib64/libcamera_client.so
510218 system/system/usr/share/zoneinfo/tzdata
506648 system/system/lib64/libRSCpuRef.so
505436 system/system/fonts/NotoSansEgyptianHieroglyphs-Regular.ttf
505112 system/system/media/audio/ringtones/Finding_Galaxy.ogg
504504 system/system/lib64/libfs_mgr.so
504480 recovery/ramdisk/system/lib64/libfs_mgr.so
503016 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_serbian_cyr.dat
501248 system/system/saiv/face/ed/model_1_pose_right_11pt.dat
501248 system/system/saiv/face/ed/model_1_pose_left_11pt.dat
500380 system/system/fonts/NotoSansCuneiform-Regular.ttf
500212 product/usr/srec/en-US/portable_lstm
498512 system/system/lib/libhidlbase.so
495401 vendor/etc/wifi/mx140/debug/wlan/symbols.dbg
494016 system/system/lib/libc++.so
492312 system/system/lib64/android.hardware.gnss@2.1.so
489448 vendor/bin/toybox_vendor
489288 system/system/bin/toybox
489288 recovery/ramdisk/system/bin/toybox
487480 system/system/bin/iptables
487368 system/system/lib64/libprotobuf-cpp-lite.so
487368 recovery/ramdisk/system/lib64/libprotobuf-cpp-lite.so
487352 vendor/lib64/libprotobuf-cpp-lite-3.9.1.so
486872 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_macedonian.dat
486809 vendor/etc/wifi/mx140_t/debug/wlan/symbols.dbg
485762 system/system/media/audio/ui/Media_preview_Over_the_horizon.ogg
484431 vendor/etc/wifi/mx140_t/debug/wlan/mib_out.xml
484431 vendor/etc/wifi/mx140/debug/wlan/mib_out.xml
482848 system/system/lib64/netd_aidl_interface-V4-cpp.so
479768 system/system/lib64/android.hardware.wifi.supplicant@1.1.so
477852 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_chinese_S.dat
476020 recovery/dtbo.img
475244 system/system/lib/libaudioclient.so
474649 system/system/tts/lang_SMT/smt_es_ES_f00.dt
473040 system/system/lib64/libYuv.polarr.so
471116 system/system/lib/libbinder.so
468750 system/system/media/audio/ringtones/Starburst.ogg
468244 system/system/lib/android.hardware.audio@5.0.so
466712 system/system/lib/android.hardware.gnss@2.0.so
464768 system/system/lib/android.hardware.audio@4.0.so
464041 system/system/priv-app/BuiltInPrintService/BuiltInPrintService.apk
462073 system/system/app/EasyOneHand3/EasyOneHand3.apk
462021 product/usr/srec/en-US/config.pumpkin
461568 system/system/lib64/libomafldrm.so
461456 system/system/lib64/libunwindstack.so
459592 system/system/lib64/libcups.so
459046 vendor/etc/wifi/mx140_t.bin
457728 vendor/etc/wifi/hydra_config.sdb
457352 system/system/lib64/libandroidfw.so
455092 vendor/firmware/setfile_gc5035_macro.bin
453828 vendor/lib/libril.so
453767 system/system/app/DRParser/DRParser.apk
452808 recovery/ramdisk/system/lib64/libunwindstack.so
450552 system/system/lib64/libsmplayer_fullseg.so
449512 vendor/lib64/libbauthserver.so
446756 vendor/lib/libstagefright_soft_aacenc.so
446584 system/system/lib/libcodec2_vndk.so
446536 vendor/lib/libcodec2_vndk.so
446364 system/system/fonts/SECTibetan-Regular.ttf
443088 vendor/bin/hw/android.hardware.wifi@1.0-service
442368 system/system/framework/arm64/boot-knoxsdk.art
440785 system/system/priv-app/EnhancedAttestationAgent/EnhancedAttestationAgent.apk
439409 system/system/priv-app/MediaLearningPlatform/MediaLearningPlatform.apk
438096 vendor/bin/cbd
437944 vendor/lib64/vendor.samsung.hardware.radio@2.1.so
437556 vendor/lib/libstagefright_soft_hevcdec.so
436184 system/system/lib/android.hardware.audio@2.0.so
435992 system/system/bin/heapprofd
434864 product/usr/srec/en-US/embedded_normalizer.mfar
434631 system/system/apex/com.google.android.sdkext.apex
432176 system/system/lib64/extractors/libsecmp4extractor.so
431268 system/system/lib/libsensorservice.so
430080 system/system/framework/arm/boot-knoxsdk.art
429600 system/system/lib/libaudioprocessing.so
428302 system/system/framework/service-jobscheduler.jar
424644 system/system/lib/libsfplugin_ccodec.so
422554 system/system/tts/lang_SMT/smt_de_DE_f00.dt
422072 vendor/lib64/libFaceService.so
420253 system/system/app/CaptivePortalLoginGoogle/CaptivePortalLoginGoogle.apk
418828 system/system/lib/libmedia_jni.so
417262 system/system/priv-app/SmartEpdgTestApp/SmartEpdgTestApp.apk
415132 system/system/media/crypt_bootsamsungloop.qmg
413300 vendor/lib/libexynosdisplay.so
412424 recovery/ramdisk/system/lib64/librecovery_ui.so
411989 system/system/priv-app/Tag/Tag.apk
411730 product/usr/srec/en-US/c_fst
411459 system/system/tts/lang_SMT/smt_fr_FR_f00.dt
409679 system/system/app/SmartTethering/SmartTethering.apk
407880 system/system/bin/ip
406953 system/system/priv-app/serviceModeApp_FB/serviceModeApp_FB.apk
406144 vendor/lib64/libeis_core.so
405744 system/system/bin/installd
405289 system/system/app/AutomationTest_FB/AutomationTest_FB.apk
404972 system/system/lib/libvintf.so
403832 system/system/lib/libmedia.so
403648 system/system/bin/iorap.inode2filename
402692 system/system/fonts/SECTibetan-Bold.ttf
401764 system/system/fonts/NotoSansTibetan-Regular.ttf
401344 system/system/lib64/libhwcutil.so
400056 system/system/lib64/android.hardware.media.omx@1.0.so
399018 system/system/framework/rcsopenapi.jar
398936 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_maltese.dat
398332 system/system/lib/libRSCpuRef.so
397659 system/system/app/BBCAgent/BBCAgent.apk
395880 system/system/bin/wificond
395208 system/system/media/audio/ringtones/Shimmer.ogg
395120 vendor/lib64/libofi_wrapper.so
394297 system/system/priv-app/SettingsProvider/SettingsProvider.apk
394204 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_chinese_T.dat
391407 system/system/priv-app/Shell/Shell.apk
389936 system/system/etc/ipm/auf.tflite
389504 vendor/lib64/libhyper.so
388736 system/system/bin/traced_perf
387602 product/usr/srec/en-US/semantics.pumpkin
386800 system/system/lib64/libcurl2.so
385936 vendor/lib/vendor.samsung.hardware.radio@2.0.so
381316 system/system/media/shutdown.qmg
381296 system/system/lib64/libmediametricsservice.so
375872 system/system/lib64/libsonivox.so
373120 system/system/fonts/NotoSansTibetan-Bold.ttf
372928 system/system/lib/android.hardware.media.c2@1.0.so
372840 system/system/lib64/libmtp_samsung.so
372592 system/system/etc/textclassifier/lang_id.model
372520 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_norwegian.dat
371072 system/system/priv-app/FBInstaller_NS/FBInstaller_NS.apk
371048 vendor/lib64/hw/vendor.samsung.hardware.gnss@2.0-impl.so
370816 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_english.dat
370368 system/system/lib64/libMattingCore.camera.samsung.so
370220 system/system/lib/libsecimaging.camera.samsung.so
369872 vendor/lib64/libhypermotion_core.so
369064 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_danish.dat
368648 system/system/lib64/android.hardware.drm@1.2.so
366758 system/system/framework/uiautomator.jar
362792 system/system/lib64/android.hardware.drm@1.0.so
362704 system/system/bin/gsid
362323 system/system/app/EasymodeContactsWidget81/EasymodeContactsWidget81.apk
362232 vendor/lib64/libsnaace.so
362232 system/system/lib64/libsnaace.so
360056 system/system/lib/android.hardware.gnss@2.1.so
360056 system/system/cameradata/myfilter/myfilter_sample_04.bmp
360056 system/system/cameradata/myfilter/myfilter_sample_03.bmp
360056 system/system/cameradata/myfilter/myfilter_sample_02.bmp
360056 system/system/cameradata/myfilter/myfilter_sample_01.bmp
359992 system/system/lib64/extractors/libsecmidiextractor.so
358428 system/system/lib/libFacePreProcessing.camera.samsung.so
358016 system/system/lib64/libmaet.so
357936 system/system/lib64/libfmradio_jni.so
355736 vendor/lib/libprotobuf-cpp-lite-3.9.1.so
355736 system/system/lib/libprotobuf-cpp-lite.so
355601 system/system/app/FilterProvider/FilterProvider.apk
354104 system/system/lib64/libext2fs.so
354104 recovery/ramdisk/system/lib64/libext2fs.so
353076 system/system/lib64/libclcore_debug.bc
352864 system/system/lib/android.hardware.wifi.supplicant@1.1.so
352510 system/system/priv-app/ANTRadioService/ANTRadioService.apk
351308 vendor/lib/libsnaace.so
351308 system/system/lib/libsnaace.so
349676 system/system/lib/libDocRectifyWrapper.camera.samsung.so
349672 system/system/lib/libSimpleDocRectify.camera.samsung.so
349272 system/system/lib64/libinputflinger.so
349072 system/system/lib64/libEGL.so
348242 system/system/media/audio/ringtones/Bubble.ogg
347332 system/system/fonts/RobotoCondensed-LightItalic.ttf
347052 system/system/fonts/Roboto-LightItalic.ttf
347012 system/system/fonts/Roboto-BoldItalic.ttf
346728 system/system/lib64/libFFTEm.so
346112 vendor/etc/saiv/ld/regress_matrix_short_13pt.dat
345896 system/system/lib64/libBestComposition.polarr.so
345840 system/system/fonts/Roboto-MediumItalic.ttf
345808 vendor/tee/00000000-0000-0000-0000-505256544545
345788 system/system/fonts/Roboto-BlackItalic.ttf
345452 system/system/fonts/RobotoCondensed-BoldItalic.ttf
344820 system/system/fonts/RobotoCondensed-MediumItalic.ttf
344588 system/system/fonts/Roboto-ThinItalic.ttf
344024 system/system/fonts/RobotoCondensed-Italic.ttf
343276 system/system/fonts/Roboto-Italic.ttf
343272 system/system/lib64/libssl.so
343144 system/system/framework/oat/arm64/org.apache.http.legacy.odex
342897 vendor/tee/00000000-0000-0000-0000-4b45594d5354
342072 system/system/lib64/libkeymaster_portable.so
342064 vendor/lib64/libkeymaster_portable.so
341891 system/system/app/SimAppDialog/SimAppDialog.apk
341788 vendor/lib/libpredeflicker_native.so
341788 system/system/lib/libpredeflicker_native.so
339980 vendor/lib/libeis_core.so
338680 system/system/lib64/libinputreader.so
338356 system/system/lib/libunwindstack.so
338268 vendor/lib/libopus.so
336504 system/system/lib64/libbluetooth_jni.so
335028 system/system/lib/libandroidfw.so
334278 system/system/apex/com.android.apex.cts.shim.apex
334116 system/system/lib/libomafldrm.so
333936 system/system/lib64/libclcore_neon.bc
333023 system/system/priv-app/InputDevices/InputDevices.apk
332896 system/system/lib64/libpcap.so
332436 system/system/lib/libGpuWatch.so
331232 vendor/lib/libbauthserver.so
330480 system/system/lib64/libSDSensorWrapper.camera.samsung.so
330432 system/system/lib64/libclcore.bc
330220 system/system/lib/libsonivox.so
329704 system/system/lib64/libsecimaging_pdk.camera.samsung.so
329584 vendor/lib64/libsnap_compute_wrapper.so
325728 vendor/lib/libstagefright_soft_avcdec.so
324848 system/system/lib/libMattingCore.camera.samsung.so
324640 system/system/lib64/libpcre2.so
324640 recovery/ramdisk/system/lib64/libpcre2.so
324512 system/system/lib64/android.hardware.graphics.composer@2.4.so