FrontDoor.Autorest/custom/New-AzFrontDoorWafPolicy.ps1


# ----------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Code generated by Microsoft (R) AutoRest Code Generator.Changes may cause incorrect behavior and will be lost if the code
# is regenerated.
# ----------------------------------------------------------------------------------

<#
.Synopsis
Create policy with specified rule set name within a resource group.
.Description
Create policy with specified rule set name within a resource group.
.Example
New-AzFrontDoorWafPolicy -Name $policyName -ResourceGroupName $resourceGroupName -Customrule $customRule1,$customRule2 -ManagedRule $managedRule1 -EnabledState Enabled -Mode Prevention -RedirectUrl "https://www.bing.com/" -CustomBlockResponseStatusCode 405 -CustomBlockResponseBody "<html><head><title>You are blocked!</title></head><body></body></html>"
 
.Outputs
Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Models.IWebApplicationFirewallPolicy
.Notes
COMPLEX PARAMETER PROPERTIES
 
To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
 
CUSTOMRULE <ICustomRule[]>: List of rules
  Action <String>: Describes what action to be applied when rule matches.
  MatchCondition <List<IMatchCondition>>: List of match conditions.
    MatchValue <List<String>>: List of possible match values.
    MatchVariable <String>: Request variable to compare with.
    OperatorProperty <String>: Comparison type to use for matching with the variable value.
    [NegateCondition <Boolean?>]: Describes if the result of this condition should be negated.
    [Selector <String>]: Match against a specific key from the QueryString, PostArgs, RequestHeader or Cookies variables. Default is null.
    [Transform <List<String>>]: List of transforms.
  Priority <Int32>: Describes priority of the rule. Rules with a lower value will be evaluated before rules with a higher value.
  RuleType <String>: Describes type of rule.
  [EnabledState <String>]: Describes if the custom rule is in enabled or disabled state. Defaults to Enabled if not specified.
  [GroupByCustomRule <List<IGroupByVariable>>]: Describes the list of variables to group the rate limit requests
    VariableName <String>: Describes the supported variable for group by
  [Name <String>]: Describes the name of the rule.
  [RateLimitDurationInMinutes <Int32?>]: Time window for resetting the rate limit count. Default is 1 minute.
  [RateLimitThreshold <Int32?>]: Number of allowed requests per client within the time window.
 
LOGSCRUBBINGSETTING <IPolicySettingsLogScrubbing>: Defines rules that scrub sensitive fields in the Web Application Firewall logs.
  [ScrubbingRule <List<IWebApplicationFirewallScrubbingRules>>]: List of log scrubbing rules applied to the Web Application Firewall logs.
    MatchVariable <String>: The variable to be scrubbed from the logs.
    SelectorMatchOperator <String>: When matchVariable is a collection, operate on the selector to specify which elements in the collection this rule applies to.
    [Selector <String>]: When matchVariable is a collection, operator used to specify which elements in the collection this rule applies to.
    [State <String>]: Defines the state of a log scrubbing rule. Default value is enabled.
  [State <String>]: State of the log scrubbing config. Default value is Enabled.
 
MANAGEDRULESET <IManagedRuleSet[]>: List of rule sets.
  Type <String>: Defines the rule set type to use.
  Version <String>: Defines the version of the rule set to use.
  [Exclusion <List<IManagedRuleExclusion>>]: Describes the exclusions that are applied to all rules in the set.
    Operator <String>: Comparison operator to apply to the selector when specifying which elements in the collection this exclusion applies to.
    Selector <String>: Selector value for which elements in the collection this exclusion applies to.
    Variable <String>: The variable type to be excluded.
  [RuleGroupOverride <List<IManagedRuleGroupOverride>>]: Defines the rule group overrides to apply to the rule set.
    RuleGroupName <String>: Describes the managed rule group to override.
    [Exclusion <List<IManagedRuleExclusion>>]: Describes the exclusions that are applied to all rules in the group.
    [ManagedRuleOverride <List<IManagedRuleOverride>>]: List of rules that will be disabled. If none specified, all rules in the group will be disabled.
      RuleId <String>: Identifier for the managed rule.
      [Action <String>]: Describes the override action to be applied when rule matches.
      [EnabledState <String>]: Describes if the managed rule is in enabled or disabled state. Defaults to Disabled if not specified.
      [Exclusion <List<IManagedRuleExclusion>>]: Describes the exclusions that are applied to this specific rule.
  [RuleSetAction <String>]: Defines the rule set action.
.Link
https://learn.microsoft.com/powershell/module/az.frontdoor/new-azfrontdoorwafpolicy
#>

