<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<installer-gui-script minSpecVersion="1">
    <options affects-system-files="true" allow-install-later="true" post-logout="true" customize="never" should-authenticate-reboot="true" should-launch-first-login-optimization="true"/>
    <title>SU_TITLE</title>
    <script/>
    <volume-check script="VolumeCheck()"/>
    <installation-check script="InstallationCheck()"/>
    <bridge-version build-version="16.16.5200.0.0" build-group="0"/>
    <auxinfo>
        <dict>
            <key>macOSProductBuildVersion</key>
            <string>18F203</string>
            <key>macOSProductVersion</key>
            <string>10.14.5</string>
            <key>macOSVariant</key>
            <string>Customer</string>
        </dict>
    </auxinfo>
    <system-image id="macOSUpd10.14.5Supplemental.RecoveryHDUpdate">
        <pkg-ref id="com.apple.pkg.macOSUpd10.14.5Supplemental.RecoveryHDUpdate.18F203"/>
    </system-image>
    <tags>
        <tag>MacBuddyInstallableUpdate</tag>
        <tag>macOS</tag>
    </tags>
    <platforms>
        <client arch="i386"/>
        <server arch="i386"/>
    </platforms>
    <choices-outline ui="firmware">
        <line choice="macOSUpd10.14.5Supplemental_Firmware"/>
    </choices-outline>
    <choices-outline>
        <line choice="macOSUpd10.14.5Supplemental"/>
    </choices-outline>
    <choices-outline ui="SoftwareUpdate">
        <line choice="macOSUpd10.14.5Supplemental"/>
    </choices-outline>
    <choice id="macOSUpd10.14.5Supplemental_Firmware" title="SU_TITLE" start_enabled="true" start_selected="true" visible="false">
        <pkg-ref id="com.apple.pkg.FirmwareUpdate" auth="Root" packageIdentifier="com.apple.pkg.FirmwareUpdate">FirmwareUpdate.pkg</pkg-ref>
    </choice>
    <choice id="macOSUpd10.14.5Supplemental" description-mime-type="text/html" secondaryDescription="SU_SERVERCOMMENT" suDisabledGroupID="MacBook Pro Supplemental Update" start_selected="true" versStr="SU_VERS" description="SU_DESCRIPTION" title="SU_TITLE" visible="Plist6(my.target.mountpoint)" start_enabled="true">
        <pkg-ref id="com.apple.pkg.update.os.10.14.5Supplemental.18F203" auth="Root" packageIdentifier="com.apple.pkg.update.os.10.14.5Supplemental.18F203" onConclusion="RequireRestart">macOSUpd10.14.5Supplemental.pkg</pkg-ref>
        <pkg-ref id="com.apple.pkg.macOSUpd10.14.5Supplemental.RecoveryHDUpdate.18F203" auth="Root" packageIdentifier="com.apple.pkg.macOSUpd10.14.5Supplemental.RecoveryHDUpdate.18F203" active="RecoveryHD7(my.target.mountpoint)" installEnvironment="ClientOS">macOSUpd10.14.5Supplemental.RecoveryHDUpdate.pkg</pkg-ref>
        <pkg-ref id="com.apple.pkg.macOSBrain" auth="Root" packageIdentifier="com.apple.pkg.macOSBrain" installEnvironment="ClientOS">macOSBrain.pkg</pkg-ref>
        <pkg-ref id="com.apple.pkg.SecureBoot" auth="Root" packageIdentifier="com.apple.pkg.SecureBoot">SecureBoot.pkg</pkg-ref>
        <pkg-ref id="com.apple.pkg.EmbeddedOSFirmware" auth="Root" packageIdentifier="com.apple.pkg.EmbeddedOSFirmware">EmbeddedOSFirmware.pkg</pkg-ref>
        <pkg-ref id="com.apple.pkg.FirmwareUpdate" auth="Root" packageIdentifier="com.apple.pkg.FirmwareUpdate">FirmwareUpdate.pkg</pkg-ref>
        <pkg-ref id="com.apple.update.fullbundleupdate.18F203" auth="Root" packageIdentifier="com.apple.update.fullbundleupdate.18F203">FullBundleUpdate.pkg</pkg-ref>
    </choice>
    <script>
