Fixes PhotoInfo.path to return the correct path for shared photos on Ventura (#883)
@ -135,6 +135,11 @@ _EXIF_TOOL_URL = "https://exiftool.org/"
|
||||
|
||||
# Where are shared iCloud photos located?
|
||||
_PHOTOS_5_SHARED_PHOTO_PATH = "resources/cloudsharing/data"
|
||||
_PHOTOS_8_SHARED_PHOTO_PATH = "scopes/cloudsharing/data"
|
||||
|
||||
# Where are shared iCloud derivatives located?
|
||||
_PHOTOS_5_SHARED_DERIVATIVE_PATH = "resources/cloudsharing/resources/derivatives/masters"
|
||||
_PHOTOS_8_SHARED_DERIVATIVE_PATH = "scopes/cloudsharing/resources/derivatives/masters"
|
||||
|
||||
# What type of file? Based on ZGENERICASSET.ZKIND in Photos 5 database
|
||||
_PHOTO_TYPE = 0
|
||||
|
||||
@ -36,8 +36,11 @@ from ._constants import (
|
||||
_PHOTOS_5_IMPORT_SESSION_ALBUM_KIND,
|
||||
_PHOTOS_5_PROJECT_ALBUM_KIND,
|
||||
_PHOTOS_5_SHARED_ALBUM_KIND,
|
||||
_PHOTOS_5_SHARED_DERIVATIVE_PATH,
|
||||
_PHOTOS_5_SHARED_PHOTO_PATH,
|
||||
_PHOTOS_5_VERSION,
|
||||
_PHOTOS_8_SHARED_DERIVATIVE_PATH,
|
||||
_PHOTOS_8_SHARED_PHOTO_PATH,
|
||||
BURST_DEFAULT_PICK,
|
||||
BURST_KEY,
|
||||
BURST_NOT_SELECTED,
|
||||
@ -160,12 +163,7 @@ class PhotoInfo:
|
||||
def _path_5(self):
|
||||
"""Returns candidate path for original photo on Photos >= version 5"""
|
||||
if self._info["shared"]:
|
||||
return os.path.join(
|
||||
self._db._library_path,
|
||||
_PHOTOS_5_SHARED_PHOTO_PATH,
|
||||
self._info["directory"],
|
||||
self._info["filename"],
|
||||
)
|
||||
return self._path_5_shared()
|
||||
return (
|
||||
os.path.join(self._info["directory"], self._info["filename"])
|
||||
if self._info["directory"].startswith("/")
|
||||
@ -176,6 +174,35 @@ class PhotoInfo:
|
||||
)
|
||||
)
|
||||
|
||||
def _path_5_shared(self):
|
||||
"""Returns candidate path for shared photo on Photos >= version 5"""
|
||||
# shared library path differs on Photos 5-7, Photos 8+
|
||||
shared_path = (
|
||||
_PHOTOS_8_SHARED_PHOTO_PATH
|
||||
if self._db._photos_ver >= 8
|
||||
else _PHOTOS_5_SHARED_PHOTO_PATH
|
||||
)
|
||||
|
||||
if self.isphoto:
|
||||
return os.path.join(
|
||||
self._db._library_path,
|
||||
shared_path,
|
||||
self._info["directory"],
|
||||
self._info["filename"],
|
||||
)
|
||||
|
||||
# a shared video has two files, the poster image and the video
|
||||
# the poster (image frame shown in Photos) is named UUID.poster.JPG
|
||||
# the video file is named UUID.medium.MP4
|
||||
# this method returns the path to the video file
|
||||
filename = f"{self.uuid}.medium.MP4"
|
||||
return os.path.join(
|
||||
self._db._library_path,
|
||||
shared_path,
|
||||
self._info["directory"],
|
||||
filename,
|
||||
)
|
||||
|
||||
def _path_4(self):
|
||||
"""Returns candidate path for original photo on Photos <= version 4"""
|
||||
if self._info["has_raw"]:
|
||||
@ -261,9 +288,7 @@ class PhotoInfo:
|
||||
logging.debug(f"WARNING: unknown type {self._info['type']}")
|
||||
return None
|
||||
|
||||
return os.path.join(
|
||||
library, "resources", "renders", directory, filename
|
||||
)
|
||||
return os.path.join(library, "resources", "renders", directory, filename)
|
||||
|
||||
return None
|
||||
|
||||
@ -439,15 +464,11 @@ class PhotoInfo:
|
||||
else:
|
||||
filepath = os.path.join(self._db._masters_path, self._info["directory"])
|
||||
|
||||
# raw files have same name as original but with _4.raw_ext appended
|
||||
# I believe the _4 maps to PHAssetResourceTypeAlternatePhoto = 4
|
||||
# see: https://developer.apple.com/documentation/photokit/phassetresourcetype/phassetresourcetypealternatephoto?language=objc
|
||||
raw_file = list_directory(filepath, startswith=f"{filestem}_4")
|
||||
if not raw_file:
|
||||
photopath = None
|
||||
else:
|
||||
if raw_file := list_directory(filepath, startswith=f"{filestem}_4"):
|
||||
photopath = pathlib.Path(filepath) / raw_file[0]
|
||||
photopath = str(photopath) if photopath.is_file() else None
|
||||
else:
|
||||
photopath = None
|
||||
else:
|
||||
# is a reference
|
||||
try:
|
||||
@ -993,14 +1014,17 @@ class PhotoInfo:
|
||||
"""Return paths to all derivative (preview) files for shared iCloud photos in Photos >= 5"""
|
||||
directory = self._uuid[0] # first char of uuid
|
||||
# only 1 derivative for shared photos and it's called 'UUID_4_5005_c.jpeg'
|
||||
derivative_path = (
|
||||
_PHOTOS_8_SHARED_DERIVATIVE_PATH
|
||||
if self._db._photos_ver >= 8
|
||||
else _PHOTOS_5_SHARED_DERIVATIVE_PATH
|
||||
)
|
||||
derivative_path = (
|
||||
pathlib.Path(self._db._library_path)
|
||||
/ "resources/cloudsharing/resources/derivatives/masters"
|
||||
/ derivative_path
|
||||
/ f"{directory}/{self.uuid}_4_5005_c.jpeg"
|
||||
)
|
||||
if derivative_path.exists():
|
||||
return [str(derivative_path)]
|
||||
return []
|
||||
return [str(derivative_path)] if derivative_path.exists() else []
|
||||
|
||||
@property
|
||||
def panorama(self):
|
||||
|
||||
@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>LibrarySchemaVersion</key>
|
||||
<integer>5001</integer>
|
||||
<key>MetaSchemaVersion</key>
|
||||
<integer>3</integer>
|
||||
</dict>
|
||||
</plist>
|
||||
BIN
tests/Test-Cloud-13.1.photoslibrary/database/Photos.sqlite
Normal file
BIN
tests/Test-Cloud-13.1.photoslibrary/database/Photos.sqlite-shm
Normal file
BIN
tests/Test-Cloud-13.1.photoslibrary/database/Photos.sqlite-wal
Normal file
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>hostname</key>
|
||||
<string>Mac-mini.local</string>
|
||||
<key>hostuuid</key>
|
||||
<string>8E774325-0506-5746-9991-6B8189271107</string>
|
||||
<key>pid</key>
|
||||
<integer>71121</integer>
|
||||
<key>processname</key>
|
||||
<string>photolibraryd</string>
|
||||
<key>uid</key>
|
||||
<integer>503</integer>
|
||||
</dict>
|
||||
</plist>
|
||||
BIN
tests/Test-Cloud-13.1.photoslibrary/database/metaSchema.db
Normal file
BIN
tests/Test-Cloud-13.1.photoslibrary/database/photos.db
Normal file
BIN
tests/Test-Cloud-13.1.photoslibrary/database/search/psi.sqlite
Normal file
@ -0,0 +1,43 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BlacklistedMeaningsByMeaning</key>
|
||||
<dict>
|
||||
<key>Brunch</key>
|
||||
<array>
|
||||
<string>Dining</string>
|
||||
</array>
|
||||
<key>Brunches</key>
|
||||
<array>
|
||||
<string>Dining</string>
|
||||
</array>
|
||||
<key>Lunch</key>
|
||||
<array>
|
||||
<string>Dining</string>
|
||||
</array>
|
||||
<key>Lunches</key>
|
||||
<array>
|
||||
<string>Dining</string>
|
||||
</array>
|
||||
</dict>
|
||||
<key>SceneWhitelist</key>
|
||||
<array>
|
||||
<string>Amusement Park</string>
|
||||
<string>Animal</string>
|
||||
<string>Aquarium</string>
|
||||
<string>Art</string>
|
||||
<string>Car</string>
|
||||
<string>Cheese</string>
|
||||
<string>Food</string>
|
||||
<string>Forest</string>
|
||||
<string>Jewelry</string>
|
||||
<string>Music</string>
|
||||
<string>Night Sky</string>
|
||||
<string>Snow</string>
|
||||
<string>Tattoo</string>
|
||||
<string>Underwater</string>
|
||||
<string>Vehicle</string>
|
||||
</array>
|
||||
</dict>
|
||||
</plist>
|
||||
@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>insertAlbum</key>
|
||||
<array/>
|
||||
<key>insertAsset</key>
|
||||
<array/>
|
||||
<key>insertHighlight</key>
|
||||
<array/>
|
||||
<key>insertMemory</key>
|
||||
<array/>
|
||||
<key>insertMoment</key>
|
||||
<array/>
|
||||
<key>removeAlbum</key>
|
||||
<array/>
|
||||
<key>removeAsset</key>
|
||||
<array/>
|
||||
<key>removeHighlight</key>
|
||||
<array/>
|
||||
<key>removeMemory</key>
|
||||
<array/>
|
||||
<key>removeMoment</key>
|
||||
<array/>
|
||||
<key>renamePerson</key>
|
||||
<array/>
|
||||
</dict>
|
||||
</plist>
|
||||
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>embeddingVersion</key>
|
||||
<string>1</string>
|
||||
<key>featureFlags</key>
|
||||
<string>319</string>
|
||||
<key>featuredContentAllowed</key>
|
||||
<string>1</string>
|
||||
<key>localeIdentifier</key>
|
||||
<string>en_US</string>
|
||||
<key>sceneTaxonomySHA</key>
|
||||
<string>64d078bafc0035e1ec26dfa565c2ac0479fcbab329fda1c16cd17e0fdbf2f4c0,4afa5d3c45c08a664cf73cff957aaeeae3a325d2970aada51268407b9ad0f03e</string>
|
||||
<key>searchIndexVersion</key>
|
||||
<string>16025</string>
|
||||
</dict>
|
||||
</plist>
|
||||
|
After Width: | Height: | Size: 130 KiB |
|
After Width: | Height: | Size: 2.4 MiB |
|
After Width: | Height: | Size: 1.9 MiB |
|
After Width: | Height: | Size: 2.6 MiB |
|
After Width: | Height: | Size: 2.6 MiB |
|
After Width: | Height: | Size: 2.0 MiB |
|
After Width: | Height: | Size: 474 KiB |
|
After Width: | Height: | Size: 2.1 MiB |
|
After Width: | Height: | Size: 1.9 MiB |
|
After Width: | Height: | Size: 4.7 MiB |
|
After Width: | Height: | Size: 344 KiB |
|
After Width: | Height: | Size: 1.9 MiB |
|
After Width: | Height: | Size: 2.0 MiB |
|
After Width: | Height: | Size: 345 KiB |
|
After Width: | Height: | Size: 1.6 MiB |
|
After Width: | Height: | Size: 1.9 MiB |
|
After Width: | Height: | Size: 505 KiB |
@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CollapsedSidebarSectionIdentifiers</key>
|
||||
<array/>
|
||||
<key>ExpandedSidebarItemIdentifiers</key>
|
||||
<array>
|
||||
<string>PXSharedAlbumsAndActivityVirtualCollection</string>
|
||||
</array>
|
||||
<key>IPXWorkspaceControllerZoomLevelsKey</key>
|
||||
<dict>
|
||||
<key>kZoomLevelIdentifierPhotosGrid</key>
|
||||
<integer>1</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>NumberOfFacesProcessedOnLastRun</key>
|
||||
<integer>3</integer>
|
||||
<key>ProcessedInQuiescentState</key>
|
||||
<true/>
|
||||
<key>Version</key>
|
||||
<integer>13</integer>
|
||||
</dict>
|
||||
</plist>
|
||||
@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>FaceIDModelLastGenerationKey</key>
|
||||
<date>2023-01-01T02:43:05Z</date>
|
||||
<key>PetIDModelLastGenerationKey</key>
|
||||
<date>2023-01-01T02:43:05Z</date>
|
||||
</dict>
|
||||
</plist>
|
||||
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>VCPClustererBringUpState</key>
|
||||
<integer>40</integer>
|
||||
</dict>
|
||||
</plist>
|
||||
@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>PersonBuilderLastMinimumFaceGroupSizeForCreatingMergeCandidates</key>
|
||||
<integer>15</integer>
|
||||
<key>PersonBuilderMergeCandidatesEnabled</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</plist>
|
||||
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>FaceProcessingInternalVersion</key>
|
||||
<integer>11</integer>
|
||||
</dict>
|
||||
</plist>
|
||||
@ -0,0 +1,71 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>algorithm</key>
|
||||
<integer>1</integer>
|
||||
<key>algorithmData</key>
|
||||
<dict>
|
||||
<key>normalizer</key>
|
||||
<real>10</real>
|
||||
<key>peopleFeatures</key>
|
||||
<dict/>
|
||||
<key>sceneFeatures</key>
|
||||
<dict>
|
||||
<key>1006</key>
|
||||
<real>0.5</real>
|
||||
<key>1222</key>
|
||||
<real>1</real>
|
||||
<key>1238</key>
|
||||
<real>0.5</real>
|
||||
<key>144</key>
|
||||
<real>0.5</real>
|
||||
<key>1446</key>
|
||||
<real>0.5</real>
|
||||
<key>1447</key>
|
||||
<real>0.5</real>
|
||||
<key>1469</key>
|
||||
<real>0.5</real>
|
||||
<key>1535</key>
|
||||
<real>0.5</real>
|
||||
<key>16</key>
|
||||
<real>0.5</real>
|
||||
<key>1740</key>
|
||||
<real>0.5</real>
|
||||
<key>1764</key>
|
||||
<real>0.5</real>
|
||||
<key>2</key>
|
||||
<real>0.5</real>
|
||||
<key>2147483655</key>
|
||||
<real>1</real>
|
||||
<key>229</key>
|
||||
<real>0.5</real>
|
||||
<key>30</key>
|
||||
<real>0.5</real>
|
||||
<key>536</key>
|
||||
<real>0.5</real>
|
||||
<key>539</key>
|
||||
<real>0.5</real>
|
||||
<key>546</key>
|
||||
<real>0.5</real>
|
||||
<key>550</key>
|
||||
<real>0.5</real>
|
||||
<key>590</key>
|
||||
<real>0.5</real>
|
||||
<key>784</key>
|
||||
<real>1</real>
|
||||
<key>825</key>
|
||||
<real>0.5</real>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>date</key>
|
||||
<string>2023-01-01 03:07:18 +0000</string>
|
||||
<key>goldAssetUUIDs</key>
|
||||
<array>
|
||||
<string>F4952B68-AB31-4CB1-AE12-588832D11171</string>
|
||||
<string>0FFBE909-7142-4299-BA6F-9B6E7E8FB338</string>
|
||||
</array>
|
||||
<key>version</key>
|
||||
<integer>10</integer>
|
||||
</dict>
|
||||
</plist>
|
||||
@ -0,0 +1,918 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>firstSeenDates</key>
|
||||
<dict>
|
||||
<key>com.apple.photos.CPAnalytics.addAssetsToLibrary</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.appleMusicPreparationFailed</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.appleMusicPreparationSucceeded</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.appleMusicPreparedToPlay</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.appleMusicSongDownloaded</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.assetCollectionBlocked</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.assetCollectionDeleted</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.assetCollectionFavorited</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.assetCollectionMoviePlayed</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.assetCollectionUnfavorited</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.assetCollectionViewed</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.assetExportItemPreparationCompleted</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.assetExportPreparationCanceled</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.assetExportPreparationCompleted</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.assetExportPreparationFailed</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.assetFavorited</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.assetSharedStandardSelectionSize</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.assetUnfavorited</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.assetViewed</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.assetsDeleted</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.assetsDeletedFromTrash</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.assetsRestored</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.cmmAddAssetToLibrary</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.cmmPublishFromDetailViewMenuAction</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.cmmPublishFromForYouSendBackSuggestions</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.cmmPublishFromForYouSuggestion</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.cmmPublishFromMessagesSuggestion</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.cmmPublishFromShareSheet</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.cmmPublishFromUnknown</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.cmmReceivedSharesOpened</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.cmmReceivedSharesSeen</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.cmmSentSharesOpened</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.cmmSentSharesSeen</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.cmmShareBackOpened</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.cmmShareBackPresentable</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.cmmShareBackShown</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.cmmSuggestionComposeFlowOpened</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.cmmSuggestionOpened</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.cmmSuggestionSeen</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.deduplicationEventFailed</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.deduplicationEventOneUpSelect</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.deduplicationEventSkip</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.deduplicationFromAlbumSection</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.deduplicationFromAlbumSelection</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.deduplicationFromOneUpMergeAll</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.deduplicationFromOneUpSelection</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.deduplicationFromUnspecified</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.deduplicationMerge1</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.deduplicationMerge11+</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.deduplicationMerge2</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.deduplicationMerge3-5</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.deduplicationMerge6-10</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.deduplicationMergeAll</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.deduplicationSkipPerceptualMerge</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.filterAllItemsSelected</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.filterDuplicatesSelected</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.filterEditedSelected</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.filterFavoritedSelected</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.filterHeaderSelected</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.filterIncludeSharedWithYouSelected</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.filterKeywordHeaderSelected</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.filterKeywordManagerSelected</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.filterKeywordsSelected</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.filterPhotosSelected</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.filterSavedItemsOnlySelected</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.filterSharedLibraryAllDisplayed</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.filterSharedLibraryAllSelected</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.filterSharedLibraryDismissed</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.filterSharedLibraryMineDisplayed</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.filterSharedLibraryMineSelected</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.filterSharedLibraryPresented</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.filterSharedLibrarySharedDisplayed</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.filterSharedLibrarySharedSelected</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.filterUnsavedItemsOnlySelected</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.filterVideosSelected</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.firstTimeExperienceNotReady</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.firstTimeExperienceReady</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.flexMusicDownloadRequiredAtPlaybackTime</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.flexMusicSongArtworkDownloaded</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.flexMusicSongAudioDownloaded</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.forYouInboxItemSelected</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.forYouInboxItemSelectedWithTypeCMMPublishedShare</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.forYouInboxItemSelectedWithTypeCMMReceivedShare</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.forYouInboxItemSelectedWithTypeSharedAlbumAccept</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.forYouInboxItemSelectedWithTypeSharedAlbumCoalescedWithComments</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.forYouInboxItemSelectedWithTypeSharedAlbumCoalescedWithCommentsAndLikes</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.forYouInboxItemSelectedWithTypeSharedAlbumComment</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.forYouInboxItemSelectedWithTypeSharedAlbumDecline</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.forYouInboxItemSelectedWithTypeSharedAlbumInvitation</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.forYouInboxItemSelectedWithTypeSharedAlbumLike</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.forYouInboxItemSelectedWithTypeSharedAlbumPost</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.forYouTabOpenedFromInAppUserNavigation</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.forYouTabOpenedFromNotification</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.forYouTabOpenedFromOtherURL</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.forYouTabOpenedFromStateRestoration</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.forYouTabOpenedFromUndefined</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.forYouTabOpenedFromWidget</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.gadgetSeenWithTypeAlbumGadget</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.gadgetSeenWithTypeAlbumListGadget</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.gadgetSeenWithTypeCMMInviteGadget</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.gadgetSeenWithTypeCMMSuggestionGadget</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.gadgetSeenWithTypeCPLCMMSuggestionGadget</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.gadgetSeenWithTypeContentSyndication</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.gadgetSeenWithTypeDebugGadget</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.gadgetSeenWithTypeFooterGadget</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.gadgetSeenWithTypeInboxGadget</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.gadgetSeenWithTypeListViewGadget</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.gadgetSeenWithTypeMemoryRowGadget</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.gadgetSeenWithTypeNoContentGadget</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.gadgetSeenWithTypeRecentPhotosGadget</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.gadgetSeenWithTypeRecentSearchesGadget</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.gadgetSeenWithTypeSearchZeroKeywordGadget</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.gadgetSeenWithTypeSettingsAdvisory</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.gadgetSeenWithTypeSharedAlbumActivityGadget</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.gadgetSeenWithTypeSharedAlbumGadget</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.gadgetSeenWithTypeSharedAlbumInviteGadget</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.gadgetSeenWithTypeSuggestedEditGadget</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.gadgetSeenWithTypeSuggestionGadget</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.gadgetSeenWithTypeSurveyCongratulations</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.gadgetSeenWithTypeSurveyQuestionGadget</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.gadgetSeenWithTypeTapToRadarGadget</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.gadgetWithTypeMemoryRowGadgetSelectedAccessoryButtonWithTypeSeeAll</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.gadgetWithTypeSharedAlbumGadgetSelectedAccessoryButtonWithTypeSeeAll</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.infoPanelAddLocationTapped</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.infoPanelAdjustLocationTapped</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.infoPanelLocationTapped</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.mapViewAdjustLocationTapped</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.mediaViewed</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.memoryCreatedViaAddToMemories</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.memoryNotificationResponded</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.memoryNotificationSeen</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.navigateToFailedToUploadItemsAlbumFailed</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.navigateToFailedToUploadItemsAlbumSucceeded</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.navigatedToSharedAlbumActivityViewFromCollageView</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.navigatedToSharedAlbumActivityViewFromRecentActivityEntry</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.navigatedToSharedAlbumActivityViewFromSeeAllButton</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.navigationList.favorites</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.navigationList.hidden</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.navigationList.imports</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.navigationList.mediaTypes.animated</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.navigationList.mediaTypes.bursts</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.navigationList.mediaTypes.cinematicVideos</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.navigationList.mediaTypes.depthEffect</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.navigationList.mediaTypes.livePhotos</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.navigationList.mediaTypes.longExposures</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.navigationList.mediaTypes.panoramas</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.navigationList.mediaTypes.proRes</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.navigationList.mediaTypes.raw</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.navigationList.mediaTypes.screenrecordings</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.navigationList.mediaTypes.screenshots</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.navigationList.mediaTypes.selfPortraits</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.navigationList.mediaTypes.slomoVideos</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.navigationList.mediaTypes.timelapses</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.navigationList.mediaTypes.videos</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.navigationList.people</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.navigationList.places</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.navigationList.recentlyedited</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.navigationList.recentlysaved</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.navigationList.trashBin</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.oneUpCaptionEditExited</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.oneUpCaptionEditExitedWith1-10Characters</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.oneUpCaptionEditExitedWith101+Characters</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.oneUpCaptionEditExitedWith11+Hashtags</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.oneUpCaptionEditExitedWith11-20Characters</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.oneUpCaptionEditExitedWith1Hashtags</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.oneUpCaptionEditExitedWith21-30Characters</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.oneUpCaptionEditExitedWith2Hashtags</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.oneUpCaptionEditExitedWith31-50Characters</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.oneUpCaptionEditExitedWith3Hashtags</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.oneUpCaptionEditExitedWith4-5Hashtags</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.oneUpCaptionEditExitedWith51-100Characters</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.oneUpCaptionEditExitedWith6-10Hashtags</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.oneUpLivePhotoEffectApplied</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.people.addToPeopleHome</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.people.bootstrap.inlineControl.dismiss</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.people.bootstrap.inlineControl.review</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.people.bootstrap.mergeCandidates.confirmedAndRejectedCounts</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.people.bootstrap.speedbump.advance</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.people.bootstrap.speedbump.cancel</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.people.confirmAdditional.mergeCandidates.confirmedAndRejectedCounts</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.people.confirmAdditional.personSuggestions.confirmedAndRejectedCounts</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.people.detailView.keyPhotoChanged</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.people.detailView.notThisPerson</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.people.detailView.showFaces</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.people.manageTags.commitTapped</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.people.me.confirmed</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.people.me.rejected</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.people.naming.contactChosen</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.people.naming.personChosen</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.people.naming.skipped</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.people.naming.stringChosen</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.people.removeFromPeopleHome</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.people.untag.cancelTapped</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.people.untag.newTagTapped</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.people.untag.untagTapped</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.photosCloudQuotaOfferAdded</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.photosCloudQuotaOfferRemoved</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.photosCloudQuotaOfferReplaced</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.photosDetailsAllAssetsCounted</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.photosDetailsNavigatedToDepth1</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.photosDetailsNavigatedToDepth10</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.photosDetailsNavigatedToDepth11-12</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.photosDetailsNavigatedToDepth13-15</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.photosDetailsNavigatedToDepth16-20</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.photosDetailsNavigatedToDepth2</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.photosDetailsNavigatedToDepth21-30</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.photosDetailsNavigatedToDepth3</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.photosDetailsNavigatedToDepth31-50</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.photosDetailsNavigatedToDepth4</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.photosDetailsNavigatedToDepth5</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.photosDetailsNavigatedToDepth51+</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.photosDetailsNavigatedToDepth6</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.photosDetailsNavigatedToDepth7</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.photosDetailsNavigatedToDepth8</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.photosDetailsNavigatedToDepth9</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.photosDetailsShowMoreButtonSelected</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.photosDetailsSummaryAssetsCounted</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.photosDetailsSummaryButtonSelected</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.places.locationAction</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.rendering.livePhotoEffectFailed</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.rendering.livePhotoEffectPreviewRenderingDuration</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.search.session</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.search.siri</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.selectModeEntered</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.shareCanceled</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.shareCompleted</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.shareFailed</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.sharedAlbumInvitationAccepted</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.sharedAlbumInvitationDeclined</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.sharedAlbumInvitationReportedAsJunk</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.sharedAlbumsActivityFeedPostLiked</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.sharedAlbumsActivityFeedPostUnliked</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.sharedLibrary.suggestionsBanner.dismissed</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.sharedLibrary.suggestionsBanner.presented</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.sharedLibrary.suggestionsBanner.reviewed</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowExportCancelledAfter10.0-60.0Seconds</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowExportCancelledAfter2.0-10.0Seconds</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowExportCancelledAfter<2.0Seconds</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowExportCancelledAfter>60.0Seconds</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowExportEndedSuccessfullyAfter0.0-1.0Seconds</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowExportEndedSuccessfullyAfter1.0-2.0Seconds</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowExportEndedSuccessfullyAfter10.0-20.0Seconds</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowExportEndedSuccessfullyAfter120.0-300.0Seconds</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowExportEndedSuccessfullyAfter2.0-5.0Seconds</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowExportEndedSuccessfullyAfter20.0-60.0Seconds</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowExportEndedSuccessfullyAfter300.0-600.0Seconds</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowExportEndedSuccessfullyAfter5.0-10.0Seconds</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowExportEndedSuccessfullyAfter60.0-120.0Seconds</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowExportEndedSuccessfullyAfter600.0-3600.0Seconds</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowExportEndedSuccessfullyAfter<0.0Seconds</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowExportEndedSuccessfullyAfter>3600.0Seconds</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowExportFailed</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowExportStarted</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowPlaybackEndedAfterTimeFraction0.0-0.1</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowPlaybackEndedAfterTimeFraction0.1-0.2</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowPlaybackEndedAfterTimeFraction0.2-0.2</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowPlaybackEndedAfterTimeFraction0.3-0.4</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowPlaybackEndedAfterTimeFraction0.4-0.5</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowPlaybackEndedAfterTimeFraction0.5-0.6</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowPlaybackEndedAfterTimeFraction0.6-0.7</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowPlaybackEndedAfterTimeFraction0.7-0.8</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowPlaybackEndedAfterTimeFraction0.8-0.9</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowPlaybackEndedAfterTimeFraction0.9-1.0</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowPlaybackEndedAfterTimeFraction1.0-1.5</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowPlaybackEndedAfterTimeFraction1.5-2.0</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowPlaybackEndedAfterTimeFraction2.0-3.0</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowPlaybackEndedAfterTimeFraction3.0-5.0</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowPlaybackEndedAfterTimeFraction<0.0</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowPlaybackEndedAfterTimeFraction>5.0</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowPlaybackEndedByEndReached</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowPlaybackEndedByUndefined</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowPlaybackEndedByUser</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowPlaybackStarted</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowPlaybackStartedWith0-Assets</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowPlaybackStartedWith1-5Assets</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowPlaybackStartedWith1001+Assets</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowPlaybackStartedWith101-200Assets</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowPlaybackStartedWith11-15Assets</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowPlaybackStartedWith16-20Assets</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowPlaybackStartedWith201-300Assets</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowPlaybackStartedWith21-30Assets</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowPlaybackStartedWith301-500Assets</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowPlaybackStartedWith31-50Assets</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowPlaybackStartedWith501-1000Assets</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowPlaybackStartedWith51-100Assets</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.slideshowPlaybackStartedWith6-10Assets</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.syndicatedAssetsFilterTipAnchorButtonTapped</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.syndicatedAssetsFilterTipDismissed</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.syndicatedAssetsFilterTipPresented</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.syndicatedAssetsSaved</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.syndicationSuggestionRemoved</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.tabIdentifierChanged</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.toggleMineAndSharedSelected</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.toggleMyPhotosOnlySelected</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.userChoices.livePhotoEffectBounceSelected</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.userChoices.livePhotoEffectLongExposureSelected</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.userChoices.livePhotoEffectLoopSelected</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.userChoices.livePhotoEffectsAppeared</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.viewScrolledToBottom</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.viewScrolledToInitialPosition</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.widget.open</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.cpa.active_user_feature.actionOnSharedLibrarySuggestions</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.cpa.active_user_feature.interactiveMemoryExport</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.cpa.active_user_feature.interactiveMemoryPlayback</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.cpa.active_user_feature.memoryMoviePlayed</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.cpa.active_user_feature.memoryViewed</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.cpa.active_user_feature.mobileSlideShowActive</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.cpa.active_user_feature.slideshowExported</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.cpa.active_user_feature.slideshowPlayed</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.edit.perf.exitedit</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.appleMusicFixation</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryErrorOccurred</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryErrorOccurredInAdditionalAutoEditDecisionLists</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryErrorOccurredInAssets</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryErrorOccurredInAssetsPreloading</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryErrorOccurredInAutoEditClip</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryErrorOccurredInAutoEditDecisionLists</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryErrorOccurredInAutoEditTransitionInfo</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryErrorOccurredInColorNormalization</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryErrorOccurredInCuratedSongs</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryErrorOccurredInInitialStyle</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryErrorOccurredInMovieHighlights</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryErrorOccurredInMusicPlayback</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryErrorOccurredInPersistableRecipe</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryErrorOccurredInPersistence</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryErrorOccurredInRecipePersistence</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryErrorOccurredInStoryModel</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryErrorOccurredInStyleManager</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryErrorOccurredInStyles</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryErrorOccurredInTargetDurationCuration</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryErrorOccurredInTimelineManager</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryErrorOccurredInTimelineValidation</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryErrorOccurredInTransitions</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryExportCancelled</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryExportFailed</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryExported</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryFullscreenPlaybackStarted</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryFullscreenPlaybackStartedByAutoplayedRelated</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryFullscreenPlaybackStartedByUserSelectingRelated</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryFullscreenPlaybackStartedWith1-10CuratedAssets</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryFullscreenPlaybackStartedWith10001-20000CuratedAssets</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryFullscreenPlaybackStartedWith1001-2000CuratedAssets</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryFullscreenPlaybackStartedWith101-200CuratedAssets</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryFullscreenPlaybackStartedWith11-50CuratedAssets</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryFullscreenPlaybackStartedWith20000+CuratedAssets</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryFullscreenPlaybackStartedWith2001-5000CuratedAssets</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryFullscreenPlaybackStartedWith201-300CuratedAssets</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryFullscreenPlaybackStartedWith301-500CuratedAssets</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryFullscreenPlaybackStartedWith5001-10000CuratedAssets</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryFullscreenPlaybackStartedWith501-1000CuratedAssets</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryFullscreenPlaybackStartedWith51-100CuratedAssets</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryMusicFellBackToLocalFlexSong</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryMusicUsedFlexMusic</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryMusicUseedAppleMusic</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryPlaybackFinishedMuted</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryPlaybackFinishedTruncated</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryPlaybackFinishedUnmuted</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryPlaybackFinishedWith0Pauses</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryPlaybackFinishedWith1-2Pauses</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryPlaybackFinishedWith101+Pauses</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryPlaybackFinishedWith11-50Pauses</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryPlaybackFinishedWith3-5Pauses</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryPlaybackFinishedWith51-100Pauses</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryPlaybackFinishedWith6-10Pauses</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryPlaybackMutedDueToExplicitUserAction</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryPlaybackMutedDueToSilentModeSwitch</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryPlaybackUnmutedDueToExplicitUserAction</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryPlaybackUnmutedDueToSilentModeSwitch</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryPlaybackUnmutedDueToSongPick</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryPlaybackUnmutedDueToVolumeIncrease</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryRecipeErrorOccurred</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemorySessionBegan</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemorySessionEnded</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemorySessionPaused</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemorySessionPlayed</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryTimelinePlayedWith0-49PercentTransitionsOnBar</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryTimelinePlayedWith50-74PercentTransitionsOnBar</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryTimelinePlayedWith75-84PercentTransitionsOnBar</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryTimelinePlayedWith85-94PercentTransitionsOnBar</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.interactiveMemoryTimelinePlayedWith95-100PercentTransitionsOnBar</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.playbackLaunchPerformance</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.memory.playbackReliability</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_CuratedLibrary_AllPhotos</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_CuratedLibrary_Days</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_CuratedLibrary_Months</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_CuratedLibrary_Years</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_DuplicatesAlbum</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_FavoriteMemories</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_IPXFeedViewController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_InteractiveMemory</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_InteractiveMemoryBrowserGrid</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_InteractiveMemoryStyleSwitcher</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_MFMailComposeViewController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_MFMessageComposeViewController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_Memories</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_MemoriesFeed</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_MemoriesWidget</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_ObjectManipulationViewController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PMEditorNavigationController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PMiOSMainViewController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PXAssistantController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PXCMMAssetsViewController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PXEducationalTipViewController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PXFeedViewController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PXFeedbackTapToRadarViewController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PXFloatingCardViewController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PXForYouGadgetViewController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PXPeopleBootstrapConfirmationViewController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PXPeopleBootstrapSummaryViewController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PXPeopleCollectionViewController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PXPeopleConfirmationSummaryViewController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PXPeopleDetailViewController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PXPeopleNamePickerViewController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PXPeopleRecoCollectionViewController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PXPlacesMapInfoViewController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PXPlacesMapViewController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PXSharedLibraryAssistantCameraViewController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PXSharedLibraryAssistantHowToViewController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PXSharedLibraryAssistantReviewParticipantsViewController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PXSharedLibraryAssistantRulesViewController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PXSharedLibraryAssistantSummaryViewController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PXSurveyRadarReporterViewController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PXUIPeopleBootstrapNamingViewController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PhotosDetails_Collection</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PhotosDetails_CuratedLibraryDays</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PhotosDetails_CuratedLibraryMonths</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PhotosDetails_CuratedLibraryYears</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PhotosDetails_Memories</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PhotosDetails_Moment</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PhotosDetails_NonTracking</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PhotosDetails_OneUpAccessory</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PhotosDetails_OtherAlbums</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PhotosDetails_People</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PhotosDetails_Places</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PhotosDetails_RelatedWidget</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PhotosDetails_Search</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PhotosDetails_Year</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PhotosUIApps.PUXStoryColorGradeEditorViewController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PhotosUIApps.PUXStoryExportActivityPreviewViewController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PhotosUIApps.PUXStoryExportActivityViewController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PhotosUIApps.PUXStoryMusicEditorViewController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PhotosView</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_SBSUIWallpaperPreviewViewController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_SLComposeViewController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_TPKContentPopoverViewController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_UIImagePickerController</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen__UIActivityUserDefaultsViewController</key>
|
||||
<string>12/31/22</string>
|
||||
</dict>
|
||||
<key>lastSeenDates</key>
|
||||
<dict>
|
||||
<key>com.apple.photos.CPAnalytics.assetCollectionViewed</key>
|
||||
<string>1/1/23</string>
|
||||
<key>com.apple.photos.CPAnalytics.firstTimeExperienceNotReady</key>
|
||||
<string>12/31/22</string>
|
||||
<key>com.apple.photos.CPAnalytics.mediaViewed</key>
|
||||
<string>1/1/23</string>
|
||||
<key>screen_CuratedLibrary_AllPhotos</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PhotosDetails_NonTracking</key>
|
||||
<string>12/31/22</string>
|
||||
<key>screen_PhotosView</key>
|
||||
<string>1/1/23</string>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
@ -0,0 +1,44 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>PHAAssetRevGeocodeEnrichmentTask</key>
|
||||
<date>2023-01-01T12:29:29Z</date>
|
||||
<key>PHACachingCPAnalyticsPropertiesTask</key>
|
||||
<date>2023-01-01T03:07:18Z</date>
|
||||
<key>PHAContactClassificationTask</key>
|
||||
<date>2023-01-01T03:07:21Z</date>
|
||||
<key>PHAFeaturesUsageReportingTask</key>
|
||||
<date>2023-01-01T03:01:09Z</date>
|
||||
<key>PHAForcedHighlightEnrichmentTask</key>
|
||||
<date>2023-01-01T03:07:21Z</date>
|
||||
<key>PHAGraphConsistencyTask</key>
|
||||
<date>2023-01-01T12:29:29Z</date>
|
||||
<key>PHAGraphRebuildTask</key>
|
||||
<date>2023-01-01T03:07:09Z</date>
|
||||
<key>PHAHighlightCollectionEnrichmentTask</key>
|
||||
<date>2023-01-01T12:29:29Z</date>
|
||||
<key>PHAHighlightEnrichmentTask</key>
|
||||
<date>2023-01-01T12:29:29Z</date>
|
||||
<key>PHAMediaSampleReportingTask</key>
|
||||
<date>2023-01-01T03:07:18Z</date>
|
||||
<key>PHAMemoriesEnrichmentTask</key>
|
||||
<date>2023-01-01T09:30:30Z</date>
|
||||
<key>PHAMemoryElectionTask</key>
|
||||
<date>2023-01-01T09:30:28Z</date>
|
||||
<key>PHAPeopleSuggestionEnrichmentTask</key>
|
||||
<date>2023-01-01T03:07:09Z</date>
|
||||
<key>PHAPortraitDonationEnrichmentTask</key>
|
||||
<date>2023-01-01T03:07:18Z</date>
|
||||
<key>PHARevGeocodeSyndicationTask</key>
|
||||
<date>2023-01-01T03:07:10Z</date>
|
||||
<key>PHASearchEnrichmentTask</key>
|
||||
<date>2023-01-01T12:29:30Z</date>
|
||||
<key>PHASuggestionGenerationTask</key>
|
||||
<date>2023-01-01T09:30:30Z</date>
|
||||
<key>PHASyndicationTask</key>
|
||||
<date>2023-01-01T09:30:24Z</date>
|
||||
<key>PHAUserBehaviorEnrichmentTask</key>
|
||||
<date>2023-01-01T03:07:19Z</date>
|
||||
</dict>
|
||||
</plist>
|
||||
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>revgeoprovider</key>
|
||||
<string>7618</string>
|
||||
</dict>
|
||||
</plist>
|
||||