AzStackHciStandaloneObservability/package/bin/ObsDep/content/Powershell/Roles/Common/WindowsDefender.psm1
Import-Module -Name "$PSScriptRoot\..\..\Common\StorageHelpers.psm1" -DisableNameChecking Import-Module -Name "$PSScriptRoot\..\VirtualMachine\VirtualMachine.psm1" -DisableNameChecking function Apply-DefenderUpdate { [CmdletBinding()] param ( [Parameter(Mandatory = $true)] [CloudEngine.Configurations.EceInterfaceParameters] $Parameters, [Parameter(Mandatory = $false)] [string] $ClusterName ) $virtualMachinesRole = $Parameters.Roles["VirtualMachines"].PublicConfiguration $physicalMachinesRole = $Parameters.Roles["BareMetal"].PublicConfiguration $clusterRole = $Parameters.Roles["Cluster"].PublicConfiguration $clusterNames = @($ClusterName) if ([System.string]::IsNullOrEmpty($ClusterName)) { $clusterNames = Get-ClusterNames $Parameters } Trace-Execution "Apply Windows Defender Update on $($clusterNames -join ', ')" $domainAdminCredential = Get-TemporaryDomainCredential -Parameters $Parameters Trace-Execution "Domain Admin Account: $($domainAdminCredential.UserName)" foreach ($clusterName in $clusterNames) { # {Infrastructure_2}\CloudMedia\Security\Defender $defenderUpdatePath = Get-SharePath $Parameters $virtualMachinesRole.PublicInfo.DefenderFolder.Path $clusterName Trace-Execution "Defender update path: $defenderUpdatePath" Set-DefenderPlatformFile -Parameters $Parameters -UpdatePath $defenderUpdatePath Set-DefenderSignatureFile -Parameters $Parameters -UpdatePath $defenderUpdatePath try { $localUpdatePath = Get-LocalCsvPathFromSharePath -Parameters $Parameters -UNCSharePath $defenderUpdatePath -ClusterName $ClusterName Trace-Execution "CSV local path for Defender update folder: $localUpdatePath" } catch { Trace-Warning "Failed to convert UNC path $defenderUpdatePath into CSV local path: $_" $localUpdatePath = $null } $clusterId = ($clusterRole.Clusters.Node | ? Name -eq $clusterName).Id $vmNodes = $virtualMachinesRole.Nodes.Node | Where-Object { $_.RefClusterId -eq $clusterId } | where { $_.Role -ne "InfraRing" } | Select-Object -ExpandProperty Name if ($null -ne $vmNodes -and $vmNodes.Count -gt 0) { Update-DefenderPlatform -NodeSet $vmNodes -Credential $domainAdminCredential -UpdatePath $defenderUpdatePath Update-DefenderSignature -NodeSet $vmNodes -Credential $domainAdminCredential -UpdatePath $defenderUpdatePath } $hostNodes = Get-ClusterNodes -Parameters $Parameters -ClusterName $clusterName if ($null -ne $hostNodes -and $hostNodes.Count -gt 0) { Update-DefenderPlatform -NodeSet $hostNodes -Credential $domainAdminCredential -UpdatePath $defenderUpdatePath -CsvLocalPath $localUpdatePath Update-DefenderSignature -NodeSet $hostNodes -Credential $domainAdminCredential -UpdatePath $defenderUpdatePath -CsvLocalPath $localUpdatePath } } } <# .Synopsis Find out nodes in the stamp that need to receive that CAMP platform update #> function Get-DefenderPlatformUpdateNodes { [CmdletBinding()] param ( [Parameter(Mandatory = $true)] [string[]] $NodeSet, [Parameter(Mandatory = $true)] [PSCredential] $Credential, [Parameter(Mandatory = $true)] [string] $PlatformFilePath ) $platformUpdateVersion = Get-Item $PlatformFilePath | Select-Object -ExpandProperty "VersionInfo" | Select-Object -ExpandProperty "ProductVersion" Trace-Execution "Latest version of Windows Defender Platform found is filePath = $PlatformFilePath ; platformUpdateVersion = $platformUpdateVersion" # Bug 9350406: to avoid the issue caused by PowerShell broken session Trace-Execution "Querying version of Windows Defender Platform" $outdatedNodes = @() foreach ($node in $NodeSet) { try { $currentVersion = Invoke-Command -ComputerName $node -Credential $Credential -ScriptBlock { # Attempt to start Windows Defender if not already running $service = Get-Service -Name "windefend" -ErrorAction SilentlyContinue if ($null -ne $service -and $service.Status -ine "Running") { $service | Start-Service -ErrorAction SilentlyContinue | Out-Null } try { Get-MpComputerStatus | Select-Object -ExpandProperty "AMProductVersion" } catch { Write-Warning -Message "Could not retrieve 'AMProductVersion' for Windows Defender, non-terminating error is: $_" # Fall back to the default version "0.00.0000.00000" } } } catch { Trace-Warning "Failed to query version of Windows Defender Platform on $node : $_" } if ([System.Version]$currentVersion -lt [System.Version]$platformUpdateVersion) { $outdatedNodes += $node Trace-Execution "Found outdated CAMP of version '$currentVersion' on $node" } } Trace-Execution "Done querying version of Windows Defender Platform" $outdatedNodes } <# .Description Expand UpdatePlatform.exe from the security nuget And copy it to \\SU1FileServer\SU1_Infrastructure_2\CloudMedia\Security\Defender #> function Set-DefenderPlatformFile { [CmdletBinding()] param ( [Parameter(Mandatory = $true)] [CloudEngine.Configurations.EceInterfaceParameters] $Parameters, [Parameter(Mandatory = $true)] [string] $UpdatePath ) Import-Module -Name "$PSScriptRoot\..\..\Common\Helpers.psm1" -DisableNameChecking $clusterName = Get-ManagementClusterName $Parameters $virtualMachinesRole = $Parameters.Roles["VirtualMachines"].PublicConfiguration # If UpdatePlatform.exe from the nuget is older than the one in \\SU1FileServer\SU1_Infrastructure_2\CloudMedia\Security\Defender # Do not use the one from the nuget to make sure that the Defender platform does not fall back to an older version $platformFilePath = Join-Path $UpdatePath "UpdatePlatform.exe" $platformBackupFilePath = Join-Path $UpdatePath "UpdatePlatform.exe.bk" if (Test-Path $platformFilePath) { if (Test-Path $platformBackupFilePath) { Remove-Item $platformBackupFilePath -Force } Rename-Item -Path $platformFilePath -NewName "UpdatePlatform.exe.bk" } $nugetStorePath = Get-SharePath $Parameters $virtualMachinesRole.PublicInfo.LibraryShareNugetStoreFolder.Path $clusterName $nugetName = "Microsoft.AzureStack.Solution.Deploy.Security" # Extract Common Antimalware Platform (aka. CAMP) update from "Microsoft.AzureStack.Solution.Deploy.Security.x.x.x.x.nupkg" # NOTE: Expand-NugetContent automatically creates a new folder if it doesn't exist Trace-Execution "Expand $nugetName and copy Windows Defender Platform update to $UpdatePath" Expand-NugetContent ` -NugetName $nugetName ` -NugetStorePath $nugetStorePath ` -SourceIsFile ` -SourcePath "content\Defender\UpdatePlatform.exe" ` -DestinationPath $UpdatePath ` -IsUnc | Out-Null if (-not (Test-Path $platformFilePath)) { if (Test-Path $platformBackupFilePath) { Rename-Item -Path $platformBackupFilePath -NewName "UpdatePlatform.exe" } else { Trace-Error "Could not proceed further with Windows Defender Platform update since '$platformFilePath' doesn't exist" } } if (Test-Path $platformBackupFilePath) { $platformVersion = [System.Version](Get-Item -Path $platformFilePath | Select-Object -ExpandProperty VersionInfo | Select-Object -ExpandProperty ProductVersion) $backupVersion = [System.Version](Get-Item -Path $platformBackupFilePath | Select-Object -ExpandProperty VersionInfo | Select-Object -ExpandProperty ProductVersion) if ($platformVersion -gt $backupVersion) { Remove-Item -Path $platformBackupFilePath } else { Remove-Item -Path $platformFilePath Rename-Item -Path $platformBackupFilePath -NewName "UpdatePlatform.exe" } } $platformVersion = Get-Item -Path $platformFilePath | Select-Object -ExpandProperty VersionInfo | Select-Object -ExpandProperty ProductVersion Trace-Execution "Defender UpdatePlatform.exe version: $platformVersion" } function Update-DefenderPlatform { [CmdletBinding()] param ( [Parameter(Mandatory = $true)] [string[]] $NodeSet, [Parameter(Mandatory = $true)] [PSCredential] $Credential, [Parameter(Mandatory = $true)] [string] $UpdatePath, [Parameter(Mandatory = $false)] [string] $CsvLocalPath ) Trace-Execution "Starting to update Windows Defender platform on $($NodeSet -join ',')" $FilePath = Join-Path $UpdatePath "UpdatePlatform.exe" $targetNodes = Get-DefenderPlatformUpdateNodes -NodeSet $NodeSet -Credential $Credential -PlatformFilePath $FilePath if ($null -eq $targetNodes -or $targetNodes.Count -eq 0) { Trace-Execution "Looks like Windows Defender Platform on all the nodes is up to date, nothing to do" return } if (-not [System.string]::IsNullOrEmpty($CsvLocalPath)) { $FilePath = Join-Path $CsvLocalPath "UpdatePlatform.exe" } Trace-Execution "UpdatePlatform file: $FilePath" try { Invoke-Command -AsJob -ComputerName $targetNodes -Credential $Credential -Authentication Credssp -ErrorAction SilentlyContinue -ScriptBlock { $versionBeforeUpdate = Get-MpComputerStatus -ErrorAction SilentlyContinue | Select-Object -ExpandProperty AMProductVersion $process = [System.Diagnostics.Process]::new() $process.StartInfo.FileName = $using:FilePath $timeout = New-TimeSpan -Minutes 10 try { $process.Start() | Out-Null if (-not $process.WaitForExit($timeout.TotalMilliseconds)) { $status = "WARNING: MoCAMP update process didn't finish within the time allocated ({0} seconds).`r`n" -f $timeout.TotalSeconds } } finally { $process.Close() $process = $null } $service = Get-Service -Name "windefend" -ErrorAction SilentlyContinue if ($null -ne $service -and $service.Status -ine "Running") { $service | Start-Service -ErrorAction SilentlyContinue } try { $versionAfterUpdate = Get-MpComputerStatus | Select-Object -ExpandProperty AMProductVersion if ($versionBeforeUpdate -eq $versionAfterUpdate) { # If Defender is not updated, collect logs for later analysis & "C:\Program Files\Windows Defender\MpCmdRun.exe" -GetFiles | Out-Null # Move the log file MpSupportFiles.cab to other path in case it's overwritten Copy-Item -Path "C:\ProgramData\Microsoft\Windows Defender\Support\MpSupportFiles.cab" -Destination "C:\ProgramData\Microsoft\Windows Defender" } } catch { Write-Warning "Failed to run Get-MpComputerStatus after Defender has been updated: $_" & "C:\Program Files\Windows Defender\MpCmdRun.exe" -GetFiles | Out-Null Copy-Item -Path "C:\ProgramData\Microsoft\Windows Defender\Support\MpSupportFiles.cab" -Destination "C:\ProgramData\Microsoft\Windows Defender" } # Trace out update log file (btw, could be missing) for troubleshooting purposes (regardless of the exit code) $status += Get-Content -Raw "$env:windir\temp\mpsigstub.log" -ErrorAction SilentlyContinue if (-not $status) { $status = "Couldn't find '$env:windir\temp\mpsigstub.log', maybe '$using:FilePath' didn't get a chance to be executed." } return "[$env:ComputerName]: {0}" -f $status } | Wait-Job -Timeout 1800 | Receive-Job | Write-Verbose -Verbose } catch { Trace-Warning "Failed to update Windows Defender Platform: $_" } Trace-Execution "Done updating Windows Defender platform" } <# .Description Put Defender signature update files in \\su1fileserver\su1_infrastructure_2\CloudMedia\Security\Defender\x64 #> function Set-DefenderSignatureFile { [CmdletBinding()] param ( [Parameter(Mandatory = $true)] [CloudEngine.Configurations.EceInterfaceParameters] $Parameters, [Parameter(Mandatory = $true)] [string] $UpdatePath ) Import-Module -Name "$PSScriptRoot\RoleHelpers.psm1" -DisableNameChecking $clusterName = Get-ManagementClusterName $Parameters $physicalMachinesRole = $Parameters.Roles["BareMetal"].PublicConfiguration $virtualMachinesRole = $Parameters.Roles["VirtualMachines"].PublicConfiguration $windowsDefenderRole = $Parameters.Roles["WindowsDefender"].PublicConfiguration # Path of Defender signature files for Deployment, e.g. C:\CloudDeployment\Updates\DefenderUpdates\x64 $signatureFilePath = $global:ExecutionContext.InvokeCommand.ExpandString($physicalMachinesRole.PublicInfo.DefenderUpdates.Path) if($signatureFilePath -like "*{*}*") { # Resolved into \\SU1FileServer\SU1_Infrastructure_2\CloudMedia\Updates\DefenderUpdates\x64 but effectively no-op. # It is used to avoid errors from Test-Path when variable is not a valid path $signatureFilePath = Get-SharePath $Parameters $signatureFilePath $clusterName } if ($null -ne (Get-InProgressUpdateVersion -Parameters $Parameters)) { # Path of Defender signature files for Update, e.g. \\SU1FileServer\SU1_Infrastructure_2\CloudMedia\WindowsUpdates\Current\D $sharePath = Get-SharePath $Parameters $virtualMachinesRole.PublicInfo.WindowsUpdateStagingFolder.Path $clusterName try { # If OEMUpdate is run after P&U, there will be a versioned path $versionedPath = Get-AzSVersionedPath -Path $sharePath -ErrorAction Stop } catch { # If OEMUpdate is run before P&U, there will not be a versioned path $versionedPath = $sharePath } if ([System.string]::IsNullOrEmpty($versionedPath)) { $versionedPath = $sharePath } $defenderSourceFolderName = $windowsDefenderRole.PublicInfo.UpdatePackagePaths.DefenderFolder.Name $signatureFilePath = Join-Path -Path $versionedPath -ChildPath "$defenderSourceFolderName\x64" } # For Deployment, the Defender signature files are put in C:\CloudDeployment\Updates\DefenderUpdates\x64 # and then copied to \\su1fileserver\su1_infrastructure_2\CloudMedia\Security\Defender\x64 # For Update, the Defender signature files are put in \\SU1FileServer\SU1_Infrastructure_2\CloudMedia\WindowsUpdates\Current\D\x64 # and then copied to \\su1fileserver\su1_infrastructure_2\CloudMedia\Security\Defender\x64 # For other scenarios like FRU/AddScaleUnit/AddScaleUnitNodes/.., $signatureFilePath is INCORRECT as \\SU1FileServer\SU1_Infrastructure_2\CloudMedia\Updates\DefenderUpdates\x64\ # However, since we have the lastest Defender signature files in \\su1fileserver\su1_infrastructure_2\CloudMedia\Security\Defender\x64, we can skip the copy here if (Test-Path $signatureFilePath) { # Copy Defender signature files to \\su1fileserver\su1_infrastructure_2\CloudMedia\Security\Defender\x64 $UpdateCopyPath = Join-Path -Path $UpdatePath -ChildPath "x64" Trace-Execution "Copy files from $signatureFilePath to $UpdateCopyPath" & robocopy.exe $signatureFilePath $UpdateCopyPath mpam-fe.exe mpam-d.exe nis_full.exe /R:5 /W:10 /V /FP /BYTES 2>&1 } } function Update-DefenderSignature { [CmdletBinding()] param ( [Parameter(Mandatory = $true)] [string[]] $NodeSet, [Parameter(Mandatory = $true)] [PSCredential] $Credential, [Parameter(Mandatory = $true)] [string] $UpdatePath, [Parameter(Mandatory = $false)] [string] $CsvLocalPath ) Trace-Execution "Starting to update Windows Defender signature on $($NodeSet -join ',')" if (-not [System.string]::IsNullOrEmpty($CsvLocalPath)) { $UpdatePath = $CsvLocalPath } Trace-Execution "Use update path $UpdatePath" try { # NOTE: Since "$env:ProgramFiles\Windows Defender\MpCmdRun.exe" reaches out for a resource on the local network, # hence the use of Authentication="Credssp" to delegate user's credentials to the target server for remote authentication. Invoke-Command -AsJob -ComputerName $NodeSet -Credential $Credential -Authentication Credssp -ErrorAction SilentlyContinue -ScriptBlock { # Give update process enough attempts to recover from errors (if any) $attempts = 5 $sleepSeconds = 10 # Summary of all attempts for troubleshooting purposes $summary = "" while ($attempts -gt 0) { # Send error output to stdout to get support for detailed tracing $status = & "$env:ProgramFiles\Windows Defender\MpCmdRun.exe" -SignatureUpdate -UNC -Path "$using:UpdatePath" 2>&1 | Out-string # Append current results to the summary $summary += $status + "`n" if ($status -notmatch "ERROR") { break } $attempts-- Start-Sleep -Second $sleepSeconds $sleepSeconds += 15 } # Send back resulting message, eq: # - [n25r0402-DC01]: Signature update started ... # Signature update finished. # or # - [n25r0402-DC01]: Signature update started ... # ERROR: Signature Update failed with hr=80070002 # CmdTool: Failed with hr = 0x80070002. Check C:\Users\<...>\AppData\Local\Temp\1\MpCmdRun.log for more information return "[$env:ComputerName]: {0}" -f $summary } | Wait-Job -Timeout 1800 | Receive-Job | Write-Verbose -Verbose } catch { Trace-Warning "Failed to update Windows Defender signature: $_" } Trace-Execution "Done updating Windows Defender signature" } <# .Synopsis Gets Windows Defender update signatures share path which is configured in Defender for auto-update of signatures #> function Get-DefenderUpdateSignaturesPath { [CmdletBinding()] param ( [Parameter(Mandatory = $true)] [CloudEngine.Configurations.EceInterfaceParameters] $Parameters ) $ErrorActionPreference = 'Stop' $windefendRole = $Parameters.Roles["WindowsDefender"].PublicConfiguration $clusterName = Get-ManagementClusterName $Parameters $defenderSignatures = $windefendRole.PublicInfo.UpdatePackagePaths.UpdateDefenderSignatureFilesFolder # \\SU1FileServer\SU1_Public\DefenderUpdates $defenderUpdatesPath = Get-SharePath $Parameters $defenderSignatures.Path $clusterName return $defenderUpdatesPath } function Test-DefenderEngineVersion { [CmdletBinding()] param ( [Parameter(Mandatory = $true)] [string[]] $NodeSet, [Parameter(Mandatory = $true)] [PSCredential] $Credential ) Trace-Execution "Validate Defender Engine version on hosts $($NodeSet -join ',')" $errorNodes = @() foreach ($node in $NodeSet) { $engineVersion = Invoke-Command $node -Credential $Credential { Get-MpComputerStatus | Select-Object -ExpandProperty AMEngineVersion } if ([System.Version]$engineVersion -lt [System.Version]"1.1.17300.4") { Trace-Execution "[$node]: Defender engine version is $engineVersion" $errorNodes += $node } } if ($errorNodes.Count -gt 0) { Trace-Error "RTP cannot be enabled on $($errorNodes -join ',') because Defender Engine is not updated to 1.1.17300.4" } } Export-ModuleMember -Function Get-DefenderUpdateSignaturesPath Export-ModuleMember -Function Apply-DefenderUpdate Export-ModuleMember -Function Update-DefenderSignature Export-ModuleMember -Function Update-DefenderPlatform Export-ModuleMember -Function Set-DefenderSignatureFile Export-ModuleMember -Function Test-DefenderEngineVersion # SIG # Begin signature block # MIInlgYJKoZIhvcNAQcCoIInhzCCJ4MCAQExDzANBglghkgBZQMEAgEFADB5Bgor # BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG # KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCCaCbvvjaGFnFvy # 0NE90GQdU8504QGfYoreztk6CE22QqCCDXYwggX0MIID3KADAgECAhMzAAADTrU8 # esGEb+srAAAAAANOMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD # VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy # b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p # bmcgUENBIDIwMTEwHhcNMjMwMzE2MTg0MzI5WhcNMjQwMzE0MTg0MzI5WjB0MQsw # CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u # ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy # b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB # AQDdCKiNI6IBFWuvJUmf6WdOJqZmIwYs5G7AJD5UbcL6tsC+EBPDbr36pFGo1bsU # p53nRyFYnncoMg8FK0d8jLlw0lgexDDr7gicf2zOBFWqfv/nSLwzJFNP5W03DF/1 # 1oZ12rSFqGlm+O46cRjTDFBpMRCZZGddZlRBjivby0eI1VgTD1TvAdfBYQe82fhm # WQkYR/lWmAK+vW/1+bO7jHaxXTNCxLIBW07F8PBjUcwFxxyfbe2mHB4h1L4U0Ofa # +HX/aREQ7SqYZz59sXM2ySOfvYyIjnqSO80NGBaz5DvzIG88J0+BNhOu2jl6Dfcq # jYQs1H/PMSQIK6E7lXDXSpXzAgMBAAGjggFzMIIBbzAfBgNVHSUEGDAWBgorBgEE # AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUnMc7Zn/ukKBsBiWkwdNfsN5pdwAw # RQYDVR0RBD4wPKQ6MDgxHjAcBgNVBAsTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEW # MBQGA1UEBRMNMjMwMDEyKzUwMDUxNjAfBgNVHSMEGDAWgBRIbmTlUAXTgqoXNzci # tW2oynUClTBUBgNVHR8ETTBLMEmgR6BFhkNodHRwOi8vd3d3Lm1pY3Jvc29mdC5j # b20vcGtpb3BzL2NybC9NaWNDb2RTaWdQQ0EyMDExXzIwMTEtMDctMDguY3JsMGEG # CCsGAQUFBwEBBFUwUzBRBggrBgEFBQcwAoZFaHR0cDovL3d3dy5taWNyb3NvZnQu # Y29tL3BraW9wcy9jZXJ0cy9NaWNDb2RTaWdQQ0EyMDExXzIwMTEtMDctMDguY3J0 # MAwGA1UdEwEB/wQCMAAwDQYJKoZIhvcNAQELBQADggIBAD21v9pHoLdBSNlFAjmk # mx4XxOZAPsVxxXbDyQv1+kGDe9XpgBnT1lXnx7JDpFMKBwAyIwdInmvhK9pGBa31 # TyeL3p7R2s0L8SABPPRJHAEk4NHpBXxHjm4TKjezAbSqqbgsy10Y7KApy+9UrKa2 # kGmsuASsk95PVm5vem7OmTs42vm0BJUU+JPQLg8Y/sdj3TtSfLYYZAaJwTAIgi7d # hzn5hatLo7Dhz+4T+MrFd+6LUa2U3zr97QwzDthx+RP9/RZnur4inzSQsG5DCVIM # pA1l2NWEA3KAca0tI2l6hQNYsaKL1kefdfHCrPxEry8onJjyGGv9YKoLv6AOO7Oh # JEmbQlz/xksYG2N/JSOJ+QqYpGTEuYFYVWain7He6jgb41JbpOGKDdE/b+V2q/gX # UgFe2gdwTpCDsvh8SMRoq1/BNXcr7iTAU38Vgr83iVtPYmFhZOVM0ULp/kKTVoir # IpP2KCxT4OekOctt8grYnhJ16QMjmMv5o53hjNFXOxigkQWYzUO+6w50g0FAeFa8 # 5ugCCB6lXEk21FFB1FdIHpjSQf+LP/W2OV/HfhC3uTPgKbRtXo83TZYEudooyZ/A # Vu08sibZ3MkGOJORLERNwKm2G7oqdOv4Qj8Z0JrGgMzj46NFKAxkLSpE5oHQYP1H # tPx1lPfD7iNSbJsP6LiUHXH1MIIHejCCBWKgAwIBAgIKYQ6Q0gAAAAAAAzANBgkq # hkiG9w0BAQsFADCBiDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24x # EDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlv # bjEyMDAGA1UEAxMpTWljcm9zb2Z0IFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5 # IDIwMTEwHhcNMTEwNzA4MjA1OTA5WhcNMjYwNzA4MjEwOTA5WjB+MQswCQYDVQQG # EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG # A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSgwJgYDVQQDEx9NaWNyb3NvZnQg # Q29kZSBTaWduaW5nIFBDQSAyMDExMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC # CgKCAgEAq/D6chAcLq3YbqqCEE00uvK2WCGfQhsqa+laUKq4BjgaBEm6f8MMHt03 # a8YS2AvwOMKZBrDIOdUBFDFC04kNeWSHfpRgJGyvnkmc6Whe0t+bU7IKLMOv2akr # rnoJr9eWWcpgGgXpZnboMlImEi/nqwhQz7NEt13YxC4Ddato88tt8zpcoRb0Rrrg # OGSsbmQ1eKagYw8t00CT+OPeBw3VXHmlSSnnDb6gE3e+lD3v++MrWhAfTVYoonpy # 4BI6t0le2O3tQ5GD2Xuye4Yb2T6xjF3oiU+EGvKhL1nkkDstrjNYxbc+/jLTswM9 # sbKvkjh+0p2ALPVOVpEhNSXDOW5kf1O6nA+tGSOEy/S6A4aN91/w0FK/jJSHvMAh # dCVfGCi2zCcoOCWYOUo2z3yxkq4cI6epZuxhH2rhKEmdX4jiJV3TIUs+UsS1Vz8k # A/DRelsv1SPjcF0PUUZ3s/gA4bysAoJf28AVs70b1FVL5zmhD+kjSbwYuER8ReTB # w3J64HLnJN+/RpnF78IcV9uDjexNSTCnq47f7Fufr/zdsGbiwZeBe+3W7UvnSSmn # Eyimp31ngOaKYnhfsi+E11ecXL93KCjx7W3DKI8sj0A3T8HhhUSJxAlMxdSlQy90 # lfdu+HggWCwTXWCVmj5PM4TasIgX3p5O9JawvEagbJjS4NaIjAsCAwEAAaOCAe0w # ggHpMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRIbmTlUAXTgqoXNzcitW2o # ynUClTAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNVHQ8EBAMCAYYwDwYD # VR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBRyLToCMZBDuRQFTuHqp8cx0SOJNDBa # BgNVHR8EUzBRME+gTaBLhklodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpL2Ny # bC9wcm9kdWN0cy9NaWNSb29DZXJBdXQyMDExXzIwMTFfMDNfMjIuY3JsMF4GCCsG # AQUFBwEBBFIwUDBOBggrBgEFBQcwAoZCaHR0cDovL3d3dy5taWNyb3NvZnQuY29t # L3BraS9jZXJ0cy9NaWNSb29DZXJBdXQyMDExXzIwMTFfMDNfMjIuY3J0MIGfBgNV # HSAEgZcwgZQwgZEGCSsGAQQBgjcuAzCBgzA/BggrBgEFBQcCARYzaHR0cDovL3d3 # dy5taWNyb3NvZnQuY29tL3BraW9wcy9kb2NzL3ByaW1hcnljcHMuaHRtMEAGCCsG # AQUFBwICMDQeMiAdAEwAZQBnAGEAbABfAHAAbwBsAGkAYwB5AF8AcwB0AGEAdABl # AG0AZQBuAHQALiAdMA0GCSqGSIb3DQEBCwUAA4ICAQBn8oalmOBUeRou09h0ZyKb # C5YR4WOSmUKWfdJ5DJDBZV8uLD74w3LRbYP+vj/oCso7v0epo/Np22O/IjWll11l # hJB9i0ZQVdgMknzSGksc8zxCi1LQsP1r4z4HLimb5j0bpdS1HXeUOeLpZMlEPXh6 # I/MTfaaQdION9MsmAkYqwooQu6SpBQyb7Wj6aC6VoCo/KmtYSWMfCWluWpiW5IP0 # wI/zRive/DvQvTXvbiWu5a8n7dDd8w6vmSiXmE0OPQvyCInWH8MyGOLwxS3OW560 # STkKxgrCxq2u5bLZ2xWIUUVYODJxJxp/sfQn+N4sOiBpmLJZiWhub6e3dMNABQam # ASooPoI/E01mC8CzTfXhj38cbxV9Rad25UAqZaPDXVJihsMdYzaXht/a8/jyFqGa # J+HNpZfQ7l1jQeNbB5yHPgZ3BtEGsXUfFL5hYbXw3MYbBL7fQccOKO7eZS/sl/ah # XJbYANahRr1Z85elCUtIEJmAH9AAKcWxm6U/RXceNcbSoqKfenoi+kiVH6v7RyOA # 9Z74v2u3S5fi63V4GuzqN5l5GEv/1rMjaHXmr/r8i+sLgOppO6/8MO0ETI7f33Vt # Y5E90Z1WTk+/gFcioXgRMiF670EKsT/7qMykXcGhiJtXcVZOSEXAQsmbdlsKgEhr # /Xmfwb1tbWrJUnMTDXpQzTGCGXYwghlyAgEBMIGVMH4xCzAJBgNVBAYTAlVTMRMw # EQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVN # aWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNp # Z25pbmcgUENBIDIwMTECEzMAAANOtTx6wYRv6ysAAAAAA04wDQYJYIZIAWUDBAIB # BQCgga4wGQYJKoZIhvcNAQkDMQwGCisGAQQBgjcCAQQwHAYKKwYBBAGCNwIBCzEO # MAwGCisGAQQBgjcCARUwLwYJKoZIhvcNAQkEMSIEIL/5KpRwQqyaCj8zZiyplrHm # LqsZ5ArpC/62+NN8LhOXMEIGCisGAQQBgjcCAQwxNDAyoBSAEgBNAGkAYwByAG8A # cwBvAGYAdKEagBhodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20wDQYJKoZIhvcNAQEB # BQAEggEAihumItIa+NYfaeB4EWT4BlzY/bq/8cYCiuL7TyBOLQtA6Vn7BomlXZuh # J0gcAKDpsyUpSYdOCoDPavwdYEnNOYN/YTcZ7BSaSSr+RMZyXtt7REG4uNMoDPyH # 7eLgOM0KSIyFUdPgYHTHR6n3jo1q9c8bhrpDQz+fr8hZsAQlaPd1ha1djM7dvqLo # lvzzg3CYMYuU0lvb1joEtMcnY5AZMCZKw7IQ47Li4iEX0zkevKPJzz3GhetEAGpx # k57zxFLHDDvJrHGPNm759kPjkEJbL2ADEvjhOTPi2rZi4ToIX+Xsa2cSFCb+tFm3 # ggH0h9f5edRkUiC1NljEpVFY4zCZb6GCFwAwghb8BgorBgEEAYI3AwMBMYIW7DCC # FugGCSqGSIb3DQEHAqCCFtkwghbVAgEDMQ8wDQYJYIZIAWUDBAIBBQAwggFRBgsq # hkiG9w0BCRABBKCCAUAEggE8MIIBOAIBAQYKKwYBBAGEWQoDATAxMA0GCWCGSAFl # AwQCAQUABCCHbQ5TSboU2TDgIgw11weijSLM8XqQgKpt+cUU9FxNkQIGZIt2r3jA # GBMyMDIzMDcxMzE5MjUyNC4zMjdaMASAAgH0oIHQpIHNMIHKMQswCQYDVQQGEwJV # UzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UE # ChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxNaWNyb3NvZnQgQW1l # cmljYSBPcGVyYXRpb25zMSYwJAYDVQQLEx1UaGFsZXMgVFNTIEVTTjo4QTgyLUUz # NEYtOUREQTElMCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAgU2VydmljZaCC # EVcwggcMMIIE9KADAgECAhMzAAABwvp9hw5UU0ckAAEAAAHCMA0GCSqGSIb3DQEB # CwUAMHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQH # EwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNV # BAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwMB4XDTIyMTEwNDE5MDEy # OFoXDTI0MDIwMjE5MDEyOFowgcoxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNo # aW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29y # cG9yYXRpb24xJTAjBgNVBAsTHE1pY3Jvc29mdCBBbWVyaWNhIE9wZXJhdGlvbnMx # JjAkBgNVBAsTHVRoYWxlcyBUU1MgRVNOOjhBODItRTM0Ri05RERBMSUwIwYDVQQD # ExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEF # AAOCAg8AMIICCgKCAgEAtfEJvPKOSFn3petp9wco29/UoJmDDyHpmmpRruRVWBF3 # 7By0nvrszScOV/K+LvHWWWC4S9cme4P63EmNhxTN/k2CgPnIt/sDepyACSkya4uk # qc1sT2I+0Uod0xjy9K2+jLH8UNb9vM3yH/vCYnaJSUqgtqZUly82pgYSB6tDeZIY # cQoOhTI+M1HhRxmxt8RaAKZnDnXgLdkhnIYDJrRkQBpIgahtExtTuOkmVp2y8YCo # FPaUhUD2JT6hPiDD7qD7A77PLpFzD2QFmNezT8aHHhKsVBuJMLPXZO1k14j0/k68 # DZGts1YBtGegXNkyvkXSgCCxt3Q8WF8laBXbDnhHaDLBhCOBaZQ8jqcFUx8ZJSXQ # 8sbvEnmWFZmgM93B9P/JTFTF6qBVFMDd/V0PBbRQC2TctZH4bfv+jyWvZOeFz5yl # tPLRxUqBjv4KHIaJgBhU2ntMw4H0hpm4B7s6LLxkTsjLsajjCJI8PiKi/mPKYERd # mRyvFL8/YA/PdqkIwWWg2Tj5tyutGFtfVR+6GbcCVhijjy7l7otxa/wYVSX66Lo0 # alaThjc+uojVwH4psL+A1qvbWDB9swoKla20eZubw7fzCpFe6qs++G01sst1SaA0 # GGmzuQCd04Ue1eH3DFRDZPsN+aWvA455Qmd9ZJLGXuqnBo4BXwVxdWZNj6+b4P8C # AwEAAaOCATYwggEyMB0GA1UdDgQWBBRGsYh76V41aUCRXE9WvD++sIfGajAfBgNV # HSMEGDAWgBSfpxVdAF5iXYP05dJlpxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5o # dHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBU # aW1lLVN0YW1wJTIwUENBJTIwMjAxMCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwG # CCsGAQUFBzAChlBodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRz # L01pY3Jvc29mdCUyMFRpbWUtU3RhbXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNV # HRMBAf8EAjAAMBMGA1UdJQQMMAoGCCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4IC # AQARdu3dCkcLLPfaJ3rR1M7D9jWHvneffkmXvFIJtqxHGWM1oqAh+bqxpI7HZz2M # eNhh1Co+E9AabOgj94Sp1seXxdWISJ9lRGaAAWzA873aTB3/SjwuGqbqQuAvUzBF # CO40UJ9anpavkpq/0nDqLb7XI5H+nsmjFyu8yqX1PMmnb4s1fbc/F30ijaASzqJ+ # p5rrgYWwDoMihM5bF0Y0riXihwE7eTShak/EwcxRmG3h+OT+Ox8KOLuLqwFFl1si # TeQCp+YSt4J1tWXapqGJDlCbYr3Rz8+ryTS8CoZAU0vSHCOQcq12Th81p7QlHZv9 # cTRDhZg2TVyg8Gx3X6mkpNOXb56QUohI3Sn39WQJwjDn74J0aVYMai8mY6/WOurK # MKEuSNhCiei0TK68vOY7sH0XEBWnRSbVefeStDo94UIUVTwd2HmBEfY8kfryp3Rl # A9A4FvfUvDHMaF9BtvU/pK6d1CdKG29V0WN3uVzfYETJoRpjLYFGq0MvK6QVMmuN # xk3bCRfj1acSWee14UGjglxWwvyOfNJe3pxcNFOd8Hhyp9d4AlQGVLNotaFvopgP # LeJwUT3dl5VaAAhMwvIFmqwsffQy93morrprcnv74r5g3ejC39NYpFEoy+qmzLW1 # jFa1aXE2Xb/KZw2yawqldSp0Hu4VEkjGxFNc+AztIUWwmTCCB3EwggVZoAMCAQIC # EzMAAAAVxedrngKbSZkAAAAAABUwDQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYT # AlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYD # VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBS # b290IENlcnRpZmljYXRlIEF1dGhvcml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoX # DTMwMDkzMDE4MzIyNVowfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0 # b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3Jh # dGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIi # MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC # 0/3unAcH0qlsTnXIyjVX9gF/bErg4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VG # Iwy1jRPPdzLAEBjoYH1qUoNEt6aORmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP # 2CZTfDlhAnrEqv1yaa8dq6z2Nr41JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/P # XfT+jlPP1uyFVk3v3byNpOORj7I5LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361 # VI/c+gVVmG1oO5pGve2krnopN6zL64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwB # Sru+cakXW2dg3viSkR4dPf0gz3N9QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9 # X4C626p+Nuw2TPYrbqgSUei/BQOj0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269e # wvPV2HM9Q07BMzlMjgK8QmguEOqEUUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDw # wvoSCtdjbwzJNmSLW6CmgyFdXzB0kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr # 9lxSUV0S2yW6r1AFemzFER1y7435UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+e # FnJpxq57t7c+auIurQIDAQABo4IB3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAj # BgkrBgEEAYI3FQIEFgQUKqdS/mTEmr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+n # FV0AXmJdg/Tl0mWnG1M1GelyMFwGA1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEw # PwYIKwYBBQUHAgEWM2h0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9j # cy9SZXBvc2l0b3J5Lmh0bTATBgNVHSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3 # FAIEDB4KAFMAdQBiAEMAQTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAf # BgNVHSMEGDAWgBTV9lbLj+iiXGJo0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBH # hkVodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNS # b29DZXJBdXRfMjAxMC0wNi0yMy5jcmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUF # BzAChj5odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0Nl # ckF1dF8yMDEwLTA2LTIzLmNydDANBgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4Swf # ZwExJFvhnnJL/Klv6lwUtj5OR2R4sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTC # j/ts0aGUGCLu6WZnOlNN3Zi6th542DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu # 2D9IdQHZGN5tggz1bSNU5HhTdSRXud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/ # GbYSEhFdPSfgQJY4rPf5KYnDvBewVIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3D # YXMuLGt7bj8sCXgU6ZGyqVvfSaN0DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbO # xnT99kxybxCrdTDFNLB62FD+CljdQDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqO # Cb2zAVdJVGTZc9d/HltEAY5aGZFrDZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I # 6IleT53S0Ex2tVdUCbFpAUR+fKFhbHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0 # zj6lMVGEvL8CwYKiexcdFYmNcP7ntdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaM # mdbhIurwJ0I9JZTmdHRbatGePu1+oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNT # TY3ugm2lBRDBcQZqELQdVTNYs6FwZvKhggLOMIICNwIBATCB+KGB0KSBzTCByjEL # MAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1v # bmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjElMCMGA1UECxMcTWlj # cm9zb2Z0IEFtZXJpY2EgT3BlcmF0aW9uczEmMCQGA1UECxMdVGhhbGVzIFRTUyBF # U046OEE4Mi1FMzRGLTlEREExJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1w # IFNlcnZpY2WiIwoBATAHBgUrDgMCGgMVAMp1N1VLhPMvWXEoZfmF4apZlnRUoIGD # MIGApH4wfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNV # BAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQG # A1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEF # BQACBQDoWjT6MCIYDzIwMjMwNzEzMTYzMTU0WhgPMjAyMzA3MTQxNjMxNTRaMHcw # PQYKKwYBBAGEWQoEATEvMC0wCgIFAOhaNPoCAQAwCgIBAAICB6ACAf8wBwIBAAIC # EUAwCgIFAOhbhnoCAQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAK # MAgCAQACAwehIKEKMAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQAwGuz0th9l # Q6dJmOa2kWEGRglxQMx9HcGuMTp2mfEJysuQ2JS3T24byHjTZUC6pbf4CUPa+jVf # tZQl0akyp9VqaTJpvTvwYDhFMG2w4s2EoETd0tieBThJszVkAkRqFVGFQ7DO7Wg1 # 2Y9kGxEoCsxXhFvqvByv5LTJsdRhiJu0TzGCBA0wggQJAgEBMIGTMHwxCzAJBgNV # BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w # HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m # dCBUaW1lLVN0YW1wIFBDQSAyMDEwAhMzAAABwvp9hw5UU0ckAAEAAAHCMA0GCWCG # SAFlAwQCAQUAoIIBSjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZI # hvcNAQkEMSIEIBeQhnp5lrlXQK5MmXkfri5k9kDC8B+gJW5fS3Fv3ZGIMIH6Bgsq # hkiG9w0BCRACLzGB6jCB5zCB5DCBvQQgypNgW8fpsMV57r0F5beUuiEVOVe4Bdma # O+e28mGDUBYwgZgwgYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGlu # Z3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBv # cmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAIT # MwAAAcL6fYcOVFNHJAABAAABwjAiBCB4HmZwFn4ys56cLZUvex2Wzx/tdfu8PkEm # UTlNX65NRzANBgkqhkiG9w0BAQsFAASCAgBeB6bS04RB7MkqTSFCSNBlpB+XzezF # v67N57wEKEoC1Hrg3gZWTuUuTLfSkx5ZlQ62krBeP50bpKAoJz5VQjBfsHyOwA0+ # vx/JV9yDDVlfYk87KZnfgMmBsfVocNDv592McxtXZdd/xTgjNARibFKYcNPAoGQl # FHbiJtlcOBacm0lptI2N7lrRA7LNSnOcV+RsMFpkiTigtHOmOtU0I2YbsFG2cLhq # eeKfjZrzCMI2jKP+cTkyk2ubuaf0OTUkgP9Sr9c7OP0KQzwnY33k3jPUroRSTir0 # SVNOF24cxyEJ0ZKp8xUDEzKoYCQbO08dYHghT/8m2muPW/+qYhye6Z595Y0545al # 6BR3T3zXYvxpb7CpzVi+OS+AXV/zEKBaiBkKvEaKjZ3CokYQVeezAuoMCi1LMbeD # 3Ey+NHasnALd5Gva5MRMXelKUrPEpw9NewWRs9Rf3Q98HEYZOaa4OPsxVuCT7JrI # qwoK9G1PBn34AzxZcg6bHf/+ZhjgUlctxvLntFwiGSfsA/9mVXS4FlcEYj+8LW8y # Lvu4itjoAPER0nTajLqeWBgAunEOKo6DAfcghwvRfOJHwDh3dI5uC4SikpiaDfrX # 5myp7eIf4ZOC6JLIBN4+wWcFEb+apz3nC7riABUgL/YzuXzci2BLBanEFtj6dcNM # /YYPzUfu66AXPw== # SIG # End signature block |