function InstallationCheck(prefix) {
	var boardIds = ['Mac-937A206F2EE63C01','Mac-1E7E29AD0135F9BC',];
	var cpuFeatures = system.sysctl( 'machdep.cpu.features' );
	cpuFeatures=cpuFeatures.split(" ");
	for( var i = 0; i &lt; cpuFeatures.length; i++ ){
		if( cpuFeatures[i] == "VMM" ){
			return true;
		}
	}
	var nonSupportedModels = ['MacBookPro4,1','MacPro2,1','Macmini5,2','Macmini5,1','MacBookPro5,1','MacBookPro1,1','MacBookPro5,3','MacBookPro5,2','iMac8,1','MacBookPro5,4','MacBookPro8,1','iMac5,1','iMac11,2','iMac7,1','MacBookAir4,1','MacBookPro3,1','Macmini5,3','MacBookPro1,2','Macmini4,1','iMac9,1','iMac6,1','iMac4,1','Macmini1,1','iMac4,2','MacBookPro2,2','MacBookPro2,1','iMac12,2','MacBook3,1','MacPro3,1','MacBook5,1','MacBook5,2','iMac11,1','iMac10,1','MacBookPro7,1','MacBook2,1','MacPro4,1','MacBookPro6,2','iMac12,1','MacBook1,1','MacBookPro5,5','MacBookPro6,1','Xserve2,1','MacBookAir3,1','MacBookAir3,2','MacBookAir1,1','Xserve3,1','MacBookAir2,1','MacBook7,1','Xserve1,1','Macmini2,1','iMac5,2','MacBookPro8,2','MacBookPro8,3','iMac11,3','MacBook6,1','Macmini3,1','MacBook4,1','MacBookAir4,2','MacPro1,1',];
	var currentModel = system.sysctl('hw.model');
	if (nonSupportedModels.indexOf(currentModel) &gt;= 0) {
		my.result.message = system.localizedString('ERROR_3491501876');
		my.result.type = 'Fatal';
		return false;
	}
	var boardId = system.ioregistry.fromPath('IOService:/')['board-id'];
	if (boardIds.indexOf(boardId) == -1) {
		my.result.message = system.localizedString('ERROR_3491501876');
		my.result.type = 'Fatal';
		return false;
	}
	if (system.compareVersions(system.version.ProductVersion, '10.14') &lt; 0 || system.compareVersions(system.version.ProductVersion, '10.15') &gt;= 0) {
		my.result.message = system.localizedStringWithFormat('ERROR_7E7AEE96CA', '10.14');
		my.result.type = 'Fatal';
		return false;
	}
	return true;
}
function VolumeCheck(prefix) {
	var myTargetSystemVersion = (my.target.systemVersion || system.files.plistAtPath(my.target.mountpoint + "/System/Library/CoreServices/SystemVersion.plist"));
	if (!myTargetSystemVersion || system.compareVersions(myTargetSystemVersion.ProductVersion, '10.14') &lt; 0 || system.compareVersions(myTargetSystemVersion.ProductVersion, '10.15') &gt;= 0) {
		my.result.message = system.localizedStringWithFormat('ERROR_7E7AEE96CA', '10.14');
		my.result.type = 'Fatal';
		return false;
	}
	my.result.message = system.localizedString('ERROR_ABA5BBB51F');
	if (!Not0(my.target.mountpoint) || !Not2(my.target.mountpoint) || !AppleInternalCheck4(my.target.mountpoint) || !Plist5(my.target.mountpoint)) {
		my.result.type = 'Fatal';
		return false;
	}
	return true;
}
function Not0(prefix) {
	if (!(FileSystem1(prefix))) {
		return true;
	}
	my.result.message = system.localizedString('ERROR_74CFD58E51');
	return false;
}
function FileSystem1(prefix) {
	if (my.target.filesystem &amp;&amp; my.target.filesystem.type == 'hfs') {
		return true;
	}
	return false;
}
function Not2(prefix) {
	if (!(FileSystem3(prefix))) {
		return true;
	}
	return false;
}
function FileSystem3(prefix) {
	if (my.target.filesystem &amp;&amp; my.target.filesystem.safeToModifyVolume == '0') {
		return true;
	}
	return false;
}
function AppleInternalCheck4(prefix) {
	if (!(system.files.fileExistsAtPath(prefix + '/AppleInternal') &amp;&amp; my.target.receiptForIdentifier('com.apple.pkg.InternalOSContent') &amp;&amp; system.files.fileExistsAtPath(prefix + '/System/Library/Receipts/com.apple.pkg.InternalOSContent.plist'))) {
		return true;
	}
	return false;
}
function Plist5(prefix) {
	var plist = system.files.plistAtPath(prefix + '/System/Library/CoreServices/SystemVersion.plist');
	if (!plist) {
		return false;
	}
	var plistKeyValue = plist['ProductBuildVersion'];
	if (!plistKeyValue) {
		return false;
	}
	var buildNumbersArray = '18F132,18F203'.split(',');
	if (buildNumbersArray.indexOf(plistKeyValue) &lt; 0) {
		return false;
	}
	return true;
}
function Plist6(prefix) {
	var plist = system.files.plistAtPath(prefix + '/System/Library/CoreServices/SystemVersion.plist');
	if (!plist) {
		return false;
	}
	var plistKeyValue = plist['ProductBuildVersion'];
	if (!plistKeyValue) {
		return false;
	}
	if (system.compareVersions(plistKeyValue, '18F203') &gt;= 0) {
		return false;
	}
	return true;
}
function RecoveryHD7(prefix) {
	if( my.target.filesystem.safeToModifyVolume == 0 ) {
		return false;
	}
	if(!my.target.recoverySystemVersion) {
		return true;
	}
	var targetRecoveryVersion = my.target.recoverySystemVersion.ProductBuildVersion;
	if (system.compareVersions( targetRecoveryVersion, '18F203') &gt;= 0) {
		return false;
	}
	return true;
}
</script>
    <localization>
        <strings language="pl">"SU_TITLE" = "Uaktualnienie uzupełniające MacBooka Pro";
