functions/New-DbaAgentJobStep.ps1
function New-DbaAgentJobStep { <# .SYNOPSIS New-DbaAgentJobStep creates a new job step for a job .DESCRIPTION New-DbaAgentJobStep creates a new job in the SQL Server Agent for a specific job .PARAMETER SqlInstance The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2000 or greater. .PARAMETER SqlCredential Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. For MFA support, please use Connect-DbaInstance. .PARAMETER Job The name of the job to which to add the step. .PARAMETER StepId The sequence identification number for the job step. Step identification numbers start at 1 and increment without gaps. .PARAMETER StepName The name of the step. .PARAMETER SubSystem The subsystem used by the SQL Server Agent service to execute command. Allowed values 'ActiveScripting','AnalysisCommand','AnalysisQuery','CmdExec','Distribution','LogReader','Merge','PowerShell','QueueReader','Snapshot','Ssis','TransactSql' The default is 'TransactSql' .PARAMETER SubSystemServer The subsystems AnalysisScripting, AnalysisCommand, AnalysisQuery ned the server property to be able to apply .PARAMETER Command The commands to be executed by SQLServerAgent service through subsystem. .PARAMETER CmdExecSuccessCode The value returned by a CmdExec subsystem command to indicate that command executed successfully. .PARAMETER OnSuccessAction The action to perform if the step succeeds. Allowed values "QuitWithSuccess" (default), "QuitWithFailure", "GoToNextStep", "GoToStep". The text value van either be lowercase, uppercase or something in between as long as the text is correct. .PARAMETER OnSuccessStepId The ID of the step in this job to execute if the step succeeds and OnSuccessAction is "GoToStep". .PARAMETER OnFailAction The action to perform if the step fails. Allowed values "QuitWithSuccess" (default), "QuitWithFailure", "GoToNextStep", "GoToStep". The text value van either be lowercase, uppercase or something in between as long as the text is correct. .PARAMETER OnFailStepId The ID of the step in this job to execute if the step fails and OnFailAction is "GoToStep". .PARAMETER Database The name of the database in which to execute a Transact-SQL step. The default is 'master'. .PARAMETER DatabaseUser The name of the user account to use when executing a Transact-SQL step. .PARAMETER RetryAttempts The number of retry attempts to use if this step fails. The default is 0. .PARAMETER RetryInterval The amount of time in minutes between retry attempts. The default is 0. .PARAMETER OutputFileName The name of the file in which the output of this step is saved. .PARAMETER Insert This switch indicates the new step is inserted at the specified stepid. All following steps will have their IDs incremented by, and success/failure next steps incremented accordingly .PARAMETER Flag Sets the flag(s) for the job step. Flag Description ---------------------------------------------------------------------------- AppendAllCmdExecOutputToJobHistory Job history, including command output, is appended to the job history file. AppendToJobHistory Job history is appended to the job history file. AppendToLogFile Job history is appended to the SQL Server log file. AppendToTableLog Job history is appended to a log table. LogToTableWithOverwrite Job history is written to a log table, overwriting previous contents. None Job history is not appended to a file. ProvideStopProcessEvent Job processing is stopped. .PARAMETER ProxyName The name of the proxy that the job step runs as. .PARAMETER WhatIf Shows what would happen if the command were to run. No actions are actually performed. .PARAMETER Confirm Prompts you for confirmation before executing any changing operations within the command. .PARAMETER Force The force parameter will ignore some errors in the parameters and assume defaults. .PARAMETER EnableException By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch. .NOTES Tags: Agent, Job, JobStep Author: Sander Stad (@sqlstad), sqlstad.nl Website: https://dbatools.io Copyright: (c) 2018 by dbatools, licensed under MIT License: MIT https://opensource.org/licenses/MIT .LINK https://dbatools.io/New-DbaAgentJobStep .EXAMPLE PS C:\> New-DbaAgentJobStep -SqlInstance sql1 -Job Job1 -StepName Step1 Create a step in "Job1" with the name Step1 with the default subsystem TransactSql. .EXAMPLE PS C:\> New-DbaAgentJobStep -SqlInstance sql1 -Job Job1 -StepName Step1 -Database msdb Create a step in "Job1" with the name Step1 where the database will the msdb .EXAMPLE PS C:\> New-DbaAgentJobStep -SqlInstance sql1, sql2, sql3 -Job Job1 -StepName Step1 -Database msdb Create a step in "Job1" with the name Step1 where the database will the "msdb" for multiple servers .EXAMPLE PS C:\> New-DbaAgentJobStep -SqlInstance sql1, sql2, sql3 -Job Job1, Job2, 'Job Three' -StepName Step1 -Database msdb Create a step in "Job1" with the name Step1 where the database will the "msdb" for multiple servers for multiple jobs .EXAMPLE PS C:\> sql1, sql2, sql3 | New-DbaAgentJobStep -Job Job1 -StepName Step1 -Database msdb Create a step in "Job1" with the name Step1 where the database will the "msdb" for multiple servers using pipeline .EXAMPLE PS C:\> New-DbaAgentJobStep -SqlInstance sq1 -Job Job1 -StepName StepA -Database msdb -StepId 2 -Insert Assuming Job1 already has steps Step1 and Step2, will create a new step Step A and set the step order as Step1, StepA, Step2 Internal StepIds will be updated, and any specific OnSuccess/OnFailure step references will also be updated #> [CmdletBinding(SupportsShouldProcess, ConfirmImpact = "Low")] param ( [parameter(Mandatory, ValueFromPipeline)] [DbaInstanceParameter[]]$SqlInstance, [PSCredential]$SqlCredential, [Parameter(Mandatory)] [ValidateNotNullOrEmpty()] [object[]]$Job, [int]$StepId, [Parameter(Mandatory)] [ValidateNotNullOrEmpty()] [string]$StepName, [ValidateSet('ActiveScripting', 'AnalysisCommand', 'AnalysisQuery', 'CmdExec', 'Distribution', 'LogReader', 'Merge', 'PowerShell', 'QueueReader', 'Snapshot', 'Ssis', 'TransactSql')] [string]$Subsystem = 'TransactSql', [string]$SubsystemServer, [string]$Command, [int]$CmdExecSuccessCode, [ValidateSet('QuitWithSuccess', 'QuitWithFailure', 'GoToNextStep', 'GoToStep')] [string]$OnSuccessAction = 'QuitWithSuccess', [int]$OnSuccessStepId = 0, [ValidateSet('QuitWithSuccess', 'QuitWithFailure', 'GoToNextStep', 'GoToStep')] [string]$OnFailAction = 'QuitWithFailure', [int]$OnFailStepId = 0, [object]$Database, [string]$DatabaseUser, [int]$RetryAttempts, [int]$RetryInterval, [string]$OutputFileName, [switch]$Insert, [ValidateSet('AppendAllCmdExecOutputToJobHistory', 'AppendToJobHistory', 'AppendToLogFile', 'AppendToTableLog', 'LogToTableWithOverwrite', 'None', 'ProvideStopProcessEvent')] [string[]]$Flag, [string]$ProxyName, [switch]$Force, [switch]$EnableException ) begin { if ($Force) { $ConfirmPreference = 'none' } # Check the parameter on success step id if (($OnSuccessAction -ne 'GoToStep') -and ($OnSuccessStepId -ge 1)) { Stop-Function -Message "Parameter OnSuccessStepId can only be used with OnSuccessAction 'GoToStep'." -Target $SqlInstance return } # Check the parameter on fail step id if (($OnFailAction -ne 'GoToStep') -and ($OnFailStepId -ge 1)) { Stop-Function -Message "Parameter OnFailStepId can only be used with OnFailAction 'GoToStep'." -Target $SqlInstance return } if ($Subsystem -in 'AnalysisScripting', 'AnalysisCommand', 'AnalysisQuery') { if (-not $SubsystemServer) { Stop-Function -Message "Please enter the server value using -SubSystemServer for subsystem $Subsystem." -Target $Subsystem return } } } process { if (Test-FunctionInterrupt) { return } foreach ($instance in $SqlInstance) { try { $Server = Connect-DbaInstance -SqlInstance $instance -SqlCredential $SqlCredential } catch { Stop-Function -Message "Failure" -Category ConnectionError -ErrorRecord $_ -Target $instance -Continue } foreach ($j in $Job) { # Check if the job exists if ($Server.JobServer.Jobs.Name -notcontains $j) { Write-Message -Message "Job $j doesn't exist on $instance" -Level Warning } else { # Create the job step object try { # Get the job from the server again since fields on the job object may have changed $currentJob = $Server.JobServer.Jobs[$j] # Create the job step $jobStep = New-Object Microsoft.SqlServer.Management.Smo.Agent.JobStep # Set the job where the job steps belongs to $jobStep.Parent = $currentJob } catch { Stop-Function -Message "Something went wrong creating the job step" -Target $instance -ErrorRecord $_ -Continue } #region job step options # Setting the options for the job step if ($StepName) { # Check if the step already exists if ($currentJob.JobSteps.Name -notcontains $StepName) { $jobStep.Name = $StepName } elseif (($currentJob.JobSteps.Name -contains $StepName) -and $Force) { Write-Message -Message "Step $StepName already exists for job. Force is used. Removing existing step" -Level Verbose # Remove the job step based on the name Remove-DbaAgentJobStep -SqlInstance $instance -Job $currentJob -StepName $StepName -SqlCredential $SqlCredential # Set the name job step object $jobStep.Name = $StepName } else { Stop-Function -Message "The step name $StepName already exists for job $currentJob" -Target $instance -Continue } } # If the step id need to be set if ($StepId) { # Check if the used step id is already in place if ($currentJob.JobSteps.ID -notcontains $StepId) { Write-Message -Message "Setting job step step id to $StepId" -Level Verbose $jobStep.ID = $StepId } elseif (($currentJob.JobSteps.ID -contains $StepID) -and $Insert) { Write-Message -Message "Inserting step as step $StepID" -Level Verbose foreach ($tStep in $currentJob.JobSteps) { if ($tStep.Id -ge $Stepid) { $tStep.Id = ($tStep.ID) + 1 } if ($tStep.OnFailureStepID -ge $StepId -and $tStep.OnFailureStepId -ne 0) { $tStep.OnFailureStepID = ($tStep.OnFailureStepID) + 1 } } $jobStep.ID = $StepId } elseif (($currentJob.JobSteps.ID -contains $StepId) -and $Force) { Write-Message -Message "Step ID $StepId already exists for job. Force is used. Removing existing step" -Level Verbose # Remove the existing job step $StepName = ($currentJob.JobSteps | Where-Object { $_.ID -eq 1 }).Name Remove-DbaAgentJobStep -SqlInstance $instance -Job $currentJob -StepName $StepName -SqlCredential $SqlCredential # Set the ID job step object $jobStep.ID = $StepId } else { Stop-Function -Message "The step id $StepId already exists for job $currentJob" -Target $instance -Continue } } else { # Get the job step count $jobStep.ID = $currentJob.JobSteps.Count + 1 } if ($Subsystem) { Write-Message -Message "Setting job step subsystem to $Subsystem" -Level Verbose $jobStep.Subsystem = $Subsystem } if ($SubsystemServer) { Write-Message -Message "Setting job step subsystem server to $SubsystemServer" -Level Verbose $jobStep.Server = $SubsystemServer } if ($Command) { Write-Message -Message "Setting job step command to $Command" -Level Verbose $jobStep.Command = $Command } if ($CmdExecSuccessCode) { Write-Message -Message "Setting job step command exec success code to $CmdExecSuccessCode" -Level Verbose $jobStep.CommandExecutionSuccessCode = $CmdExecSuccessCode } if ($OnSuccessAction) { Write-Message -Message "Setting job step success action to $OnSuccessAction" -Level Verbose $jobStep.OnSuccessAction = $OnSuccessAction } if ($OnSuccessStepId) { Write-Message -Message "Setting job step success step id to $OnSuccessStepId" -Level Verbose $jobStep.OnSuccessStep = $OnSuccessStepId } if ($OnFailAction) { Write-Message -Message "Setting job step fail action to $OnFailAction" -Level Verbose $jobStep.OnFailAction = $OnFailAction } if ($OnFailStepId) { Write-Message -Message "Setting job step fail step id to $OnFailStepId" -Level Verbose $jobStep.OnFailStep = $OnFailStepId } if ($Database) { # Check if the database is present on the server if ($Server.Databases.Name -contains $Database) { Write-Message -Message "Setting job step database name to $Database" -Level Verbose $jobStep.DatabaseName = $Database } else { Stop-Function -Message "The database is not present on instance $instance." -Target $instance -Continue } } if ($DatabaseUser -and $DatabaseName) { # Check if the username is present in the database if ($Server.Databases[$DatabaseName].Users.Name -contains $DatabaseUser) { Write-Message -Message "Setting job step database username to $DatabaseUser" -Level Verbose $jobStep.DatabaseUserName = $DatabaseUser } else { Stop-Function -Message "The database user is not present in the database $DatabaseName on instance $instance." -Target $instance -Continue } } if ($RetryAttempts) { Write-Message -Message "Setting job step retry attempts to $RetryAttempts" -Level Verbose $jobStep.RetryAttempts = $RetryAttempts } if ($RetryInterval) { Write-Message -Message "Setting job step retry interval to $RetryInterval" -Level Verbose $jobStep.RetryInterval = $RetryInterval } if ($OutputFileName) { Write-Message -Message "Setting job step output file name to $OutputFileName" -Level Verbose $jobStep.OutputFileName = $OutputFileName } if ($ProxyName) { # Check if the proxy exists if ($Server.JobServer.ProxyAccounts.Name -contains $ProxyName) { Write-Message -Message "Setting job step proxy name to $ProxyName" -Level Verbose $jobStep.ProxyName = $ProxyName } else { Stop-Function -Message "The proxy name $ProxyName doesn't exist on instance $instance." -Target $instance -Continue } } if ($Flag.Count -ge 1) { Write-Message -Message "Setting job step flag(s) to $($Flags -join ',')" -Level Verbose $jobStep.JobStepFlags = $Flag } #endregion job step options # Execute if ($PSCmdlet.ShouldProcess($instance, "Creating the job step $StepName")) { try { Write-Message -Message "Creating the job step" -Level Verbose # Create the job step $jobStep.Create() $currentJob.Alter() } catch { Stop-Function -Message "Something went wrong creating the job step" -Target $instance -ErrorRecord $_ -Continue } # Return the job step $jobStep } } } # foreach object job } # foreach object instance } # process end { if (Test-FunctionInterrupt) { return } Write-Message -Message "Finished creating job step(s)" -Level Verbose } } # SIG # Begin signature block # MIIZewYJKoZIhvcNAQcCoIIZbDCCGWgCAQExCzAJBgUrDgMCGgUAMGkGCisGAQQB # gjcCAQSgWzBZMDQGCisGAQQBgjcCAR4wJgIDAQAABBAfzDtgWUsITrck0sYpfvNR # AgEAAgEAAgEAAgEAAgEAMCEwCQYFKw4DAhoFAAQUPt1HKwZeVl7e08nJdorq2tFP # q2SgghSJMIIE/jCCA+agAwIBAgIQDUJK4L46iP9gQCHOFADw3TANBgkqhkiG9w0B # AQsFADByMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYD # VQQLExB3d3cuZGlnaWNlcnQuY29tMTEwLwYDVQQDEyhEaWdpQ2VydCBTSEEyIEFz # c3VyZWQgSUQgVGltZXN0YW1waW5nIENBMB4XDTIxMDEwMTAwMDAwMFoXDTMxMDEw # NjAwMDAwMFowSDELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDkRpZ2lDZXJ0LCBJbmMu # MSAwHgYDVQQDExdEaWdpQ2VydCBUaW1lc3RhbXAgMjAyMTCCASIwDQYJKoZIhvcN # AQEBBQADggEPADCCAQoCggEBAMLmYYRnxYr1DQikRcpja1HXOhFCvQp1dU2UtAxQ # tSYQ/h3Ib5FrDJbnGlxI70Tlv5thzRWRYlq4/2cLnGP9NmqB+in43Stwhd4CGPN4 # bbx9+cdtCT2+anaH6Yq9+IRdHnbJ5MZ2djpT0dHTWjaPxqPhLxs6t2HWc+xObTOK # fF1FLUuxUOZBOjdWhtyTI433UCXoZObd048vV7WHIOsOjizVI9r0TXhG4wODMSlK # XAwxikqMiMX3MFr5FK8VX2xDSQn9JiNT9o1j6BqrW7EdMMKbaYK02/xWVLwfoYer # vnpbCiAvSwnJlaeNsvrWY4tOpXIc7p96AXP4Gdb+DUmEvQECAwEAAaOCAbgwggG0 # MA4GA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMBYGA1UdJQEB/wQMMAoGCCsG # AQUFBwMIMEEGA1UdIAQ6MDgwNgYJYIZIAYb9bAcBMCkwJwYIKwYBBQUHAgEWG2h0 # dHA6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAfBgNVHSMEGDAWgBT0tuEgHf4prtLk # YaWyoiWyyBc1bjAdBgNVHQ4EFgQUNkSGjqS6sGa+vCgtHUQ23eNqerwwcQYDVR0f # BGowaDAyoDCgLoYsaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL3NoYTItYXNzdXJl # ZC10cy5jcmwwMqAwoC6GLGh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9zaGEyLWFz # c3VyZWQtdHMuY3JsMIGFBggrBgEFBQcBAQR5MHcwJAYIKwYBBQUHMAGGGGh0dHA6 # Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBPBggrBgEFBQcwAoZDaHR0cDovL2NhY2VydHMu # ZGlnaWNlcnQuY29tL0RpZ2lDZXJ0U0hBMkFzc3VyZWRJRFRpbWVzdGFtcGluZ0NB # LmNydDANBgkqhkiG9w0BAQsFAAOCAQEASBzctemaI7znGucgDo5nRv1CclF0CiNH # o6uS0iXEcFm+FKDlJ4GlTRQVGQd58NEEw4bZO73+RAJmTe1ppA/2uHDPYuj1UUp4 # eTZ6J7fz51Kfk6ftQ55757TdQSKJ+4eiRgNO/PT+t2R3Y18jUmmDgvoaU+2QzI2h # F3MN9PNlOXBL85zWenvaDLw9MtAby/Vh/HUIAHa8gQ74wOFcz8QRcucbZEnYIpp1 # FUL1LTI4gdr0YKK6tFL7XOBhJCVPst/JKahzQ1HavWPWH1ub9y4bTxMd90oNcX6X # t/Q/hOvB46NJofrOp79Wz7pZdmGJX36ntI5nePk2mOHLKNpbh6aKLzCCBRowggQC # oAMCAQICEAMFu4YhsKFjX7/erhIE520wDQYJKoZIhvcNAQELBQAwcjELMAkGA1UE # BhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2lj # ZXJ0LmNvbTExMC8GA1UEAxMoRGlnaUNlcnQgU0hBMiBBc3N1cmVkIElEIENvZGUg # U2lnbmluZyBDQTAeFw0yMDA1MTIwMDAwMDBaFw0yMzA2MDgxMjAwMDBaMFcxCzAJ # BgNVBAYTAlVTMREwDwYDVQQIEwhWaXJnaW5pYTEPMA0GA1UEBxMGVmllbm5hMREw # DwYDVQQKEwhkYmF0b29sczERMA8GA1UEAxMIZGJhdG9vbHMwggEiMA0GCSqGSIb3 # DQEBAQUAA4IBDwAwggEKAoIBAQC8v2N7q+O/vggBtpjmteofFo140k73JXQ5sOD6 # QLzjgija+scoYPxTmFSImnqtjfZFWmucAWsDiMVVro/6yGjsXmJJUA7oD5BlMdAK # fuiq4558YBOjjc0Bp3NbY5ZGujdCmsw9lqHRAVil6P1ZpAv3D/TyVVq6AjDsJY+x # rRL9iMc8YpD5tiAj+SsRSuT5qwPuW83ByRHqkaJ5YDJ/R82ZKh69AFNXoJ3xCJR+ # P7+pa8tbdSgRf25w4ZfYPy9InEvsnIRVZMeDjjuGvqr0/Mar73UI79z0NYW80yN/ # 7VzlrvV8RnniHWY2ib9ehZligp5aEqdV2/XFVPV4SKaJs8R9AgMBAAGjggHFMIIB # wTAfBgNVHSMEGDAWgBRaxLl7KgqjpepxA8Bg+S32ZXUOWDAdBgNVHQ4EFgQU8MCg # +7YDgENO+wnX3d96scvjniIwDgYDVR0PAQH/BAQDAgeAMBMGA1UdJQQMMAoGCCsG # AQUFBwMDMHcGA1UdHwRwMG4wNaAzoDGGL2h0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNv # bS9zaGEyLWFzc3VyZWQtY3MtZzEuY3JsMDWgM6Axhi9odHRwOi8vY3JsNC5kaWdp # Y2VydC5jb20vc2hhMi1hc3N1cmVkLWNzLWcxLmNybDBMBgNVHSAERTBDMDcGCWCG # SAGG/WwDATAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20v # Q1BTMAgGBmeBDAEEATCBhAYIKwYBBQUHAQEEeDB2MCQGCCsGAQUFBzABhhhodHRw # Oi8vb2NzcC5kaWdpY2VydC5jb20wTgYIKwYBBQUHMAKGQmh0dHA6Ly9jYWNlcnRz # LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFNIQTJBc3N1cmVkSURDb2RlU2lnbmluZ0NB # LmNydDAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCPzflwlQwf1jak # EqymPOc0nBxiY7F4FwcmL7IrTLhub6Pjg4ZYfiC79Akz5aNlqO+TJ0kqglkfnOsc # jfKQzzDwcZthLVZl83igzCLnWMo8Zk/D2d4ZLY9esFwqPNvuuVDrHvgh7H6DJ/zP # Vm5EOK0sljT0UQ6HQEwtouH5S8nrqCGZ8jKM/+DeJlm+rCAGGf7TV85uqsAn5JqD # En/bXE1AlyG1Q5YiXFGS5Sf0qS4Nisw7vRrZ6Qc4NwBty4cAYjzDPDixorWI8+FV # OUWKMdL7tV8i393/XykwsccCstBCp7VnSZN+4vgzjEJQql5uQfysjcW9rrb/qixp # csPTKYRHMIIFMDCCBBigAwIBAgIQBAkYG1/Vu2Z1U0O1b5VQCDANBgkqhkiG9w0B # AQsFADBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYD # VQQLExB3d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVk # IElEIFJvb3QgQ0EwHhcNMTMxMDIyMTIwMDAwWhcNMjgxMDIyMTIwMDAwWjByMQsw # CQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cu # ZGlnaWNlcnQuY29tMTEwLwYDVQQDEyhEaWdpQ2VydCBTSEEyIEFzc3VyZWQgSUQg # Q29kZSBTaWduaW5nIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA # +NOzHH8OEa9ndwfTCzFJGc/Q+0WZsTrbRPV/5aid2zLXcep2nQUut4/6kkPApfmJ # 1DcZ17aq8JyGpdglrA55KDp+6dFn08b7KSfH03sjlOSRI5aQd4L5oYQjZhJUM1B0 # sSgmuyRpwsJS8hRniolF1C2ho+mILCCVrhxKhwjfDPXiTWAYvqrEsq5wMWYzcT6s # cKKrzn/pfMuSoeU7MRzP6vIK5Fe7SrXpdOYr/mzLfnQ5Ng2Q7+S1TqSp6moKq4Tz # rGdOtcT3jNEgJSPrCGQ+UpbB8g8S9MWOD8Gi6CxR93O8vYWxYoNzQYIH5DiLanMg # 0A9kczyen6Yzqf0Z3yWT0QIDAQABo4IBzTCCAckwEgYDVR0TAQH/BAgwBgEB/wIB # ADAOBgNVHQ8BAf8EBAMCAYYwEwYDVR0lBAwwCgYIKwYBBQUHAwMweQYIKwYBBQUH # AQEEbTBrMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wQwYI # KwYBBQUHMAKGN2h0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEFz # c3VyZWRJRFJvb3RDQS5jcnQwgYEGA1UdHwR6MHgwOqA4oDaGNGh0dHA6Ly9jcmw0 # LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEFzc3VyZWRJRFJvb3RDQS5jcmwwOqA4oDaG # NGh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEFzc3VyZWRJRFJvb3RD # QS5jcmwwTwYDVR0gBEgwRjA4BgpghkgBhv1sAAIEMCowKAYIKwYBBQUHAgEWHGh0 # dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwCgYIYIZIAYb9bAMwHQYDVR0OBBYE # FFrEuXsqCqOl6nEDwGD5LfZldQ5YMB8GA1UdIwQYMBaAFEXroq/0ksuCMS1Ri6en # IZ3zbcgPMA0GCSqGSIb3DQEBCwUAA4IBAQA+7A1aJLPzItEVyCx8JSl2qB1dHC06 # GsTvMGHXfgtg/cM9D8Svi/3vKt8gVTew4fbRknUPUbRupY5a4l4kgU4QpO4/cY5j # DhNLrddfRHnzNhQGivecRk5c/5CxGwcOkRX7uq+1UcKNJK4kxscnKqEpKBo6cSgC # PC6Ro8AlEeKcFEehemhor5unXCBc2XGxDI+7qPjFEmifz0DLQESlE/DmZAwlCEIy # sjaKJAL+L3J+HNdJRZboWR3p+nRka7LrZkPas7CM1ekN3fYBIM6ZMWM9CBoYs4Gb # T8aTEAb8B4H6i9r5gkn3Ym6hU/oSlBiFLpKR6mhsRDKyZqHnGKSaZFHvMIIFMTCC # BBmgAwIBAgIQCqEl1tYyG35B5AXaNpfCFTANBgkqhkiG9w0BAQsFADBlMQswCQYD # VQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGln # aWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0Ew # HhcNMTYwMTA3MTIwMDAwWhcNMzEwMTA3MTIwMDAwWjByMQswCQYDVQQGEwJVUzEV # MBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29t # MTEwLwYDVQQDEyhEaWdpQ2VydCBTSEEyIEFzc3VyZWQgSUQgVGltZXN0YW1waW5n # IENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvdAy7kvNj3/dqbqC # mcU5VChXtiNKxA4HRTNREH3Q+X1NaH7ntqD0jbOI5Je/YyGQmL8TvFfTw+F+CNZq # FAA49y4eO+7MpvYyWf5fZT/gm+vjRkcGGlV+Cyd+wKL1oODeIj8O/36V+/OjuiI+ # GKwR5PCZA207hXwJ0+5dyJoLVOOoCXFr4M8iEA91z3FyTgqt30A6XLdR4aF5FMZN # JCMwXbzsPGBqrC8HzP3w6kfZiFBe/WZuVmEnKYmEUeaC50ZQ/ZQqLKfkdT66mA+E # f58xFNat1fJky3seBdCEGXIX8RcG7z3N1k3vBkL9olMqT4UdxB08r8/arBD13ays # 6Vb/kwIDAQABo4IBzjCCAcowHQYDVR0OBBYEFPS24SAd/imu0uRhpbKiJbLIFzVu # MB8GA1UdIwQYMBaAFEXroq/0ksuCMS1Ri6enIZ3zbcgPMBIGA1UdEwEB/wQIMAYB # Af8CAQAwDgYDVR0PAQH/BAQDAgGGMBMGA1UdJQQMMAoGCCsGAQUFBwMIMHkGCCsG # AQUFBwEBBG0wazAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29t # MEMGCCsGAQUFBzAChjdodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNl # cnRBc3N1cmVkSURSb290Q0EuY3J0MIGBBgNVHR8EejB4MDqgOKA2hjRodHRwOi8v # Y3JsNC5kaWdpY2VydC5jb20vRGlnaUNlcnRBc3N1cmVkSURSb290Q0EuY3JsMDqg # OKA2hjRodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRBc3N1cmVkSURS # b290Q0EuY3JsMFAGA1UdIARJMEcwOAYKYIZIAYb9bAACBDAqMCgGCCsGAQUFBwIB # FhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMAsGCWCGSAGG/WwHATANBgkq # hkiG9w0BAQsFAAOCAQEAcZUS6VGHVmnN793afKpjerN4zwY3QITvS4S/ys8DAv3F # p8MOIEIsr3fzKx8MIVoqtwU0HWqumfgnoma/Capg33akOpMP+LLR2HwZYuhegiUe # xLoceywh4tZbLBQ1QwRostt1AuByx5jWPGTlH0gQGF+JOGFNYkYkh2OMkVIsrymJ # 5Xgf1gsUpYDXEkdws3XVk4WTfraSZ/tTYYmo9WuWwPRYaQ18yAGxuSh1t5ljhSKM # Ycp5lH5Z/IwP42+1ASa2bKXuh1Eh5Fhgm7oMLSttosR+u8QlK0cCCHxJrhO24XxC # QijGGFbPQTS2Zl22dHv1VjMiLyI2skuiSpXY9aaOUjGCBFwwggRYAgEBMIGGMHIx # CzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3 # dy5kaWdpY2VydC5jb20xMTAvBgNVBAMTKERpZ2lDZXJ0IFNIQTIgQXNzdXJlZCBJ # RCBDb2RlIFNpZ25pbmcgQ0ECEAMFu4YhsKFjX7/erhIE520wCQYFKw4DAhoFAKB4 # MBgGCisGAQQBgjcCAQwxCjAIoAKAAKECgAAwGQYJKoZIhvcNAQkDMQwGCisGAQQB # gjcCAQQwHAYKKwYBBAGCNwIBCzEOMAwGCisGAQQBgjcCARUwIwYJKoZIhvcNAQkE # MRYEFM5/8zL8sv5wXfSkGtuwupnLJq0uMA0GCSqGSIb3DQEBAQUABIIBALGLS0qQ # F0nCsZUBqDJ8rfLi8V2FF4QQqZ3lq8G7cCwYi4wzd0EaLKRNGZInxsJjzOuhCx1T # 3z5yaLzp1zDV04ZIwLW+p5I4HYtJc+Z4+eI6q6moPTtGBycj2h4PGv1ORFJfxDLJ # yrWMRrUByINMAjjMG8MHEdChZKt2hyuuwsAZbrDNv/PmGCxWrPwPIvtyZVynKmCc # Tcot4k2MltDKqpmVSj3UQnWNI9mowT792tCd/iGevfUBtPTpcq7qBkNYbN+sZ7IW # yv8TktKyUzPWx9PlMkeT+H16pMSCrVXrabEKQ1wGjk/Y7ozdmx1wHIvQ+eHGDY6X # MDm/DKjb5fhcgBOhggIwMIICLAYJKoZIhvcNAQkGMYICHTCCAhkCAQEwgYYwcjEL # MAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3 # LmRpZ2ljZXJ0LmNvbTExMC8GA1UEAxMoRGlnaUNlcnQgU0hBMiBBc3N1cmVkIElE # IFRpbWVzdGFtcGluZyBDQQIQDUJK4L46iP9gQCHOFADw3TANBglghkgBZQMEAgEF # AKBpMBgGCSqGSIb3DQEJAzELBgkqhkiG9w0BBwEwHAYJKoZIhvcNAQkFMQ8XDTIy # MDEwMzE4NDcyOVowLwYJKoZIhvcNAQkEMSIEILIRiCpCL6shB9aYjWdSLsrSD0lg # kk6nTUdBNhRmd8vlMA0GCSqGSIb3DQEBAQUABIIBACnznODUArCTlbfvQU6pti1k # MnlDym/naLXmqK9F7d3jhGXQJ0iewPP5hOc02QB3QXOHKnG45bB9/sooqNi4YRPB # 4Tkf1erN/1zEq8vTCoUdlLmp7KICTNJh84wSVXj4y7YW+N3/GquyDeDinFI1lxZj # 6/z2omGGyx47K9gqIICoXzZRV5mkiSAWQ6Tg5a7wL95thpGFi8AJ86Llqb3WsI+q # JIUgEnrAw12BkYfyrPC1yQUu9BSmqxtnUQLsbcR2WThiB66mfFyX0Ulgrh1nxcaC # FZXt3GjVt2gKmrdVckn1O/ug21ECsc/76h8E+NWkaU3DcHY/Zekmdb8m+0JhQF8= # SIG # End signature block |