function New-AzFrontDoorWafPolicy {
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Models.IWebApplicationFirewallPolicy])]
[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
param(
  [Parameter(Mandatory)]
  [Alias('PolicyName')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Path')]
  [System.String]
  # The name of the Web Application Firewall Policy.
  ${Name},

  [Parameter(Mandatory)]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Path')]
  [System.String]
  # Name of the Resource group within the Azure subscription.
  ${ResourceGroupName},

  [Parameter()]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Path')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')]
  [System.String]
  # The subscription credentials which uniquely identify the Microsoft Azure subscription.
  # The subscription ID forms part of the URI for every service call.
  ${SubscriptionId},

  [Parameter(ParameterSetName='CreateExpanded')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Body')]
  [System.String]
  # If the action type is block, customer can override the response body.
  # The body must be specified in base64 encoding.
  ${CustomBlockResponseBody},

  [Parameter(ParameterSetName='CreateExpanded')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Body')]
  [System.Int32]
  # If the action type is block, customer can override the response status code.
  ${CustomBlockResponseStatusCode},

  [Parameter(ParameterSetName='CreateExpanded')]
  [AllowEmptyCollection()]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Body')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Models.ICustomRule[]]
  # List of rules
  ${Customrule},

  [Parameter(ParameterSetName='CreateExpanded')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.PSArgumentCompleterAttribute("Disabled", "Enabled")]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Body')]
  [System.String]
  # Describes if the policy is in enabled or disabled state.
  # Defaults to Enabled if not specified.
  ${EnabledState} = "Enabled",

  [Parameter(ParameterSetName='CreateExpanded')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Body')]
  [System.String]
  # Gets a unique read-only string that changes whenever the resource is updated.
  ${Etag},

  [Parameter(ParameterSetName='CreateExpanded')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Body')]
  [System.Nullable`1[System.Int32]]
  # Defines the JavaScript challenge cookie validity lifetime in minutes.
  # This setting is only applicable to Premium_AzureFrontDoor.
  # Value must be an integer between 5 and 1440 with the default value being 30.
  ${JavascriptChallengeExpirationInMinutes},

  [Parameter(ParameterSetName='CreateExpanded')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Body')]
  [System.Nullable`1[System.Int32]]
  # Defines the Captcha cookie validity lifetime in minutes.
  # This setting is only applicable to Premium_AzureFrontDoor.
  # Value must be an integer between 5 and 1440 with the default value being 30.
  ${CaptchaExpirationInMinutes},

  [Parameter(ParameterSetName='CreateExpanded')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Body')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Models.IPolicySettingsLogScrubbing]
  # Defines rules that scrub sensitive fields in the Web Application Firewall logs.
  ${LogScrubbingSetting},

  [Parameter(ParameterSetName='CreateExpanded')]
  [AllowEmptyCollection()]
  [Alias("ManagedRule")]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Body')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Models.IManagedRuleSet[]]
  # List of rule sets.
  ${ManagedRuleSet},

  [Parameter(ParameterSetName='CreateExpanded')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.PSArgumentCompleterAttribute("Prevention", "Detection")]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Body')]
  [System.String]
  # Describes if it is in detection mode or prevention mode at policy level.
  ${Mode} = "Prevention",

  [Parameter(ParameterSetName='CreateExpanded')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Body')]
  [System.String]
  # If action type is redirect, this field represents redirect URL for the client.
  ${RedirectUrl},

  [Parameter(ParameterSetName='CreateExpanded')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.PSArgumentCompleterAttribute("Disabled", "Enabled")]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Body')]
  [System.String]
  # Describes if policy managed rules will inspect the request body content.
  ${RequestBodyCheck} = "Enabled",

  [Parameter(ParameterSetName='CreateExpanded')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.PSArgumentCompleterAttribute("Classic_AzureFrontDoor", "Standard_AzureFrontDoor", "Premium_AzureFrontDoor")]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Body')]
  [System.String]
  [Alias("Sku")]
  # Name of the pricing tier.
  ${SkuName},

  [Parameter(ParameterSetName='CreateExpanded')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Body')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Models.IResourceTags]))]
  [System.Collections.Hashtable]
  # Resource tags.
  ${Tag},

  [Parameter(ParameterSetName='CreateViaJsonFilePath', Mandatory)]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Body')]
  [System.String]
  # Path of Json file supplied to the Create operation
  ${JsonFilePath},

  [Parameter(ParameterSetName='CreateViaJsonString', Mandatory)]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Body')]
  [System.String]
  # Json string supplied to the Create operation
  ${JsonString},

  [Parameter()]
  [Alias('AzureRMContext', 'AzureCredential')]
  [ValidateNotNull()]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Azure')]
  [System.Management.Automation.PSObject]
  # The DefaultProfile parameter is not functional.
  # Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription.
  ${DefaultProfile},

  [Parameter()]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Runtime')]
  [System.Management.Automation.SwitchParameter]
  # Run the command as a job
  ${AsJob},

  [Parameter(DontShow)]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Runtime')]
  [System.Management.Automation.SwitchParameter]
  # Wait for .NET debugger to attach
  ${Break},

  [Parameter(DontShow)]
  [ValidateNotNull()]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Runtime')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Runtime.SendAsyncStep[]]
  # SendAsync Pipeline Steps to be appended to the front of the pipeline
  ${HttpPipelineAppend},

  [Parameter(DontShow)]
  [ValidateNotNull()]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Runtime')]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Runtime.SendAsyncStep[]]
  # SendAsync Pipeline Steps to be prepended to the front of the pipeline
  ${HttpPipelinePrepend},

  [Parameter()]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Runtime')]
  [System.Management.Automation.SwitchParameter]
  # Run the command asynchronously
  ${NoWait},

  [Parameter(DontShow)]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Runtime')]
  [System.Uri]
  # The URI for the proxy server to use
  ${Proxy},

  [Parameter(DontShow)]
  [ValidateNotNull()]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Runtime')]
  [System.Management.Automation.PSCredential]
  # Credentials for a proxy server to use for the remote call
  ${ProxyCredential},

  [Parameter(DontShow)]
  [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Category('Runtime')]
  [System.Management.Automation.SwitchParameter]
  # Use the default credentials for the proxy
  ${ProxyUseDefaultCredentials}
)

    process {
        $SkuName = $SkuName
        if ($PSBoundParameters.ContainsKey('SkuName')) {
            $null = $PSBoundParameters.Remove('SkuName')
        }
        
        $Customrule = $Customrule
        if ($PSBoundParameters.ContainsKey('Customrule')) {
            $null = $PSBoundParameters.Remove('Customrule')
        }
        
        $ManagedRuleSet = $ManagedRuleSet
        if ($PSBoundParameters.ContainsKey('ManagedRuleSet')) {
            $null = $PSBoundParameters.Remove('ManagedRuleSet')
        }
        
        $EnabledState = $EnabledState
        if ($PSBoundParameters.ContainsKey('EnabledState')) {
            $null = $PSBoundParameters.Remove('EnabledState')
        }

        $Mode = $Mode
        if ($PSBoundParameters.ContainsKey('Mode')) {
            $null = $PSBoundParameters.Remove('Mode')
        }
        
        $RequestBodyCheck = $RequestBodyCheck
        if ($PSBoundParameters.ContainsKey('RequestBodyCheck')) {
            $null = $PSBoundParameters.Remove('RequestBodyCheck')
        }
        
        $LogScrubbingSetting = $LogScrubbingSetting
        if ($PSBoundParameters.ContainsKey('LogScrubbingSetting')) {
            $null = $PSBoundParameters.Remove('LogScrubbingSetting')
        }
        
        $JavascriptChallengeExpirationInMinutes = $JavascriptChallengeExpirationInMinutes
        if ($PSBoundParameters.ContainsKey('JavascriptChallengeExpirationInMinutes')) {
            $null = $PSBoundParameters.Remove('JavascriptChallengeExpirationInMinutes')
        }

        $CaptchaExpirationInMinutes = $CaptchaExpirationInMinutes
        if ($PSBoundParameters.ContainsKey('CaptchaExpirationInMinutes')) {
            $null = $PSBoundParameters.Remove('CaptchaExpirationInMinutes')
        }

        try {
            $duplicateCheck = Get-AzFrontDoorWafPolicy @PSBoundParameters
            foreach ($policy in $duplicateCheck) {
                if ($policy.Name -eq $Name) {
                    throw "WAF policy with name $Name already exists in resource group $ResourceGroupName"
                }
            }
        }
        catch {
            # If Get-AzFrontDoorWafPolicy throws an error because the resource doesn't exist,
            # we can continue with creating the new WAF policy
            if ($_.Exception.Message -notlike "*was not found*") {
                # Re-throw if it's not a "not found" error
                throw $_
            }
        }
        
        if (![string]::IsNullOrEmpty($SkuName)) {
            $PSBoundParameters.Add('SkuName', $SkuName)
        }
        if ($Customrule) {
            $PSBoundParameters.Add('Customrule', $Customrule)
        }
        if ($ManagedRuleSet) {
            $PSBoundParameters.Add('ManagedRuleSet', $ManagedRuleSet)
        }
        if (![string]::IsNullOrEmpty($EnabledState)) {
            $PSBoundParameters.Add('EnabledState', $EnabledState)
        }
        if (![string]::IsNullOrEmpty($Mode)) {
            $PSBoundParameters.Add('Mode', $Mode)
        }
        if (![string]::IsNullOrEmpty($RequestBodyCheck)) {
            $PSBoundParameters.Add('RequestBodyCheck', $RequestBodyCheck)
        }
        if ($LogScrubbingSetting) {
            $PSBoundParameters.Add('LogScrubbingSetting', $LogScrubbingSetting)
        }
        if ($JavascriptChallengeExpirationInMinutes -gt 0) {
            $PSBoundParameters.Add('JavascriptChallengeExpirationInMinutes', $JavascriptChallengeExpirationInMinutes)
        }
        if ($CaptchaExpirationInMinutes -gt 0) {
            $PSBoundParameters.Add('CaptchaExpirationInMinutes', $CaptchaExpirationInMinutes)
        }

        $PolicySettings = [Microsoft.Azure.PowerShell.Cmdlets.FrontDoor.Models.PolicySettings]::New()
        if ($PSBoundParameters.ContainsKey('CustomBlockResponseBody')) {
            $null = $PSBoundParameters.Remove('CustomBlockResponseBody')
            $CustomBlockResponseBody = [Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes($CustomBlockResponseBody))
            $PolicySettings.CustomBlockResponseBody = $CustomBlockResponseBody
        }
        if ($PSBoundParameters.ContainsKey('CustomBlockResponseStatusCode')) {
            $null = $PSBoundParameters.Remove('CustomBlockResponseStatusCode')
            $PolicySettings.CustomBlockResponseStatusCode = $CustomBlockResponseStatusCode
        }
        $null = $PSBoundParameters.Remove("EnabledState")
        $PolicySettings.EnabledState = $EnabledState
        if ($PSBoundParameters.ContainsKey('JavascriptChallengeExpirationInMinutes')) {
            $null = $PSBoundParameters.Remove('JavascriptChallengeExpirationInMinutes')
            $PolicySettings.JavascriptChallengeExpirationInMinutes = $JavascriptChallengeExpirationInMinutes
        }
        if ($PSBoundParameters.ContainsKey('CaptchaExpirationInMinutes')) {
            $null = $PSBoundParameters.Remove('CaptchaExpirationInMinutes')
            $PolicySettings.CaptchaExpirationInMinutes = $CaptchaExpirationInMinutes
        }
        if ($PSBoundParameters.ContainsKey('LogScrubbingSetting')) {
           $null = $PSBoundParameters.Remove('LogScrubbingSetting')
            $PolicySettings.LogScrubbingSetting = $LogScrubbingSetting
        }
        $null = $PSBoundParameters.Remove("Mode")
        $PolicySettings.Mode = $Mode
        if ($PSBoundParameters.ContainsKey('RedirectUrl')) {
            $null = $PSBoundParameters.Remove('RedirectUrl')
            $PolicySettings.RedirectUrl = $RedirectUrl
        }
        $null = $PSBoundParameters.Remove("RequestBodyCheck")
        $PolicySettings.RequestBodyCheck = $RequestBodyCheck

        $PSBoundParameters.Add('PolicySetting', $PolicySettings)

        Az.FrontDoor.internal\New-AzFrontDoorWafPolicy @PSBoundParameters
    }
}

# SIG # Begin signature block
# MIInbgYJKoZIhvcNAQcCoIInXzCCJ1sCAQExDzANBglghkgBZQMEAgEFADB5Bgor
# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG
# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCA26D4o9qOE5yg4
# fXn13CrdaESHX9YTxHoztMNy4Meqp6CCDMkwggYEMIID7KADAgECAhMzAAACHPrN
# xZvoL37EAAAAAAIcMA0GCSqGSIb3DQEBCwUAMFcxCzAJBgNVBAYTAlVTMR4wHAYD
# VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBD
# b2RlIFNpZ25pbmcgUENBIDIwMjQwHhcNMjYwNDE2MTg1OTQxWhcNMjcwNDE1MTg1
# OTQxWjB0MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE
# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYD
# VQQDExVNaWNyb3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IB
# DwAwggEKAoIBAQDVsZfgOKmM31HPfoWOoNEiw0SlCiIxUMC0I9NMWbucKOw/e9lP
# oAoehQVu6SG65V4EPzrYsnBnFPNoi4/HoOdjhz1qkrEt4I6tEcxXU6oOeY9zGveC
# /3iBeuhLYxM3M/PkcUoebF+Nednm8OkdSPoDu8imViHPQq/8CQUu0WRR4rE+dMRf
# rpVqfmNi2qWCX94T4MsepijGVkwE//tJg0ryAiYdHT34LSnlG/RSBZmQRGWZ5g8j
# qnKjRParSqMft1gvjuUTVgtWNZfgcLFSK5Wa0myrq8OPcgTGGsRgun+tnSS+IxDT
# xVsAPH1OzvPjwomguByhUe/OcvUN0D5Wmp7xAgMBAAGjggGqMIIBpjAOBgNVHQ8B
# Af8EBAMCB4AwHwYDVR0lBBgwFgYKKwYBBAGCN0wIAQYIKwYBBQUHAwMwHQYDVR0O
# BBYEFNoH7a2YDjOSwpkp6DHcmUS7J+0yMFQGA1UdEQRNMEukSTBHMS0wKwYDVQQL
# EyRNaWNyb3NvZnQgSXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxFjAUBgNVBAUT
# DTIzMDAxMis1MDc1NjkwHwYDVR0jBBgwFoAUf1k/VCHarU/vBeXmo9ctBpQSCDEw
# YAYDVR0fBFkwVzBVoFOgUYZPaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9w
# cy9jcmwvTWljcm9zb2Z0JTIwQ29kZSUyMFNpZ25pbmclMjBQQ0ElMjAyMDI0LmNy
# bDBtBggrBgEFBQcBAQRhMF8wXQYIKwYBBQUHMAKGUWh0dHA6Ly93d3cubWljcm9z
# b2Z0LmNvbS9wa2lvcHMvY2VydHMvTWljcm9zb2Z0JTIwQ29kZSUyMFNpZ25pbmcl
# MjBQQ0ElMjAyMDI0LmNydDAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4IC
# AQAUnEqhaRXe0T3hIJjvdQErEkrA/7bByjn6t5IArODkkRjzkYwtKMc2yYj2quaN
# rLutWw2YZcngKPy1b71YyDJQTy4NDRwaSh9Tw5thrk3NmcPrAHia5vtcBJ1CgtKK
# 7mQbIcQ22d/N3813ayCDDFewu1+jsZmX+r/aTEqaOM4TVxVtRSkuCy8nAXKuChOK
# Li/zA4XuH8iEYqIsj2YoNaeSxVmeGiERXpKdo3dDmYi0kO5w2D8VS4c3+9h6gElY
# BaAAg/dYErBg27qT3vv0zRDJhJufvCNylA8S7/+8H5E/PV5cng6na9VV/w9OV3qu
# uND6zdGa2EX38Glp50F9AIQk3p2xXmcvorDeM4XJ7UlWYBi6g80J1SSOQnInCYFE
# msfUNn3+1AaTJKSJL83quKArTac2pKhu0Yzzzrzo6HrsRiQKzpnRBb1/dMa6P3hz
# 75XbMRBctNsFhZC07WCmjExdLg2eHW5uV0TY8D5+6wozJf7vF3+WHkYPO85Z+BC6
# U4FkNbYNycZ9cE4j1tXRdyDCfml6c0HWPHjNVDObrv9lKt3qUqFpX38VCqVCyNOO
# 1UcXfQiVjJw32U2WUKZjt/neJKHEBsm9kFsLuWzkQ53+qcaSaytmsCnk2gOglrlD
# 5d3kKyvvAw+rzm0lT8K38P6PLxfZQHhu4W8dV7Av8N2ZmDCCBr0wggSloAMCAQIC
# EzMAAAA5O7Y3Gb8GHWcAAAAAADkwDQYJKoZIhvcNAQEMBQAwgYgxCzAJBgNVBAYT
# AlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYD
# VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBS
# b290IENlcnRpZmljYXRlIEF1dGhvcml0eSAyMDExMB4XDTI0MDgwODIwNTQxOFoX
# DTM2MDMyMjIyMTMwNFowVzELMAkGA1UEBhMCVVMxHjAcBgNVBAoTFU1pY3Jvc29m
# dCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9zb2Z0IENvZGUgU2lnbmluZyBQ
# Q0EgMjAyNDCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANgBnB7jOMeq
# lRYHNa265v4IY9fH8TKhemHfPINe1gpLaV3dhg324WwH06LcHbpnsBukCDNitryo
# 0dtS/EW6I/yEL/bLSY8hKpbfQuWusBPr9qazYcDxCW/qnjb5JsI1s8bNOg3bVATv
# QVL4tcf03aTycsz8QeCdM0l/yHRObJ9QqazM1r6VPEOJ7LL+uEEb73w6QCuhs89a
# 1uv1zerOYMnsneRRwCbpyW11IcggU0cRKDDq1pjVJzIbIF6+oiXXbReOsgeI8zu1
# FyQfK0fVkaya8SmVHQ/tOf23mZ4W9k0Ri22QW9p3UgSC5OUDktKxxcCmGL6tXLfO
# GSWHIIV4YrTJTT6PNty5REojHJuZHArkF9VnHTERWoTjAzfI3kP+5b4alUdhgAZ7
# ttOu1bVnXfHaqPYl2rPs20ji03LOVWsh/radgE17es5hL+t6lV0eVHrVhsssROWJ
# uz2MXMCt7iw7lFPG9LXKGjsmonn2gotGdHIuEg5JnJMJVmixd5LRlkmgYRZKzhxS
# CwyoGIq0PhaA7Y+VPct5pCHkijcIIDm0nlkK+0KyepolcqGm0T/GYQRMhHJlGOOm
# VQop36wUVUYklUy++vDWeEgEo4s7hxN6mIbf2MSIQ/iIfMZgJxC69oukMUXCrOC3
# SkE/xIkgpfl22MM1itkZ35nNXkMolU1lAgMBAAGjggFOMIIBSjAOBgNVHQ8BAf8E
# BAMCAYYwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFH9ZP1Qh2q1P7wXl5qPX
# LQaUEggxMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMA8GA1UdEwEB/wQFMAMB
# Af8wHwYDVR0jBBgwFoAUci06AjGQQ7kUBU7h6qfHMdEjiTQwWgYDVR0fBFMwUTBP
# oE2gS4ZJaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraS9jcmwvcHJvZHVjdHMv
# TWljUm9vQ2VyQXV0MjAxMV8yMDExXzAzXzIyLmNybDBeBggrBgEFBQcBAQRSMFAw
# TgYIKwYBBQUHMAKGQmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMv
# TWljUm9vQ2VyQXV0MjAxMV8yMDExXzAzXzIyLmNydDANBgkqhkiG9w0BAQwFAAOC
# AgEAFJQfOChP7onn6fLIMKrSlN1WYKwDFgAddymOUO3FrM8d7B/W/iQ6DxXsDn7D
# 5W4wMwYeLystcEqfkjz4NURRgazyMu5yRzQh4LqjA4tStTcJh1opExo7nn5PuPBY
# nbu0+THSuVHTe0VTTPVhily/piFrDo3axQ9P4C+Ol5yet+2gTfekICS5xS+cYfSI
# vgn0JksVBVMYVI5QFu/qhnLhsEFEUzG8fvv0hjgkO+lkpV9ty6GkN4vdnd7ya6Q6
# aR9y34aiM1qmxaxBi6OUnyNl6fkuun/diTFnYDLTppOkr/mg5WSfCiDVMNCxtj4w
# PKC5OmHm1DQIt/MNokbbH3UGsFP1QbzsLocuSqLCvH09Io3fDPTmscR9Y75G4qX7
# RTX8AdBPo0I6OEojf39zuFZt0qOHm65YWQE69cZM2ueE1MB05dNNgHK9gTE7zKvK
# /fg8B2qjW88MT/WF5V5uvZGtqa9FSL2RazArA+rDPuf6JGYz4HpgMZHB4S6szWSK
# YBv0VisCzfxgeU+dquXW9bd0auYlOB58DPcOYKdc3Se94g+xL4pcEhbB54JOgAkw
# YTu/9dLeH2pDqeJZAABVDWRQCaXfO5LgyKwKCLYXpigrZYCjUSBcr+Ve8PFWMhVT
# Ql0v4q8J/AUmQN5W4n101cY2L4A7GTQG1h32HHAvfQESWP0xghn7MIIZ9wIBATBu
# MFcxCzAJBgNVBAYTAlVTMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24x
# KDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMjQCEzMAAAIc
# +s3Fm+gvfsQAAAAAAhwwDQYJYIZIAWUDBAIBBQCgga4wGQYJKoZIhvcNAQkDMQwG
# CisGAQQBgjcCAQQwHAYKKwYBBAGCNwIBCzEOMAwGCisGAQQBgjcCARUwLwYJKoZI
# hvcNAQkEMSIEILyPRMSl+fZ9BbuGqx7xpMFI1BEnFYbRcUqs6E//P+iFMEIGCisG
# AQQBgjcCAQwxNDAyoBSAEgBNAGkAYwByAG8AcwBvAGYAdKEagBhodHRwOi8vd3d3
# Lm1pY3Jvc29mdC5jb20wDQYJKoZIhvcNAQEBBQAEggEAY8tRCdjEVOw0hm74g4tJ
# rGqX3vMV1/DR9kfNs0Rw8FE7Xsp7n+uAT5szDryMmeNqh5Vw2oe0p0YjzKhI+zmi
# fXWZ8ht4J1I4jImIgGsKkLCjDGg3Og1FMq12LDQixUoKb3p/5qQ9bu5NuLFyAs3X
# 14ESvNQVBMlu7ABnnD3LNnOcpM6N/3Pc6sH9c6QqMRRxCNR/pvRNMJCrhkkc+vsi
# SHoALLyvfA+3RENaCjk1Hn9rkd8AKZQj7eDyiSm5BqET0ZHKQEPonA5ft75Zphin
# ey+mUCIVCk1paP3IlhvUnxR65/ZeknjIcUQB5wlSWAgMoRzroX3vrJpIDEPjZc/3
# lqGCF60wghepBgorBgEEAYI3AwMBMYIXmTCCF5UGCSqGSIb3DQEHAqCCF4YwgheC
# AgEDMQ8wDQYJYIZIAWUDBAIBBQAwggFaBgsqhkiG9w0BCRABBKCCAUkEggFFMIIB
# QQIBAQYKKwYBBAGEWQoDATAxMA0GCWCGSAFlAwQCAQUABCCTgZ6Tl6WxEE2t7POh
# XSZh43XOSjacZwKZVduaPMGklAIGahF0rhwEGBMyMDI2MDUyNzEwMjMyMC45MTJa
# MASAAgH0oIHZpIHWMIHTMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3Rv
# bjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0
# aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQgSXJlbGFuZCBPcGVyYXRpb25zIExpbWl0
# ZWQxJzAlBgNVBAsTHm5TaGllbGQgVFNTIEVTTjo1NTFBLTA1RTAtRDk0NzElMCMG
# A1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAgU2VydmljZaCCEfswggcoMIIFEKAD
# AgECAhMzAAACG9CyuAJn93LPAAEAAAIbMA0GCSqGSIb3DQEBCwUAMHwxCzAJBgNV
# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w
# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m
# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMB4XDTI1MDgxNDE4NDgzMFoXDTI2MTExMzE4
# NDgzMFowgdMxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYD
# VQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTAr
# BgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEnMCUG
# A1UECxMeblNoaWVsZCBUU1MgRVNOOjU1MUEtMDVFMC1EOTQ3MSUwIwYDVQQDExxN
# aWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOC
# Ag8AMIICCgKCAgEAjsWd52ZZkzB5Xe5g/l2GsOjAz30sg6jVxfFJV+w4xIDVyaI3
# LO8bIpmzYul3AZHg50UIQ8PrSRZGpQqFkRNu+o3YKJ4g2uGYBRksHnHYR0uVSCQg
# 58ThkYyeplGX3oAvGRVuPIpQtAiTsR76A/gdoU7HDwEbb73bJwTyrbKHhR+WaMy9
# DQHI4k5Qo4+bZDs0kj76bvhJvdGU+S8zxQBp7UAhjJnFqKxIusSITE7zCCR422EL
# hkhVVOFqK2w6h1MAvILe76hxRIcPj0SBL2r8O9tx5njU4+tg2rAdU153pmyhqazd
# pUccYBE9wDRFUd/e9CoWx7TdnUicB+Mai7RT6qse7e5aGqX1B7bnj/ZHvrrfF+BJ
# EIlS9iDXAUgekvXZ+FZmjvLwP+dN+0/crh++r4e8FknF7EX6IJfnmNeDN/68Z59k
# baJ1f+P5mnKYfydCeZmxrGpS0taWkDk36D3jPVZflvxrc+1rhCIlM5v9agLEFI12
# QiBTfpOBOBr3AGCPk+eH0+latjQajug+2/BD12qb82500LQytUWT2ota/HYnRgSv
# 1jvZ0/dml1FsxWYzOnCrjfdB/7N6pNySt4vn+PGN6dFLim7kxos+B9WfQPezJi3f
# uKyyDAB9zSHPj1Zu8nZfecZJ9um4zj7DFgvJXTDTnG5qlG4ZdbFRa/rrfzkCAwEA
# AaOCAUkwggFFMB0GA1UdDgQWBBS2vp93/lxLppNK8OkauJ2AvNmIUDAfBgNVHSME
# GDAWgBSfpxVdAF5iXYP05dJlpxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRw
# Oi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1l
# LVN0YW1wJTIwUENBJTIwMjAxMCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsG
# AQUFBzAChlBodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01p
# Y3Jvc29mdCUyMFRpbWUtU3RhbXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMB
# Af8EAjAAMBYGA1UdJQEB/wQMMAoGCCsGAQUFBwMIMA4GA1UdDwEB/wQEAwIHgDAN
# BgkqhkiG9w0BAQsFAAOCAgEAZkU1XxQD4OTM3GTht32TXShIfPBoMfSsFsBQqFOZ
# qLJOxyJOllIBFpmpvOtGNPkC5Z8ldG8aCpvgFNo/jDWeT5FiW53dAj9KnZxpsQ3P
# f5fRzSGHRcxEMOdXIVzDJwcZUX0cjfxna7ydNv8eXB/Xk6G6SyrR2OH6S1LHMW11
# m3UvKF+eLjIPl45rximuDCoEd+ad0lOAXA5/vZOKN5n/ePYeP0LRchZX0Q6H8n/Z
# mSPMlbli3MO851Q09RmT/ZGHa+/Fdy+WLDrwcYykV9mUy/4TbwKw6FtdR6ZPHxMd
# Ii1pk8Y2mC/GzCq0LCsH0uTFeQ6Q7Nc3MRmER/3mLWUhbaWHgX1FbYchvR22b+Bu
# p+YPR5Q/0BhaaAN6AIBfcGs+u/nJoIByyZKA8cTyCmnUI/4vW6D4vywg3XBFf4f2
# DwFHy/evsC+58KMl+k2wa05X2kK0T/bCPLhaov9ZXyobawfNOLYGiauKT2FWvbwZ
# zHIFCTxjBww6Pt5uRvCE/jnUcf/xhlOGMn6iKO9Xt49vZTE2SfIBk/34iLTRBJ6H
# 7aGPTTQnza3OfWu1/dRycC6Wl5ons3PjnGXTSKSxXllJPmg6R/ulGonP/UCYoJ6m
# N+EXjfyDLPXLqsr91+VTG1rYzRCjPwBFAHv4EIwaE0ajCrf75eUGI3+oXU0UP6rl
# oZ8wggdxMIIFWaADAgECAhMzAAAAFcXna54Cm0mZAAAAAAAVMA0GCSqGSIb3DQEB
# CwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE
# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTIwMAYD
# VQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgMjAxMDAe
# Fw0yMTA5MzAxODIyMjVaFw0zMDA5MzAxODMyMjVaMHwxCzAJBgNVBAYTAlVTMRMw
# EQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVN
# aWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0
# YW1wIFBDQSAyMDEwMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA5OGm
# TOe0ciELeaLL1yR5vQ7VgtP97pwHB9KpbE51yMo1V/YBf2xK4OK9uT4XYDP/XE/H
# ZveVU3Fa4n5KWv64NmeFRiMMtY0Tz3cywBAY6GB9alKDRLemjkZrBxTzxXb1hlDc
# wUTIcVxRMTegCjhuje3XD9gmU3w5YQJ6xKr9cmmvHaus9ja+NSZk2pg7uhp7M62A
# W36MEBydUv626GIl3GoPz130/o5Tz9bshVZN7928jaTjkY+yOSxRnOlwaQ3KNi1w
# jjHINSi947SHJMPgyY9+tVSP3PoFVZhtaDuaRr3tpK56KTesy+uDRedGbsoy1cCG
# MFxPLOJiss254o2I5JasAUq7vnGpF1tnYN74kpEeHT39IM9zfUGaRnXNxF803RKJ
# 1v2lIH1+/NmeRd+2ci/bfV+AutuqfjbsNkz2K26oElHovwUDo9Fzpk03dJQcNIIP
# 8BDyt0cY7afomXw/TNuvXsLz1dhzPUNOwTM5TI4CvEJoLhDqhFFG4tG9ahhaYQFz
# ymeiXtcodgLiMxhy16cg8ML6EgrXY28MyTZki1ugpoMhXV8wdJGUlNi5UPkLiWHz
# NgY1GIRH29wb0f2y1BzFa/ZcUlFdEtsluq9QBXpsxREdcu+N+VLEhReTwDwV2xo3
# xwgVGD94q0W29R6HXtqPnhZyacaue7e3PmriLq0CAwEAAaOCAd0wggHZMBIGCSsG
# AQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFCqnUv5kxJq+gpE8RjUpzxD/
# LwTuMB0GA1UdDgQWBBSfpxVdAF5iXYP05dJlpxtTNRnpcjBcBgNVHSAEVTBTMFEG
# DCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3Lm1pY3Jvc29m
# dC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wEwYDVR0lBAwwCgYIKwYB
# BQUHAwgwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMA8G
# A1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU1fZWy4/oolxiaNE9lJBb186aGMQw
# VgYDVR0fBE8wTTBLoEmgR4ZFaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraS9j
# cmwvcHJvZHVjdHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYtMjMuY3JsMFoGCCsGAQUF
# BwEBBE4wTDBKBggrBgEFBQcwAoY+aHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3Br
# aS9jZXJ0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5jcnQwDQYJKoZIhvcNAQEL
# BQADggIBAJ1VffwqreEsH2cBMSRb4Z5yS/ypb+pcFLY+TkdkeLEGk5c9MTO1OdfC
# cTY/2mRsfNB1OW27DzHkwo/7bNGhlBgi7ulmZzpTTd2YurYeeNg2LpypglYAA7AF
# vonoaeC6Ce5732pvvinLbtg/SHUB2RjebYIM9W0jVOR4U3UkV7ndn/OOPcbzaN9l
# 9qRWqveVtihVJ9AkvUCgvxm2EhIRXT0n4ECWOKz3+SmJw7wXsFSFQrP8DJ6LGYnn
# 8AtqgcKBGUIZUnWKNsIdw2FzLixre24/LAl4FOmRsqlb30mjdAy87JGA0j3mSj5m
# O0+7hvoyGtmW9I/2kQH2zsZ0/fZMcm8Qq3UwxTSwethQ/gpY3UA8x1RtnWN0SCyx
# TkctwRQEcb9k+SS+c23Kjgm9swFXSVRk2XPXfx5bRAGOWhmRaw2fpCjcZxkoJLo4
# S5pu+yFUa2pFEUep8beuyOiJXk+d0tBMdrVXVAmxaQFEfnyhYWxz/gq77EFmPWn9
# y8FBSX5+k77L+DvktxW/tM4+pTFRhLy/AsGConsXHRWJjXD+57XQKBqJC4822rpM
# +Zv/Cuk0+CQ1ZyvgDbjmjJnW4SLq8CdCPSWU5nR0W2rRnj7tfqAxM328y+l7vzhw
# RNGQ8cirOoo6CGJ/2XBjU02N7oJtpQUQwXEGahC0HVUzWLOhcGbyoYIDVjCCAj4C
# AQEwggEBoYHZpIHWMIHTMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3Rv
# bjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0
# aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQgSXJlbGFuZCBPcGVyYXRpb25zIExpbWl0
# ZWQxJzAlBgNVBAsTHm5TaGllbGQgVFNTIEVTTjo1NTFBLTA1RTAtRDk0NzElMCMG
# A1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAgU2VydmljZaIjCgEBMAcGBSsOAwIa
# AxUAhoV6r49M4GBd41K1RYB1Z0f4zuCggYMwgYCkfjB8MQswCQYDVQQGEwJVUzET
# MBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMV
# TWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1T
# dGFtcCBQQ0EgMjAxMDANBgkqhkiG9w0BAQsFAAIFAO3BONswIhgPMjAyNjA1Mjcw
# OTMzMTVaGA8yMDI2MDUyODA5MzMxNVowdDA6BgorBgEEAYRZCgQBMSwwKjAKAgUA
# 7cE42wIBADAHAgEAAgILKzAHAgEAAgIR4TAKAgUA7cKKWwIBADA2BgorBgEEAYRZ
# CgQCMSgwJjAMBgorBgEEAYRZCgMCoAowCAIBAAIDB6EgoQowCAIBAAIDAYagMA0G
# CSqGSIb3DQEBCwUAA4IBAQBoRkFgXg00dNmCiA6PPsobZ2ZrKz1FSd5ywpZmBH2+
# DlLqtIFYUyNLF9eeD76dTUrjNV7mmC4cAyu3C7gxLdx5E0ZuHgIqhMvScgtvA7hp
# 6KNZC69V2bn42QN43vHg7vGA0urGvRAE4iDYdV+jCWYRd8BACMYsJkWENtoKumpd
# Lrk/eN0xYJYnH8hg30rtnLunDRJeSJ4ODvOdcOZfS4rElriv8a+FUFvt95+hKO1N
# 4EQ+iRT6T6nw8FSlvcKgrFjabkzZLfqDGfwz+IQh7MOfloMRa7FJ/eezzJJlWxE1
# eOD4mLqcmsME8ioM0CnW6UYTvGdh7C0Y0g/z0Pt2vf5kMYIEDTCCBAkCAQEwgZMw
# fDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1Jl
# ZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMd
# TWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTACEzMAAAIb0LK4Amf3cs8AAQAA
# AhswDQYJYIZIAWUDBAIBBQCgggFKMBoGCSqGSIb3DQEJAzENBgsqhkiG9w0BCRAB
# BDAvBgkqhkiG9w0BCQQxIgQgShcfEUkwwLZwOBQoFqQgWFGvp+VNgqJdOAQKjAA+
# eGQwgfoGCyqGSIb3DQEJEAIvMYHqMIHnMIHkMIG9BCAwJRSVuD2jmMcQCFXdLuJA
# wDpUVNZ6bc6dfJU83Q2LgDCBmDCBgKR+MHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQI
# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv
# ZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBD
# QSAyMDEwAhMzAAACG9CyuAJn93LPAAEAAAIbMCIEIDPplANOBr3l3lMhaw0h4UYJ
# +ZlcRc7kw79bdMAP6S++MA0GCSqGSIb3DQEBCwUABIICACB78lzkUFveXoeIMTVK
# RwriF/hS8uxIo/DJrhwtE+5cY6NxXD1TT9Xe+7FXZkkUhl2QMD6qc1tUvz6Ox3sK
# K4itVDhk1yHpHioEG1fRA5ZhHW58H1CjX1uQSjJRehorT/GqRQxR5e2WqkvtHtXY
# GSrDaGPclG98N0gWGGLQZfOYJCmacgfAdDK5tQSIUenby4fVHPcEYeFR3DBLifSr
# e7c1tasFJySI0ACJFzWNG5mqD7ppW3q5ExhkHcJhZFQsGphEAYTsdpmFzSj34ijv
# LDnypT/1OF3HxWylo7UJthXnHGUoRVeS9yQBrgKDrMj2Cf3CPe8WJZMCp0Fco0Nh
# yHR13Trn0G1++vBtn9/Rk94NlGhPiJnq4JmOq0QZZFWIFPat+UX0q3COum73mn08
# LvpSpZhTjb/+vF0Ptj0z99WsqvpBlVh5XH5pkxp8MVuoZ2b4ld/z887Kq6hyDG/5
# ehCOhF3UCpjXv9xCyWTEAzVRFParcmikhmmu6eRXUYr8a/Ixy/Ky+N1+5RiHDgH1
# FAqGjXalY2/lsPW0t9qo9Gpss9VBH0v/Ar/6gK59yjuas5Vz2h3a0YtmnNFrXWM9
# nHblzEvvOS5jYBGsq+RDdbApLrKlAPhvbgyVsbFMlvOa4+zalnkCFDWGoPz6fT5o
# yTJTy+92eBsQqKza494zybWV
# SIG # End signature block