"SU_VERS" = " ";
"SU_SERVERCOMMENT" = "Dla komputerów klienckich i serwerów";
"SU_DESCRIPTION" = '&lt;!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"&gt;
&lt;html&gt;
    &lt;head&gt;
        &lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8"&gt;
        &lt;meta http-equiv="Content-Style-Type" content="text/css"&gt;
        &lt;title&gt;&lt;/title&gt;
        &lt;style type="text/css"&gt;
            body {font: 13px -apple-system;}
            p {margin: 0.0px 0.0px 0.0px 0.0px;}
        &lt;/style&gt;
    &lt;/head&gt;
    &lt;body&gt;
        &lt;p class="p1"&gt;Uaktualnienie uzupełniające MacBooka Pro rozwiązuje problem z oprogramowaniem sprzętowym 15‑calowych MacBooków Pro z układem zabezpieczającym T2 i jest zalecane dla wszystkich użytkowników.&lt;/p&gt;
        &lt;br&gt;
    &lt;/body&gt;
&lt;/html&gt;
';
</strings>
    </localization>
    <pkg-ref id="com.apple.update.fullbundleupdate.18F203" installKBytes="209006" version="1.0.0.0.1.1558072702"/>
    <pkg-ref id="com.apple.pkg.FirmwareUpdate" installKBytes="0" version="10.14.5.1"/>
    <pkg-ref id="com.apple.pkg.macOSBrain" installKBytes="166" version="10.14.5.1.1.1558072702"/>
    <pkg-ref id="com.apple.pkg.update.os.10.14.5Supplemental.18F203" installKBytes="279550" version="1.0.0.0.1.1558072702"/>
    <pkg-ref id="com.apple.pkg.EmbeddedOSFirmware" installKBytes="62086" version="10.14.5.1.1.1558072702"/>
    <pkg-ref id="com.apple.pkg.SecureBoot" installKBytes="374" version="10.14.5.1.1.1558072702"/>
    <pkg-ref id="com.apple.pkg.macOSUpd10.14.5Supplemental.RecoveryHDUpdate.18F203" installKBytes="0" version="1.0.0.0"/>
</installer-gui-script>