use image4::Tag;
pub const OBJECT_TAG_MAP: phf::Map<&'static str, Tag> = phf::phf_map! {
"Ap,LocalPolicy" => Tag::from_bytes(*b"lpol"),
"KernelCache" => Tag::from_bytes(*b"krnl"),
"DeviceTree" => Tag::from_bytes(*b"dtre"),
"LLB" => Tag::from_bytes(*b"illb"),
"RestoreDeviceTree" => Tag::from_bytes(*b"rdtr"),
"RestoreKernelCache" => Tag::from_bytes(*b"rkrn"),
"RestoreLogo" => Tag::from_bytes(*b"rlgo"),
"RestoreRamDisk" => Tag::from_bytes(*b"rdsk"),
"RestoreTrustCache" => Tag::from_bytes(*b"rtsc"),
"StaticTrustCache" => Tag::from_bytes(*b"trst"),
"BaseSystemVolume" => Tag::from_bytes(*b"csys"),
"iBEC" => Tag::from_bytes(*b"ibec"),
"iBSS" => Tag::from_bytes(*b"ibss"),
"iBoot" => Tag::from_bytes(*b"ibot"),
"Ap,BaseSystemTrustCache" => Tag::from_bytes(*b"bstc"),
"Ap,SystemVolumeCanonicalMetadata" => Tag::from_bytes(*b"msys"),
"Ap,rOSLogo1" => Tag::from_bytes(*b"rlg1"),
"Ap,rOSLogo2" => Tag::from_bytes(*b"rlg2"),
"AppleLogo" => Tag::from_bytes(*b"logo"),
"RecoveryMode" => Tag::from_bytes(*b"recm"),
"OS" => Tag::from_bytes(*b"rosi"),
"SystemVolume" => Tag::from_bytes(*b"isys"),
"Cryptex1,AppOS" => Tag::from_bytes(*b"caos"),
"Cryptex1,AppTrustCache" => Tag::from_bytes(*b"trca"),
"Cryptex1,AppVolume" => Tag::from_bytes(*b"casy"),
"Cryptex1,SystemOS" => Tag::from_bytes(*b"csos"),
"Cryptex1,SystemTrustCache" => Tag::from_bytes(*b"trcs"),
"Cryptex1,SystemVolume" => Tag::from_bytes(*b"cssy"),
};
pub const MANIFEST_PROPERTY_TAG_MAP: phf::Map<&'static str, Tag> = phf::phf_map! {
"ApECID" => Tag::from_bytes(*b"ECID"),
"ApChipID" => Tag::from_bytes(*b"CHIP"),
"ApBoardID" => Tag::from_bytes(*b"BORD"),
"ApSecurityDomain" => Tag::from_bytes(*b"SDOM"),
"ApNonce" => Tag::from_bytes(*b"BNCH"),
"ApSecurityMode" => Tag::from_bytes(*b"CSEC"),
"ApProductionMode" => Tag::from_bytes(*b"CPRO"),
"Ap,NextStageIM4MHash" => Tag::from_bytes(*b"nsih"),
"Ap,RecoveryOSPolicyNonceHash" => Tag::from_bytes(*b"ronh"),
"Ap,VolumeUUID" => Tag::from_bytes(*b"vuid"),
"Ap,LocalBoot" => Tag::from_bytes(*b"lobo"),
"Ap,OSLongVersion" => Tag::from_bytes(*b"love"),
"SepNonce" => Tag::from_bytes(*b"snon"),
"Cryptex1,ChipID" => Tag::from_bytes(*b"fchp"),
"Cryptex1,Nonce" => Tag::from_bytes(*b"cnch"), "Cryptex1,Type" => Tag::from_bytes(*b"type"),
"Cryptex1,SubType" => Tag::from_bytes(*b"styp"),
"Cryptex1,ProductClass" => Tag::from_bytes(*b"clas"), "Cryptex1,UseProductClass" => Tag::from_bytes(*b"clas"), "Cryptex1,NonceDomain" => Tag::from_bytes(*b"ndom"), "Cryptex1,Version" => Tag::from_bytes(*b"vnum"), "Cryptex1,PreauthorizationVersion" => Tag::from_bytes(*b"pave"), "Cryptex1,UDID" => Tag::from_bytes(*b"UDID"), "Cryptex1,ProductionMode" => Tag::from_bytes(*b"fpro"), "Cryptex1,FakeRoot" => Tag::from_bytes(*b"fake"), };
pub const IGNORED_PROPERTIES: phf::Set<&'static str> = phf::phf_set! {
"UniqueBuildID"
};