-
Notifications
You must be signed in to change notification settings - Fork 63
/
safari.plist
5861 lines (5861 loc) · 275 KB
/
safari.plist
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
Found 4 keys in domain 'com.apple.Safari.SandboxBroker': {
DidMigrateDownloadFolderToSandbox = 1;
DidMigrateResourcesToSandbox = 1;
Homepage = {length = 272, bytes = 0x62706c69 73743030 d4010203 04050607 ... 00000000 000000d6 };
ShowDevelopMenu = 1;
}
Found 9 keys in domain 'com.apple.SafariBookmarksSyncAgent': {
CKPerBootTasks = (
CKAcccountInfoCacheReset,
CKAccountInfoCacheReset
);
CKStartupTime = 1695750155;
CloudBookmarksSupplementalClientIdentifier = "2530313E-2CE5-403C-A6FE-CCADD5F14279";
CloudKitAccountInfoCache = {
69667ab54770b2699f0042cc3520e4892b821fc29912f889fb25a50c0765ca0a = {length = 440, bytes = 0x62706c69 73743030 d4010203 04050607 ... 00000000 00000154 };
aaa3ae0b09eb0c73964aaa6864c8361d3c50007d222227182f6c8a371115a7bd = {length = 440, bytes = 0x62706c69 73743030 d4010203 04050607 ... 00000000 00000154 };
};
"LastDatabaseServerChangeToken.com.apple.SafariShared.CloudTabs" = {length = 267, bytes = 0x62706c69 73743030 d4010203 04050607 ... 00000000 000000d3 };
"LastDatabaseServerChangeToken.com.apple.SafariShared.Settings" = {length = 267, bytes = 0x62706c69 73743030 d4010203 04050607 ... 00000000 000000d3 };
MigrationStateEncodedRecordData = {length = 2590, bytes = 0x62706c69 73743030 d4010203 04050607 ... 00000000 0000083c };
NewestLaunchedSafariBookmarksSyncAgentVersion = "616.1.27.211.1";
TabGroupMigrationStateEncodedRecordData = {length = 2510, bytes = 0x62706c69 73743030 d4010203 04050607 ... 00000000 000007f4 };
}
Found 1 keys in domain 'com.apple.preferences.extensions.ShareMenu': {
displayOrder = (
"com.apple.share.System.add-to-safari-reading-list",
"com.apple.share.Mail.compose",
"com.apple.messages.ShareExtension",
"com.apple.share.AirDrop.send",
"com.apple.Notes.SharingExtension",
"com.apple.share.System.add-to-iphoto",
"com.apple.share.CopyLink.invite",
"com.apple.reminders.sharingextension",
"com.apple.share.CloudSharing.invite",
"com.sindresorhus.Shareful.Copy",
"com.sindresorhus.Gifski.ShareExtension",
"com.sindresorhus.Velja.Share",
"com.sindresorhus.Shareful.Save-As",
"com.sindresorhus.Shareful.Open-In",
"com.apple.iBooksX.SharingExtension",
"com.sindresorhus.Shareful.Save-to-Downloads"
);
}
Found 1 keys in domain 'com.apple.SocialLayer': {
SharedWithYouApps = {
"com.apple.MobileSMS" = 1;
"com.apple.Notes" = 1;
"com.apple.Photos" = 1;
"com.apple.Safari" = 1;
"com.apple.TV" = 1;
"com.apple.finder" = 1;
"com.apple.freeform" = 1;
"com.apple.iBooksX" = 1;
"com.apple.iWork.Keynote" = 1;
"com.apple.iWork.Numbers" = 1;
"com.apple.iWork.Pages" = 1;
"com.apple.podcasts" = 1;
"com.apple.reminders" = 1;
};
}
Found 1 keys in domain 'com.apple.Safari.PasswordBreachAgent': {
WBSPasswordBreachConfigurationBagLastUpdate = "2023-10-11 12:32:45 +0000";
}
Found 2 keys in domain 'com.apple.Safari.SafeBrowsing': {
HasMigratedSafeBrowsingEnabledDefaults = 1;
SafeBrowsingRemoteConfigurationLastUpdateDate = "2023-10-12 13:23:59 +0000";
}
Found 1 keys in domain 'com.apple.Safari.WebApp.BD606C49-626E-4D5D-B9B4-F8663AFF3347': {
WebAppInitialFrame = "{{0, 0}, {1312, 818}}";
}
Found 1 keys in domain 'com.apple.visualintelligence': {
enableSafariApp = 1;
}
Found 1 keys in domain 'com.apple.SafariServices': {
SearchProviderIdentifierMigratedToSystemPreference = 1;
}
Found 1 keys in domain 'com.apple.ncprefs': {
apps = (
{
auth = 263;
"bundle-id" = "com.apple.iCal";
"content_visibility" = 0;
flags = 1384652822;
grouping = 0;
path = "/System/Library/UserNotifications/Bundles/com.apple.iCal.bundle";
src = (
{
flags = 6;
req = {length = 48, bytes = 0xfade0c00 00000030 00000001 00000006 ... 65737364 00000003 };
uuid = "42284109-869C-4222-988E-18430989E149";
},
{
flags = 2;
path = "/System/Applications/Calendar.app";
req = {length = 44, bytes = 0xfade0c00 0000002c 00000001 00000006 ... 616c0000 00000003 };
uuid = "000761BF-7AF1-4104-9972-51ACA67024AA";
}
);
"universal-app-id" = "com.apple.Calendar";
},
{
"bundle-id" = "com.apple.FaceTime";
"content_visibility" = 0;
flags = 41951246;
grouping = 0;
path = "/System/Applications/FaceTime.app";
src = (
{
flags = 6;
req = {length = 56, bytes = 0xfade0c00 00000038 00000001 00000006 ... 74696573 00000003 };
uuid = "E4299403-4B95-43DD-A4BA-DA823B388F55";
}
);
},
{
auth = 1;
"bundle-id" = "com.apple.mail";
"content_visibility" = 0;
flags = 310378767;
grouping = 0;
path = "/System/Applications/Mail.app";
src = (
{
flags = 2;
path = "/System/Applications/Mail.app";
req = {length = 44, bytes = 0xfade0c00 0000002c 00000001 00000006 ... 696c0000 00000003 };
uuid = "7483695B-F899-4B4F-9109-8D2F7602E166";
}
);
"universal-app-id" = "com.apple.mail";
},
{
auth = 791;
"bundle-id" = "com.apple.MobileSMS";
"content_visibility" = 0;
flags = 9423028238;
grouping = 0;
path = "/System/Applications/Messages.app";
src = (
{
flags = 6;
req = {length = 48, bytes = 0xfade0c00 00000030 00000001 00000006 ... 74000000 00000003 };
uuid = "20DF338B-2FE3-4BCA-B922-EAA409F9EB2E";
},
{
flags = 6;
req = {length = 72, bytes = 0xfade0c00 00000048 00000001 00000006 ... 67656e74 00000003 };
uuid = "A03C96A7-99E8-4C8C-992C-0E2ADA38E501";
}
);
"universal-app-id" = "com.apple.MobileSMS";
},
{
auth = 271;
"bundle-id" = "com.apple.reminders";
"content_visibility" = 0;
flags = 10528227350;
grouping = 0;
path = "/System/Library/UserNotifications/Bundles/com.apple.reminders.bundle";
src = (
{
flags = 6;
req = {length = 48, bytes = 0xfade0c00 00000030 00000001 00000006 ... 64000000 00000003 };
uuid = "079C63CA-E515-4DB7-9213-45BFB55B0C25";
},
{
flags = 2;
path = "/System/Applications/Reminders.app";
req = {length = 48, bytes = 0xfade0c00 00000030 00000001 00000006 ... 65727300 00000003 };
uuid = "82D536E9-AB00-46F5-9E1B-BE52722F240D";
}
);
"universal-app-id" = "com.apple.Reminders";
},
{
auth = 327;
"bundle-id" = "com.apple.gamecenter";
"content_visibility" = 3;
flags = 5159526414;
grouping = 0;
path = "/System/Library/UserNotifications/Bundles/com.apple.gamecenter.bundle";
src = (
{
flags = 6;
req = {length = 44, bytes = 0xfade0c00 0000002c 00000001 00000006 ... 6d656400 00000003 };
uuid = "6F8AA891-6C41-4617-B613-0D4F607D2A87";
}
);
},
{
auth = 326;
"bundle-id" = "com.apple.ScreenTimeNotifications";
"content_visibility" = 0;
flags = 5159518220;
grouping = 0;
path = "/System/Library/UserNotifications/Bundles/com.apple.ScreenTimeNotifications.bundle";
src = (
{
flags = 6;
req = {length = 56, bytes = 0xfade0c00 00000038 00000001 00000006 ... 74000000 00000003 };
uuid = "39BC9FBD-7C29-47EF-8ACA-0B058673191B";
}
);
"universal-app-id" = "com.apple.ScreenTimeNotifications";
},
{
auth = 375;
"bundle-id" = "com.apple.Home";
"content_visibility" = 0;
flags = 864550926;
grouping = 0;
path = "/System/Library/UserNotifications/Bundles/com.apple.Home.bundle";
src = (
{
flags = 6;
req = {length = 44, bytes = 0xfade0c00 0000002c 00000001 00000006 ... 6d656400 00000003 };
uuid = "4EC09E90-70F5-4EF7-8462-A102CFC19BC9";
},
{
flags = 6;
req = {length = 52, bytes = 0xfade0c00 00000034 00000001 00000006 ... 64000000 00000003 };
uuid = "0AF8AB41-A7B5-4E97-A7FD-D180658BFF2B";
}
);
"universal-app-id" = "com.apple.Home";
},
{
auth = 7;
"bundle-id" = "com.apple.Photos";
"content_visibility" = 0;
flags = 310386702;
grouping = 0;
path = "/System/Applications/Photos.app";
src = (
{
flags = 6;
req = {length = 52, bytes = 0xfade0c00 00000034 00000001 00000006 ... 72796400 00000003 };
uuid = "7F862F6A-55A6-4150-A444-96FFF99CB1C2";
}
);
},
{
auth = 295;
"bundle-id" = "com.apple.Passbook";
"content_visibility" = 0;
flags = 864550926;
grouping = 0;
path = "/System/Library/UserNotifications/Bundles/com.apple.Passbook.bundle";
src = (
{
flags = 6;
req = {length = 44, bytes = 0xfade0c00 0000002c 00000001 00000006 ... 73736400 00000003 };
uuid = "16B32EC8-B3FF-47F7-A1B8-10BC63E2BBC6";
},
{
flags = 6;
req = {length = 48, bytes = 0xfade0c00 00000030 00000001 00000006 ... 65640000 00000003 };
uuid = "5BC1B983-D130-429B-856C-DC777E298157";
}
);
"universal-app-id" = "com.apple.Passbook";
},
{
"bundle-id" = "com.apple.iBooksX";
"content_visibility" = 0;
flags = 41951246;
grouping = 0;
path = "/System/Applications/Books.app";
src = (
{
flags = 2;
path = "/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/commerce";
req = {length = 48, bytes = 0xfade0c00 00000030 00000001 00000006 ... 63650000 00000003 };
uuid = "C9F19FD7-1C65-47EB-B9F4-4680936380BA";
}
);
},
{
auth = 4;
"bundle-id" = "com.apple.tips";
"content_visibility" = 0;
flags = 327680022;
grouping = 0;
path = "/System/Library/UserNotifications/Bundles/com.apple.tips.bundle";
src = (
{
flags = 6;
req = {length = 44, bytes = 0xfade0c00 0000002c 00000001 00000006 ... 70736400 00000003 };
uuid = "A0719E93-2C3A-4B64-9210-BEB615B9F669";
}
);
},
{
auth = 6;
"bundle-id" = "com.apple.Maps";
"content_visibility" = 0;
flags = 329777166;
grouping = 0;
path = "/System/Applications/Maps.app";
push = {
env = production;
token = {length = 32, bytes = 0x2f74c89b 43fe936c 21a6fc7b 124bd854 ... 889a97cd 2768f045 };
topic = "com.apple.Maps";
types = 9223372036854775815;
};
src = (
{
flags = 2;
path = "/System/Applications/Maps.app";
req = {length = 44, bytes = 0xfade0c00 0000002c 00000001 00000006 ... 70730000 00000003 };
uuid = "5D35BC9C-A381-4E4F-A6D2-A8CD4D5A65BE";
},
{
flags = 16;
uuid = "291700A9-C1FD-4F8D-9456-2DE0E23BA30D";
}
);
},
{
auth = 7;
"bundle-id" = "com.apple.AppSSOKerberos.notifications";
"content_visibility" = 3;
flags = 327163926;
grouping = 0;
path = "/System/Library/UserNotifications/Bundles/com.apple.AppSSOKerberos.notifications.bundle";
src = (
{
flags = 6;
req = {length = 52, bytes = 0xfade0c00 00000034 00000001 00000006 ... 74000000 00000003 };
uuid = "EF7B75A6-B4E8-4C2A-BBAB-AC9DEC00882A";
}
);
},
{
auth = 7;
"bundle-id" = "com.apple.Notes";
"content_visibility" = 0;
flags = 310386702;
grouping = 0;
path = "/System/Applications/Notes.app";
push = {
env = production;
token = {length = 32, bytes = 0x67e35ccb d3831970 31d23cf1 1139c917 ... b0f60744 3f286a9b };
topic = "com.apple.Notes";
types = 9223372036854775808;
};
src = (
{
flags = 16;
uuid = "9BC93C10-0BEF-45F8-B359-FF75D32E6014";
},
{
flags = 2;
path = "/System/Applications/Notes.app";
req = {length = 44, bytes = 0xfade0c00 0000002c 00000001 00000006 ... 74657300 00000003 };
uuid = "D320CD2D-8E52-4AB7-A32C-18744C98CFFE";
}
);
},
{
auth = 7;
"bundle-id" = "com.googlecode.iterm2";
"content_visibility" = 0;
flags = 41951246;
grouping = 0;
path = "/Applications/iTerm.app";
src = (
{
flags = 0;
path = "/Applications/iTerm.app";
req = {length = 196, bytes = 0xfade0c00 000000c4 00000001 00000006 ... 58595651 37440000 };
uuid = "272D1E78-E5A8-472C-BC3D-F30F872EC0C3";
}
);
},
{
auth = 7;
"bundle-id" = "ch.protonvpn.mac";
"content_visibility" = 0;
flags = 41951246;
grouping = 0;
path = "/Applications/ProtonVPN.app";
src = (
{
flags = 0;
path = "/Applications/ProtonVPN.app";
req = {length = 188, bytes = 0xfade0c00 000000bc 00000001 00000006 ... 51323537 454b0000 };
uuid = "EA2B8079-7F63-422F-B6AF-9CD86F0265FB";
}
);
},
{
auth = 7;
"bundle-id" = "com.protonmail.bridge";
"content_visibility" = 0;
flags = 41951246;
grouping = 0;
path = "/Applications/Proton Mail Bridge.app";
src = (
{
flags = 0;
path = "/Applications/ProtonMail Bridge.app";
req = {length = 164, bytes = 0xfade0c00 000000a4 00000001 00000006 ... 34483933 51540000 };
uuid = "1B85FDDA-6E4B-4997-A04E-B09A4CA3D30C";
}
);
},
{
auth = 0;
"bundle-id" = "com.sindresorhus.Lungo";
"content_visibility" = 0;
flags = 310386702;
grouping = 0;
path = "/Applications/Lungo.app";
src = (
{
flags = 0;
path = "/Applications/Lungo.app";
req = {length = 204, bytes = 0xfade0c00 000000cc 00000001 00000006 ... 2e4c756e 676f0000 };
uuid = "F4292919-3E44-498D-9C92-A715B29DCFB9";
}
);
},
{
auth = 7;
"bundle-id" = "org.mozilla.firefoxdeveloperedition";
"content_visibility" = 0;
flags = 41951503;
grouping = 0;
path = "/Applications/Firefox Developer Edition.app";
src = (
{
flags = 0;
path = "/Applications/Firefox Developer Edition.app";
req = {length = 168, bytes = 0xfade0c00 000000a8 00000001 00000007 ... 39333648 39360000 };
uuid = "F733B613-D900-4410-AEB2-C36F2AE86789";
}
);
},
{
auth = 5;
"bundle-id" = "com.apple.Music";
"content_visibility" = 0;
flags = 310386959;
grouping = 0;
path = "/System/Applications/Music.app";
src = (
{
flags = 2;
path = "/System/Applications/Music.app";
req = {length = 44, bytes = 0xfade0c00 0000002c 00000001 00000006 ... 73696300 00000003 };
uuid = "C7191946-2E90-4DF4-8AFA-94C68AD9AA80";
},
{
flags = 6;
req = {length = 52, bytes = 0xfade0c00 00000034 00000001 00000006 ... 656e7464 00000003 };
uuid = "BDDF1B85-CA0F-4688-8375-6A69BB715076";
}
);
},
{
auth = 263;
"bundle-id" = "com.apple.findmy";
"content_visibility" = 0;
flags = 866123790;
grouping = 0;
path = "/System/Applications/FindMy.app";
push = {
env = production;
token = {length = 0, bytes = 0x};
topic = "com.apple.findmy";
types = 9223372036854775815;
};
src = (
{
flags = 6;
req = {length = 68, bytes = 0xfade0c00 00000044 00000001 00000006 ... 74000000 00000003 };
uuid = "7FB452CF-FA88-4632-BDEB-8275763DE65E";
}
);
"universal-app-id" = "com.apple.findmy";
},
{
auth = 7;
"bundle-id" = "com.google.Chrome";
"content_visibility" = 0;
flags = 8396814;
grouping = 0;
path = "/Applications/Google Chrome.app";
src = (
{
flags = 0;
path = "/Applications/Google Chrome.app";
req = {length = 268, bytes = 0xfade0c00 0000010c 00000001 00000006 ... 5a384d38 41560000 };
uuid = "28ED280D-DFD4-4CAA-B66A-969124B1AB38";
}
);
},
{
auth = 7;
"bundle-id" = "com.google.Chrome.framework.AlertNotificationService";
"content_visibility" = 0;
flags = 8396822;
grouping = 0;
path = "/Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/117.0.5938.149/Helpers/Google Chrome Helper (Alerts).app";
src = (
{
flags = 0;
path = "/Applications/Google Chrome.app/Contents/Frameworks/Google Chrome Framework.framework/Versions/99.0.4844.83/Helpers/Google Chrome Helper (Alerts).app";
req = {length = 192, bytes = 0xfade0c00 000000c0 00000001 00000006 ... 5a384d38 41560000 };
uuid = "76EEA1A6-6EFF-4399-9D1B-30B38B887188";
}
);
},
{
auth = 0;
"bundle-id" = "com.apple.TV";
"content_visibility" = 0;
flags = 276832270;
grouping = 0;
path = "/System/Applications/TV.app";
src = (
{
flags = 6;
req = {length = 52, bytes = 0xfade0c00 00000034 00000001 00000006 ... 656e7464 00000003 };
uuid = "4FD863B0-F4C8-4DF1-9825-1C5555278795";
}
);
},
{
auth = 261;
"bundle-id" = "com.apple.AppStore";
"content_visibility" = 0;
flags = 9404162062;
grouping = 0;
path = "/System/Library/UserNotifications/Bundles/com.apple.AppStore.bundle";
src = (
{
flags = 2;
path = "/System/Applications/App Store.app";
req = {length = 48, bytes = 0xfade0c00 00000030 00000001 00000006 ... 72650000 00000003 };
uuid = "31E6F622-3646-42F0-B2C5-32001AC6A967";
},
{
flags = 6;
req = {length = 52, bytes = 0xfade0c00 00000034 00000001 00000006 ... 656e7464 00000003 };
uuid = "8CAA8F67-6FBE-417E-A9AB-DD8B07CDC3DD";
},
{
flags = 6;
req = {length = 52, bytes = 0xfade0c00 00000034 00000001 00000006 ... 656e7400 00000003 };
uuid = "07EFB871-793B-4EF5-8A42-92EDC98A9002";
}
);
},
{
auth = 6;
"bundle-id" = "com.apple.BTUserNotifications";
"content_visibility" = 3;
flags = 327688342;
grouping = 0;
path = "/System/Library/UserNotifications/Bundles/com.apple.BTUserNotifications.bundle";
src = (
{
flags = 6;
req = {length = 48, bytes = 0xfade0c00 00000030 00000001 00000006 ... 61697264 00000003 };
uuid = "0715355A-193D-4786-862A-280C67DEC93D";
}
);
},
{
auth = 0;
"bundle-id" = "com.apple.iWork.Pages";
"content_visibility" = 0;
flags = 310386702;
grouping = 0;
path = "/Applications/Pages.app";
push = {
env = production;
token = {length = 32, bytes = 0x276aaad6 2da8f074 78b71f27 8ee35181 ... f24c34b8 5f6b0806 };
topic = "com.apple.iWork.Pages";
types = 9223372036854775808;
};
src = (
{
flags = 0;
path = "/Applications/Pages.app";
req = {length = 204, bytes = 0xfade0c00 000000cc 00000001 00000006 ... 50616765 73000000 };
uuid = "7D2915EF-70DE-469F-91AE-CC8BD4983D75";
}
);
},
{
auth = 7;
"bundle-id" = "org.whispersystems.signal-desktop";
"content_visibility" = 0;
flags = 8396814;
grouping = 0;
path = "/Applications/Signal.app";
src = (
{
flags = 0;
path = "/Applications/Signal.app";
req = {length = 176, bytes = 0xfade0c00 000000b0 00000001 00000006 ... 53444e36 44520000 };
uuid = "978DC8BB-92EA-44C5-9871-E9D64245B35D";
}
);
},
{
auth = 0;
"bundle-id" = "com.apple.iWork.Keynote";
"content_visibility" = 0;
flags = 310386702;
grouping = 0;
path = "/Applications/Keynote.app";
push = {
env = production;
token = {length = 32, bytes = 0xea492948 c2ddfed7 9f889aae f6b7a8a0 ... f8b6f902 171d623e };
topic = "com.apple.iWork.Keynote";
types = 9223372036854775808;
};
src = (
{
flags = 0;
path = "/Applications/Keynote.app";
req = {length = 204, bytes = 0xfade0c00 000000cc 00000001 00000006 ... 4b65796e 6f746500 };
uuid = "C549B842-266A-47B3-A72B-46E7BF511C0F";
}
);
},
{
"bundle-id" = "com.apple.iMovieApp";
"content_visibility" = 0;
flags = 41951254;
grouping = 0;
path = "/Applications/iMovie.app";
src = (
{
flags = 0;
path = "/Applications/iMovie.app";
req = {length = 200, bytes = 0xfade0c00 000000c8 00000001 00000006 ... 6f766965 41707000 };
uuid = "C768FDE1-C048-46A4-9DF8-1960B62F59DA";
}
);
},
{
auth = 0;
"bundle-id" = "com.sindresorhus.Gifski";
"content_visibility" = 0;
flags = 310386702;
grouping = 0;
path = "/Applications/Gifski.app";
src = (
{
flags = 0;
path = "/Applications/Gifski.app";
req = {length = 204, bytes = 0xfade0c00 000000cc 00000001 00000006 ... 2e476966 736b6900 };
uuid = "79AACC7A-FB4B-456A-80BF-BE7414F9D2C2";
}
);
},
{
auth = 7;
"bundle-id" = "ch.sudo.cyberduck";
"content_visibility" = 0;
flags = 41951246;
grouping = 0;
path = "/Applications/Cyberduck.app";
src = (
{
flags = 0;
path = "/Applications/Cyberduck.app";
req = {length = 228, bytes = 0xfade0c00 000000e4 00000001 00000006 ... f310bf8c 3dafc22c };
uuid = "0C42A7E1-47AE-48BC-93C7-5E022EAB1E84";
}
);
},
{
auth = 7;
"bundle-id" = "com.microsoft.autoupdate.fba";
"content_visibility" = 0;
flags = 310386766;
grouping = 0;
path = "/Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app/Contents/MacOS/Microsoft Update Assistant.app";
src = (
{
flags = 0;
path = "/Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app/Contents/MacOS/Microsoft Update Assistant.app";
req = {length = 168, bytes = 0xfade0c00 000000a8 00000001 00000006 ... 54333436 47390000 };
uuid = "E0D846C5-09C7-4B5C-BFA2-C4D7DFF82C23";
}
);
},
{
auth = 7;
"bundle-id" = "org.chromium.Chromium.framework.AlertNotificationService";
"content_visibility" = 0;
flags = 8396814;
grouping = 0;
path = "/Users/yannbertrand/Library/Caches/ms-playwright/chromium-1064/chrome-mac/Chromium.app/Contents/Frameworks/Chromium Framework.framework/Versions/114.0.5735.35/Helpers/Chromium Helper (Alerts).app";
src = (
{
flags = 0;
path = "/Users/yannbertrand/Library/Caches/ms-playwright/chromium-1064/chrome-mac/Chromium.app/Contents/Frameworks/Chromium Framework.framework/Versions/114.0.5735.35/Helpers/Chromium Helper (Alerts).app";
req = {length = 40, bytes = 0xfade0c00 00000028 00000001 00000008 ... 94bb042e 77ff1ff4 };
uuid = "874BC700-695E-47FD-85EA-F6657180B9F0";
}
);
},
{
auth = 0;
"bundle-id" = "com.apple.iWork.Numbers";
"content_visibility" = 0;
flags = 310386702;
grouping = 0;
path = "/Applications/Numbers.app";
push = {
env = production;
token = {length = 0, bytes = 0x};
topic = "com.apple.iWork.Numbers";
types = 9223372036854775808;
};
src = (
{
flags = 0;
path = "/Applications/Numbers.app";
req = {length = 204, bytes = 0xfade0c00 000000cc 00000001 00000006 ... 4e756d62 65727300 };
uuid = "53E1C619-ABD3-449F-B72C-16583589B619";
}
);
},
{
"bundle-id" = "com.apple.ScriptEditor2";
"content_visibility" = 0;
flags = 41951246;
grouping = 0;
path = "/System/Applications/Utilities/Script Editor.app";
src = (
{
flags = 6;
req = {length = 48, bytes = 0xfade0c00 00000030 00000001 00000006 ... 69707400 00000003 };
uuid = "58C41FD5-00DD-4D41-A8A1-CEFE84A8A90E";
}
);
},
{
"bundle-id" = "_SYSTEM_CENTER_:com.apple.storeassetd";
"content_visibility" = 3;
flags = 41943703;
grouping = 0;
src = (
{
flags = 6;
req = {length = 52, bytes = 0xfade0c00 00000034 00000001 00000006 ... 64000000 00000003 };
uuid = "B0292672-7CB1-441D-A7C8-60AF1EE13C72";
}
);
},
{
auth = 7;
"bundle-id" = "com.apple.universalcontrol.notifications.displays-preferences";
"content_visibility" = 3;
flags = 327688335;
grouping = 0;
path = "/System/Library/UserNotifications/Bundles/com.apple.universalcontrol.notifications.displays-preferences.bundle";
src = (
{
flags = 6;
req = {length = 56, bytes = 0xfade0c00 00000038 00000001 00000006 ... 6f6c0000 00000003 };
uuid = "ED65D923-F7D6-4B7C-A709-D8CFAB5D2EFD";
}
);
},
{
auth = 4;
"bundle-id" = "_SYSTEM_CENTER_:com.apple.wifi.usernotifications.autohotspot";
"content_visibility" = 0;
flags = 327680662;
grouping = 0;
src = (
{
flags = 6;
req = {length = 52, bytes = 0xfade0c00 00000034 00000001 00000006 ... 67656e74 00000003 };
uuid = "A9F5B6AE-A021-440F-B3D5-105A9D37ED4E";
}
);
},
{
auth = 7;
"bundle-id" = "com.apple.controlcenter.notifications.focus";
"content_visibility" = 3;
flags = 327688335;
grouping = 0;
path = "/System/Library/UserNotifications/Bundles/com.apple.controlcenter.notifications.focus.bundle";
src = (
{
flags = 6;
req = {length = 52, bytes = 0xfade0c00 00000034 00000001 00000006 ... 74657200 00000003 };
uuid = "73B2B240-DC2E-4E05-BD17-007BA75B6AC7";
}
);
},
{
auth = 6;
"bundle-id" = "com.apple.studentd.notifications";
"content_visibility" = 3;
flags = 327688342;
grouping = 0;
path = "/System/Library/UserNotifications/Bundles/com.apple.studentd.notifications.bundle";
src = (
{
flags = 6;
req = {length = 48, bytes = 0xfade0c00 00000030 00000001 00000006 ... 74640000 00000003 };
uuid = "05EADE79-64EE-4A59-B815-786EA5FF2403";
}
);
},
{
auth = 6;
"bundle-id" = "com.apple.shortcuts";
"content_visibility" = 0;
flags = 327680142;
grouping = 0;
path = "/System/Applications/Shortcuts.app";
src = (
{
flags = 6;
req = {length = 52, bytes = 0xfade0c00 00000034 00000001 00000006 ... 73640000 00000003 };
uuid = "2825D756-3273-4F9C-8E0D-18D290F64427";
}
);
"universal-app-id" = "com.apple.shortcuts";
},
{
"bundle-id" = "_SYSTEM_CENTER_:com.apple.CalendarNotification.CalNCService";
"content_visibility" = 3;
flags = 41943575;
grouping = 0;
src = (
{
flags = 6;
req = {length = 72, bytes = 0xfade0c00 00000048 00000001 00000006 ... 69636500 00000003 };
uuid = "D612F6B2-0EF0-403B-B351-C6EF7A56FDB6";
}
);
},
{
auth = 4;
"bundle-id" = "_SYSTEM_CENTER_:com.apple.wifi.usernotifications.diagnostics";
"content_visibility" = 0;
flags = 327680662;
grouping = 0;
src = (
{
flags = 6;
req = {length = 52, bytes = 0xfade0c00 00000034 00000001 00000006 ... 67656e74 00000003 };
uuid = "1287E097-4CEA-4C55-8EED-0B745F52B632";
}
);
},
{
"bundle-id" = "_SYSTEM_CENTER_:com.apple.security.keychain-circle-notification";
"content_visibility" = 3;
flags = 41943575;
grouping = 0;
src = (
{
flags = 6;
req = {length = 76, bytes = 0xfade0c00 0000004c 00000001 00000006 ... 696f6e00 00000003 };
uuid = "A11D261D-C70E-4753-8B46-91B8A816C041";
}
);
},
{
auth = 263;
"bundle-id" = "com.apple.askpermission.notifications";
"content_visibility" = 0;
flags = 864551062;
grouping = 0;
path = "/System/Library/UserNotifications/Bundles/com.apple.askpermission.notifications.bundle";
src = (
{
flags = 6;
req = {length = 52, bytes = 0xfade0c00 00000034 00000001 00000006 ... 696f6e64 00000003 };
uuid = "6E052730-59E0-426E-93CC-CB95429DEFA9";
}
);
},
{
"bundle-id" = "_SYSTEM_CENTER_:com.apple.askpermissiond";
"content_visibility" = 3;
flags = 41943575;
grouping = 0;
},
{
"bundle-id" = "_SYSTEM_CENTER_:com.apple.loginwindow";
"content_visibility" = 3;
flags = 41943575;
grouping = 0;
src = (
{
flags = 6;
req = {length = 52, bytes = 0xfade0c00 00000034 00000001 00000006 ... 77000000 00000003 };
uuid = "13044A7A-8D4B-4703-BCF2-E7356EAFCEE4";
}
);
},
{
"bundle-id" = "_SYSTEM_CENTER_:com.apple.BluetoothUIServer";
"content_visibility" = 3;
flags = 41943575;
grouping = 0;
src = (
{
flags = 6;
req = {length = 56, bytes = 0xfade0c00 00000038 00000001 00000006 ... 76657200 00000003 };
uuid = "916B6A34-087B-41E6-9ADD-73A6049E922B";
}
);
},
{
"bundle-id" = "_SYSTEM_CENTER_:com.apple.sharingd";
"content_visibility" = 3;
flags = 41943575;
grouping = 0;
src = (
{
flags = 6;
req = {length = 48, bytes = 0xfade0c00 00000030 00000001 00000006 ... 67640000 00000003 };
uuid = "FEFB15D7-DD57-4D35-B3FB-C78A710E61BD";
}
);
},
{
"bundle-id" = "_SYSTEM_CENTER_:com.apple.USBAgent";
"content_visibility" = 3;
flags = 41943575;
grouping = 0;
src = (
{
flags = 6;
req = {length = 48, bytes = 0xfade0c00 00000030 00000001 00000006 ... 6e740000 00000003 };
uuid = "D8D6C111-0BE0-457E-9A15-3EEDFDD4C135";
}
);
},
{
auth = 0;
"bundle-id" = "com.microsoft.Excel";
"content_visibility" = 0;
flags = 268443662;
grouping = 0;
path = "/Applications/Microsoft Excel.app";
src = (
{
flags = 0;
path = "/Applications/Microsoft Excel.app";
req = {length = 160, bytes = 0xfade0c00 000000a0 00000001 00000006 ... 54333436 47390000 };
uuid = "315AA73A-DCCF-40E5-BEC2-7DC0BCB5F303";
}
);
},
{
"bundle-id" = "_SYSTEM_CENTER_:com.apple.EscrowSecurityAlert";
"content_visibility" = 3;
flags = 41943575;
grouping = 0;
src = (
{
flags = 6;
req = {length = 60, bytes = 0xfade0c00 0000003c 00000001 00000006 ... 74000000 00000003 };
uuid = "2D881135-AEE7-4918-94D4-437E71C64346";
}
);
},
{
"bundle-id" = "_SYSTEM_CENTER_:com.apple.mdmclient";
"content_visibility" = 3;
flags = 41943575;
grouping = 0;
src = (
{
flags = 6;
req = {length = 48, bytes = 0xfade0c00 00000030 00000001 00000006 ... 656e7400 00000003 };
uuid = "12684C75-A9BF-4587-A9F2-738065F24DF6";
}
);
},
{
"bundle-id" = "_SYSTEM_CENTER_:com.apple.TMHelperAgent";
"content_visibility" = 3;
flags = 41943575;
grouping = 0;
},
{
"bundle-id" = "_SYSTEM_CENTER_:com.apple.noticeboard";
"content_visibility" = 3;
flags = 41943703;
grouping = 0;
src = (