Telemetry.ps1
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. # Singleton telemetry client. Don't directly access this though....always get it # by calling Get-TelemetryClient to ensure that the singleton is properly initialized. $script:GHTelemetryClient = $null function Get-PiiSafeString { <# .SYNOPSIS If PII protection is enabled, returns back an SHA512-hashed value for the specified string, otherwise returns back the original string, untouched. .SYNOPSIS If PII protection is enabled, returns back an SHA512-hashed value for the specified string, otherwise returns back the original string, untouched. The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub .PARAMETER PlainText The plain text that contains PII that may need to be protected. .EXAMPLE Get-PiiSafeString -PlainText "Hello World" Returns back the string "B10A8DB164E0754105B7A99BE72E3FE5" which respresents the SHA512 hash of "Hello World", but only if the "DisablePiiProtection" configuration value is $false. If it's $true, "Hello World" will be returned. .OUTPUTS System.String - A SHA512 hash of PlainText will be returned if the "DisablePiiProtection" configuration value is $false, otherwise PlainText will be returned untouched. #> [CmdletBinding()] [OutputType([String])] param( [Parameter(Mandatory)] [AllowNull()] [AllowEmptyString()] [string] $PlainText ) if (Get-GitHubConfiguration -Name DisablePiiProtection) { return $PlainText } else { return (Get-SHA512Hash -PlainText $PlainText) } } function Get-ApplicationInsightsDllPath { <# .SYNOPSIS Makes sure that the Microsoft.ApplicationInsights.dll assembly is available on the machine, and returns the path to it. .DESCRIPTION Makes sure that the Microsoft.ApplicationInsights.dll assembly is available on the machine, and returns the path to it. This will first look for the assembly in the module's script directory. Next it will look for the assembly in the location defined by $SBAlternateAssemblyDir. This value would have to be defined by the user prior to execution of this cmdlet. If not found there, it will look in a temp folder established during this PowerShell session. If still not found, it will download the nuget package for it to a temp folder accessible during this PowerShell session. The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub .PARAMETER NoStatus If this switch is specified, long-running commands will run on the main thread with no commandline status update. When not specified, those commands run in the background, enabling the command prompt to provide status information. .EXAMPLE Get-ApplicationInsightsDllPath Returns back the path to the assembly as found. If the package has to be downloaded via nuget, the command prompt will show a time duration status counter while the package is being downloaded. .EXAMPLE Get-ApplicationInsightsDllPath -NoStatus Returns back the path to the assembly as found. If the package has to be downloaded via nuget, the command prompt will appear to hang during this time. .OUTPUTS System.String - The path to the Microsoft.ApplicationInsights.dll assembly. #> [CmdletBinding(SupportsShouldProcess)] [Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess", "", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")] param( [switch] $NoStatus ) $nugetPackageName = "Microsoft.ApplicationInsights" $nugetPackageVersion = "2.0.1" $assemblyPackageTailDir = "Microsoft.ApplicationInsights.2.0.1\lib\net45" $assemblyName = "Microsoft.ApplicationInsights.dll" return Get-NugetPackageDllPath -NugetPackageName $nugetPackageName -NugetPackageVersion $nugetPackageVersion -AssemblyPackageTailDirectory $assemblyPackageTailDir -AssemblyName $assemblyName -NoStatus:$NoStatus } function Get-DiagnosticsTracingDllPath { <# .SYNOPSIS Makes sure that the Microsoft.Diagnostics.Tracing.EventSource.dll assembly is available on the machine, and returns the path to it. .DESCRIPTION Makes sure that the Microsoft.Diagnostics.Tracing.EventSource.dll assembly is available on the machine, and returns the path to it. This will first look for the assembly in the module's script directory. Next it will look for the assembly in the location defined by $SBAlternateAssemblyDir. This value would have to be defined by the user prior to execution of this cmdlet. If not found there, it will look in a temp folder established during this PowerShell session. If still not found, it will download the nuget package for it to a temp folder accessible during this PowerShell session. The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub .PARAMETER NoStatus If this switch is specified, long-running commands will run on the main thread with no commandline status update. When not specified, those commands run in the background, enabling the command prompt to provide status information. .EXAMPLE Get-DiagnosticsTracingDllPath Returns back the path to the assembly as found. If the package has to be downloaded via nuget, the command prompt will show a time duration status counter while the package is being downloaded. .EXAMPLE Get-DiagnosticsTracingDllPath -NoStatus Returns back the path to the assembly as found. If the package has to be downloaded via nuget, the command prompt will appear to hang during this time. .OUTPUTS System.String - The path to the Microsoft.ApplicationInsights.dll assembly. #> [CmdletBinding(SupportsShouldProcess)] [Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess", "", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")] param( [switch] $NoStatus ) $nugetPackageName = "Microsoft.Diagnostics.Tracing.EventSource.Redist" $nugetPackageVersion = "1.1.24" $assemblyPackageTailDir = "Microsoft.Diagnostics.Tracing.EventSource.Redist.1.1.24\lib\net35" $assemblyName = "Microsoft.Diagnostics.Tracing.EventSource.dll" return Get-NugetPackageDllPath -NugetPackageName $nugetPackageName -NugetPackageVersion $nugetPackageVersion -AssemblyPackageTailDirectory $assemblyPackageTailDir -AssemblyName $assemblyName -NoStatus:$NoStatus } function Get-ThreadingTasksDllPath { <# .SYNOPSIS Makes sure that the Microsoft.Threading.Tasks.dll assembly is available on the machine, and returns the path to it. .DESCRIPTION Makes sure that the Microsoft.Threading.Tasks.dll assembly is available on the machine, and returns the path to it. This will first look for the assembly in the module's script directory. Next it will look for the assembly in the location defined by $SBAlternateAssemblyDir. This value would have to be defined by the user prior to execution of this cmdlet. If not found there, it will look in a temp folder established during this PowerShell session. If still not found, it will download the nuget package for it to a temp folder accessible during this PowerShell session. The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub .PARAMETER NoStatus If this switch is specified, long-running commands will run on the main thread with no commandline status update. When not specified, those commands run in the background, enabling the command prompt to provide status information. .EXAMPLE Get-ThreadingTasksDllPath Returns back the path to the assembly as found. If the package has to be downloaded via nuget, the command prompt will show a time duration status counter while the package is being downloaded. .EXAMPLE Get-ThreadingTasksDllPath -NoStatus Returns back the path to the assembly as found. If the package has to be downloaded via nuget, the command prompt will appear to hang during this time. .OUTPUTS System.String - The path to the Microsoft.ApplicationInsights.dll assembly. #> [CmdletBinding(SupportsShouldProcess)] [Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess", "", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")] param( [switch] $NoStatus ) $nugetPackageName = "Microsoft.Bcl.Async" $nugetPackageVersion = "1.0.168.0" $assemblyPackageTailDir = "Microsoft.Bcl.Async.1.0.168\lib\net40" $assemblyName = "Microsoft.Threading.Tasks.dll" return Get-NugetPackageDllPath -NugetPackageName $nugetPackageName -NugetPackageVersion $nugetPackageVersion -AssemblyPackageTailDirectory $assemblyPackageTailDir -AssemblyName $assemblyName -NoStatus:$NoStatus } function Get-TelemetryClient { <# .SYNOPSIS Returns back the singleton instance of the Application Insights TelemetryClient for this module. .DESCRIPTION Returns back the singleton instance of the Application Insights TelemetryClient for this module. If the singleton hasn't been initialized yet, this will ensure all dependenty assemblies are available on the machine, create the client and initialize its properties. This will first look for the dependent assemblies in the module's script directory. Next it will look for the assemblies in the location defined by $SBAlternateAssemblyDir. This value would have to be defined by the user prior to execution of this cmdlet. If not found there, it will look in a temp folder established during this PowerShell session. If still not found, it will download the nuget package for it to a temp folder accessible during this PowerShell session. The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub .PARAMETER NoStatus If this switch is specified, long-running commands will run on the main thread with no commandline status update. When not specified, those commands run in the background, enabling the command prompt to provide status information. .EXAMPLE Get-TelemetryClient Returns back the singleton instance to the TelemetryClient for the module. If any nuget packages have to be downloaded in order to load the TelemetryClient, the command prompt will show a time duration status counter during the download process. .EXAMPLE Get-TelemetryClient -NoStatus Returns back the singleton instance to the TelemetryClient for the module. If any nuget packages have to be downloaded in order to load the TelemetryClient, the command prompt will appear to hang during this time. .OUTPUTS Microsoft.ApplicationInsights.TelemetryClient #> [CmdletBinding(SupportsShouldProcess)] [Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess", "", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")] param( [switch] $NoStatus ) if ($null -eq $script:GHTelemetryClient) { if (-not (Get-GitHubConfiguration -Name SuppressTelemetryReminder)) { Write-Log -Message 'Telemetry is currently enabled. It can be disabled by calling "Set-GitHubConfiguration -DisableTelemetry". Refer to USAGE.md#telemetry for more information. Stop seeing this message in the future by calling "Set-GitHubConfiguration -SuppressTelemetryReminder".' } Write-Log -Message "Initializing telemetry client." -Level Verbose $dlls = @( (Get-ThreadingTasksDllPath -NoStatus:$NoStatus), (Get-DiagnosticsTracingDllPath -NoStatus:$NoStatus), (Get-ApplicationInsightsDllPath -NoStatus:$NoStatus) ) foreach ($dll in $dlls) { $bytes = [System.IO.File]::ReadAllBytes($dll) [System.Reflection.Assembly]::Load($bytes) | Out-Null } $username = Get-PiiSafeString -PlainText $env:USERNAME $script:GHTelemetryClient = New-Object Microsoft.ApplicationInsights.TelemetryClient $script:GHTelemetryClient.InstrumentationKey = (Get-GitHubConfiguration -Name ApplicationInsightsKey) $script:GHTelemetryClient.Context.User.Id = $username $script:GHTelemetryClient.Context.Session.Id = [System.GUID]::NewGuid().ToString() $script:GHTelemetryClient.Context.Properties['Username'] = $username $script:GHTelemetryClient.Context.Properties['DayOfWeek'] = (Get-Date).DayOfWeek $script:GHTelemetryClient.Context.Component.Version = $MyInvocation.MyCommand.Module.Version.ToString() } return $script:GHTelemetryClient } function Set-TelemetryEvent { <# .SYNOPSIS Posts a new telemetry event for this module to the configured Applications Insights instance. .DESCRIPTION Posts a new telemetry event for this module to the configured Applications Insights instance. The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub .PARAMETER EventName The name of the event that has occurred. .PARAMETER Properties A collection of name/value pairs (string/string) that should be associated with this event. .PARAMETER Metrics A collection of name/value pair metrics (string/double) that should be associated with this event. .PARAMETER NoStatus If this switch is specified, long-running commands will run on the main thread with no commandline status update. When not specified, those commands run in the background, enabling the command prompt to provide status information. .EXAMPLE Set-TelemetryEvent "zFooTest1" Posts a "zFooTest1" event with the default set of properties and metrics. If the telemetry client needs to be created to accomplish this, and the required assemblies are not available on the local machine, the download status will be presented at the command prompt. .EXAMPLE Set-TelemetryEvent "zFooTest1" @{"Prop1" = "Value1"} Posts a "zFooTest1" event with the default set of properties and metrics along with an additional property named "Prop1" with a value of "Value1". If the telemetry client needs to be created to accomplish this, and the required assemblies are not available on the local machine, the download status will be presented at the command prompt. .EXAMPLE Set-TelemetryEvent "zFooTest1" -NoStatus Posts a "zFooTest1" event with the default set of properties and metrics. If the telemetry client needs to be created to accomplish this, and the required assemblies are not available on the local machine, the command prompt will appear to hang while they are downloaded. .NOTES Because of the short-running nature of this module, we always "flush" the events as soon as they have been posted to ensure that they make it to Application Insights. #> [CmdletBinding(SupportsShouldProcess)] [Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess", "", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")] param( [Parameter(Mandatory)] [string] $EventName, [hashtable] $Properties = @{}, [hashtable] $Metrics = @{}, [switch] $NoStatus ) if (Get-GitHubConfiguration -Name DisableTelemetry) { Write-Log -Message "Telemetry has been disabled via configuration. Skipping reporting event [$EventName]." -Level Verbose return } Write-InvocationLog -ExcludeParameter @('Properties', 'Metrics') try { $telemetryClient = Get-TelemetryClient -NoStatus:$NoStatus $propertiesDictionary = New-Object 'System.Collections.Generic.Dictionary[string, string]' $propertiesDictionary['DayOfWeek'] = (Get-Date).DayOfWeek $Properties.Keys | ForEach-Object { $propertiesDictionary[$_] = $Properties[$_] } $metricsDictionary = New-Object 'System.Collections.Generic.Dictionary[string, double]' $Metrics.Keys | ForEach-Object { $metricsDictionary[$_] = $Metrics[$_] } $telemetryClient.TrackEvent($EventName, $propertiesDictionary, $metricsDictionary); # Flushing should increase the chance of success in uploading telemetry logs Flush-TelemetryClient -NoStatus:$NoStatus } catch { # Telemetry should be best-effort. Failures while trying to handle telemetry should not # cause exceptions in the app itself. Write-Log -Message "Set-TelemetryEvent failed:" -Exception $_ -Level Error } } function Set-TelemetryException { <# .SYNOPSIS Posts a new telemetry event to the configured Application Insights instance indicating that an exception occurred in this this module. .DESCRIPTION Posts a new telemetry event to the configured Application Insights instance indicating that an exception occurred in this this module. The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub .PARAMETER Exception The exception that just occurred. .PARAMETER ErrorBucket A property to be added to the Exception being logged to make it easier to filter to exceptions resulting from similar scenarios. .PARAMETER Properties Additional properties that the caller may wish to be associated with this exception. .PARAMETER NoFlush It's not recommended to use this unless the exception is coming from Flush-TelemetryClient. By default, every time a new exception is logged, the telemetry client will be flushed to ensure that the event is published to the Application Insights. Use of this switch prevents that automatic flushing (helpful in the scenario where the exception occurred when trying to do the actual Flush). .PARAMETER NoStatus If this switch is specified, long-running commands will run on the main thread with no commandline status update. When not specified, those commands run in the background, enabling the command prompt to provide status information. .EXAMPLE Set-TelemetryException $_ Used within the context of a catch statement, this will post the exception that just occurred, along with a default set of properties. If the telemetry client needs to be created to accomplish this, and the required assemblies are not available on the local machine, the download status will be presented at the command prompt. .EXAMPLE Set-TelemetryException $_ -NoStatus Used within the context of a catch statement, this will post the exception that just occurred, along with a default set of properties. If the telemetry client needs to be created to accomplish this, and the required assemblies are not available on the local machine, the command prompt will appear to hang while they are downloaded. .NOTES Because of the short-running nature of this module, we always "flush" the events as soon as they have been posted to ensure that they make it to Application Insights. #> [CmdletBinding(SupportsShouldProcess)] [Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess", "", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")] param( [Parameter(Mandatory)] [System.Exception] $Exception, [string] $ErrorBucket, [hashtable] $Properties = @{}, [switch] $NoFlush, [switch] $NoStatus ) if (Get-GitHubConfiguration -Name DisableTelemetry) { Write-Log -Message "Telemetry has been disabled via configuration. Skipping reporting exception." -Level Verbose return } Write-InvocationLog -ExcludeParameter @('Exception', 'Properties', 'NoFlush') try { $telemetryClient = Get-TelemetryClient -NoStatus:$NoStatus $propertiesDictionary = New-Object 'System.Collections.Generic.Dictionary[string,string]' $propertiesDictionary['Message'] = $Exception.Message $propertiesDictionary['HResult'] = "0x{0}" -f [Convert]::ToString($Exception.HResult, 16) $Properties.Keys | ForEach-Object { $propertiesDictionary[$_] = $Properties[$_] } if (-not [String]::IsNullOrWhiteSpace($ErrorBucket)) { $propertiesDictionary['ErrorBucket'] = $ErrorBucket } $telemetryClient.TrackException($Exception, $propertiesDictionary); # Flushing should increase the chance of success in uploading telemetry logs if (-not $NoFlush) { Flush-TelemetryClient -NoStatus:$NoStatus } } catch { # Telemetry should be best-effort. Failures while trying to handle telemetry should not # cause exceptions in the app itself. Write-Log -Message "Set-TelemetryException failed:" -Exception $_ -Level Error } } function Flush-TelemetryClient { <# .SYNOPSIS Flushes the buffer of stored telemetry events to the configured Applications Insights instance. .DESCRIPTION Flushes the buffer of stored telemetry events to the configured Applications Insights instance. The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub .PARAMETER NoStatus If this switch is specified, long-running commands will run on the main thread with no commandline status update. When not specified, those commands run in the background, enabling the command prompt to provide status information. .EXAMPLE Flush-TelemetryClient Attempts to push all buffered telemetry events for this telemetry client immediately to Application Insights. If the telemetry client needs to be created to accomplish this, and the required assemblies are not available on the local machine, the download status will be presented at the command prompt. .EXAMPLE Flush-TelemetryClient -NoStatus Attempts to push all buffered telemetry events for this telemetry client immediately to Application Insights. If the telemetry client needs to be created to accomplish this, and the required assemblies are not available on the local machine, the command prompt will appear to hang while they are downloaded. #> [CmdletBinding(SupportsShouldProcess)] [Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSUseApprovedVerbs", "", Justification="Internal-only helper method. Matches the internal method that is called.")] [Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSShouldProcess", "", Justification="Methods called within here make use of PSShouldProcess, and the switch is passed on to them inherently.")] param( [switch] $NoStatus ) Write-InvocationLog if (Get-GitHubConfiguration -Name DisableTelemetry) { Write-Log -Message "Telemetry has been disabled via configuration. Skipping flushing of the telemetry client." -Level Verbose return } $telemetryClient = Get-TelemetryClient -NoStatus:$NoStatus try { $telemetryClient.Flush() } catch [System.Net.WebException] { Write-Log -Message "Encountered exception while trying to flush telemetry events:" -Exception $_ -Level Warning Set-TelemetryException -Exception ($_.Exception) -ErrorBucket "TelemetryFlush" -NoFlush -NoStatus:$NoStatus } catch { # Any other scenario is one that we want to identify and fix so that we don't miss telemetry Write-Log -Level Warning -Exception $_ -Message @( "Encountered a problem while trying to record telemetry events.", "This is non-fatal, but it would be helpful if you could report this problem", "to the PowerShellForGitHub team for further investigation:") } } # SIG # Begin signature block # MIIkXQYJKoZIhvcNAQcCoIIkTjCCJEoCAQExDzANBglghkgBZQMEAgEFADB5Bgor # BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG # KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCCivam77xyPVsLq # RbXOuMaobosN7Nv91MSZW48gE3NaSaCCDYUwggYDMIID66ADAgECAhMzAAABUptA # n1BWmXWIAAAAAAFSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD # VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy # b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p # bmcgUENBIDIwMTEwHhcNMTkwNTAyMjEzNzQ2WhcNMjAwNTAyMjEzNzQ2WjB0MQsw # CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u # ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy # b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB # AQCxp4nT9qfu9O10iJyewYXHlN+WEh79Noor9nhM6enUNbCbhX9vS+8c/3eIVazS # YnVBTqLzW7xWN1bCcItDbsEzKEE2BswSun7J9xCaLwcGHKFr+qWUlz7hh9RcmjYS # kOGNybOfrgj3sm0DStoK8ljwEyUVeRfMHx9E/7Ca/OEq2cXBT3L0fVnlEkfal310 # EFCLDo2BrE35NGRjG+/nnZiqKqEh5lWNk33JV8/I0fIcUKrLEmUGrv0CgC7w2cjm # bBhBIJ+0KzSnSWingXol/3iUdBBy4QQNH767kYGunJeY08RjHMIgjJCdAoEM+2mX # v1phaV7j+M3dNzZ/cdsz3oDfAgMBAAGjggGCMIIBfjAfBgNVHSUEGDAWBgorBgEE # AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQU3f8Aw1sW72WcJ2bo/QSYGzVrRYcw # VAYDVR0RBE0wS6RJMEcxLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh # dGlvbnMgTGltaXRlZDEWMBQGA1UEBRMNMjMwMDEyKzQ1NDEzNjAfBgNVHSMEGDAW # gBRIbmTlUAXTgqoXNzcitW2oynUClTBUBgNVHR8ETTBLMEmgR6BFhkNodHRwOi8v # d3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NybC9NaWNDb2RTaWdQQ0EyMDExXzIw # MTEtMDctMDguY3JsMGEGCCsGAQUFBwEBBFUwUzBRBggrBgEFBQcwAoZFaHR0cDov # L3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9NaWNDb2RTaWdQQ0EyMDEx # XzIwMTEtMDctMDguY3J0MAwGA1UdEwEB/wQCMAAwDQYJKoZIhvcNAQELBQADggIB # AJTwROaHvogXgixWjyjvLfiRgqI2QK8GoG23eqAgNjX7V/WdUWBbs0aIC3k49cd0 # zdq+JJImixcX6UOTpz2LZPFSh23l0/Mo35wG7JXUxgO0U+5drbQht5xoMl1n7/TQ # 4iKcmAYSAPxTq5lFnoV2+fAeljVA7O43szjs7LR09D0wFHwzZco/iE8Hlakl23ZT # 7FnB5AfU2hwfv87y3q3a5qFiugSykILpK0/vqnlEVB0KAdQVzYULQ/U4eFEjnis3 # Js9UrAvtIhIs26445Rj3UP6U4GgOjgQonlRA+mDlsh78wFSGbASIvK+fkONUhvj8 # B8ZHNn4TFfnct+a0ZueY4f6aRPxr8beNSUKn7QW/FQmn422bE7KfnqWncsH7vbNh # G929prVHPsaa7J22i9wyHj7m0oATXJ+YjfyoEAtd5/NyIYaE4Uu0j1EhuYUo5VaJ # JnMaTER0qX8+/YZRWrFN/heps41XNVjiAawpbAa0fUa3R9RNBjPiBnM0gvNPorM4 # dsV2VJ8GluIQOrJlOvuCrOYDGirGnadOmQ21wPBoGFCWpK56PxzliKsy5NNmAXcE # x7Qb9vUjY1WlYtrdwOXTpxN4slzIht69BaZlLIjLVWwqIfuNrhHKNDM9K+v7vgrI # bf7l5/665g0gjQCDCN6Q5sxuttTAEKtJeS/pkpI+DbZ/MIIHejCCBWKgAwIBAgIK # YQ6Q0gAAAAAAAzANBgkqhkiG9w0BAQsFADCBiDELMAkGA1UEBhMCVVMxEzARBgNV # BAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jv # c29mdCBDb3Jwb3JhdGlvbjEyMDAGA1UEAxMpTWljcm9zb2Z0IFJvb3QgQ2VydGlm # aWNhdGUgQXV0aG9yaXR5IDIwMTEwHhcNMTEwNzA4MjA1OTA5WhcNMjYwNzA4MjEw # OTA5WjB+MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE # BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSgwJgYD # VQQDEx9NaWNyb3NvZnQgQ29kZSBTaWduaW5nIFBDQSAyMDExMIICIjANBgkqhkiG # 9w0BAQEFAAOCAg8AMIICCgKCAgEAq/D6chAcLq3YbqqCEE00uvK2WCGfQhsqa+la # UKq4BjgaBEm6f8MMHt03a8YS2AvwOMKZBrDIOdUBFDFC04kNeWSHfpRgJGyvnkmc # 6Whe0t+bU7IKLMOv2akrrnoJr9eWWcpgGgXpZnboMlImEi/nqwhQz7NEt13YxC4D # dato88tt8zpcoRb0RrrgOGSsbmQ1eKagYw8t00CT+OPeBw3VXHmlSSnnDb6gE3e+ # lD3v++MrWhAfTVYoonpy4BI6t0le2O3tQ5GD2Xuye4Yb2T6xjF3oiU+EGvKhL1nk # kDstrjNYxbc+/jLTswM9sbKvkjh+0p2ALPVOVpEhNSXDOW5kf1O6nA+tGSOEy/S6 # A4aN91/w0FK/jJSHvMAhdCVfGCi2zCcoOCWYOUo2z3yxkq4cI6epZuxhH2rhKEmd # X4jiJV3TIUs+UsS1Vz8kA/DRelsv1SPjcF0PUUZ3s/gA4bysAoJf28AVs70b1FVL # 5zmhD+kjSbwYuER8ReTBw3J64HLnJN+/RpnF78IcV9uDjexNSTCnq47f7Fufr/zd # sGbiwZeBe+3W7UvnSSmnEyimp31ngOaKYnhfsi+E11ecXL93KCjx7W3DKI8sj0A3 # T8HhhUSJxAlMxdSlQy90lfdu+HggWCwTXWCVmj5PM4TasIgX3p5O9JawvEagbJjS # 4NaIjAsCAwEAAaOCAe0wggHpMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBRI # bmTlUAXTgqoXNzcitW2oynUClTAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTAL # BgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBRyLToCMZBD # uRQFTuHqp8cx0SOJNDBaBgNVHR8EUzBRME+gTaBLhklodHRwOi8vY3JsLm1pY3Jv # c29mdC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXQyMDExXzIwMTFf # MDNfMjIuY3JsMF4GCCsGAQUFBwEBBFIwUDBOBggrBgEFBQcwAoZCaHR0cDovL3d3 # dy5taWNyb3NvZnQuY29tL3BraS9jZXJ0cy9NaWNSb29DZXJBdXQyMDExXzIwMTFf # MDNfMjIuY3J0MIGfBgNVHSAEgZcwgZQwgZEGCSsGAQQBgjcuAzCBgzA/BggrBgEF # BQcCARYzaHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraW9wcy9kb2NzL3ByaW1h # cnljcHMuaHRtMEAGCCsGAQUFBwICMDQeMiAdAEwAZQBnAGEAbABfAHAAbwBsAGkA # YwB5AF8AcwB0AGEAdABlAG0AZQBuAHQALiAdMA0GCSqGSIb3DQEBCwUAA4ICAQBn # 8oalmOBUeRou09h0ZyKbC5YR4WOSmUKWfdJ5DJDBZV8uLD74w3LRbYP+vj/oCso7 # v0epo/Np22O/IjWll11lhJB9i0ZQVdgMknzSGksc8zxCi1LQsP1r4z4HLimb5j0b # pdS1HXeUOeLpZMlEPXh6I/MTfaaQdION9MsmAkYqwooQu6SpBQyb7Wj6aC6VoCo/ # KmtYSWMfCWluWpiW5IP0wI/zRive/DvQvTXvbiWu5a8n7dDd8w6vmSiXmE0OPQvy # CInWH8MyGOLwxS3OW560STkKxgrCxq2u5bLZ2xWIUUVYODJxJxp/sfQn+N4sOiBp # mLJZiWhub6e3dMNABQamASooPoI/E01mC8CzTfXhj38cbxV9Rad25UAqZaPDXVJi # hsMdYzaXht/a8/jyFqGaJ+HNpZfQ7l1jQeNbB5yHPgZ3BtEGsXUfFL5hYbXw3MYb # BL7fQccOKO7eZS/sl/ahXJbYANahRr1Z85elCUtIEJmAH9AAKcWxm6U/RXceNcbS # oqKfenoi+kiVH6v7RyOA9Z74v2u3S5fi63V4GuzqN5l5GEv/1rMjaHXmr/r8i+sL # gOppO6/8MO0ETI7f33VtY5E90Z1WTk+/gFcioXgRMiF670EKsT/7qMykXcGhiJtX # cVZOSEXAQsmbdlsKgEhr/Xmfwb1tbWrJUnMTDXpQzTGCFi4wghYqAgEBMIGVMH4x # CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt # b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01p # Y3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTECEzMAAAFSm0CfUFaZdYgAAAAA # AVIwDQYJYIZIAWUDBAIBBQCgga4wGQYJKoZIhvcNAQkDMQwGCisGAQQBgjcCAQQw # HAYKKwYBBAGCNwIBCzEOMAwGCisGAQQBgjcCARUwLwYJKoZIhvcNAQkEMSIEIHKq # S+IyEZBIhY/ulYmDbW9/rbMHPx1epV9Qkp+M1tz3MEIGCisGAQQBgjcCAQwxNDAy # oBSAEgBNAGkAYwByAG8AcwBvAGYAdKEagBhodHRwOi8vd3d3Lm1pY3Jvc29mdC5j # b20wDQYJKoZIhvcNAQEBBQAEggEAhYCC927xlqAU3b1Us4ZnYJdi2qgaKHifD9Hl # gNVEQij6J0SLpgVAM5aUD6lv0Io/ssVOYOfHna0MfMChIIU2eOuJOdEPkjG/hq5f # HFlMIuyqHyHX9uk+8NriOBeVa4Rb/p4722ZoPjoD/xjRN4hCy0ttSOJHaSP3bqUa # DFrxxoctpzA6NgC/Q2igU80WmHyUxIs0mHvRP1TcJLUvbCo/J3dkQAurs7gW0Ppp # ga18rX+4FhipJQhoP+5Xd2kFuthykXbStzthlvIut31hALwKGNE+wccd6eAoQwwh # zciTUK4giO4h7SmkiTxavUV4GQkXafJSZ9w8sIcltsKXxmxvvKGCE7gwghO0Bgor # BgEEAYI3AwMBMYITpDCCE6AGCSqGSIb3DQEHAqCCE5EwghONAgEDMQ8wDQYJYIZI # AWUDBAIBBQAwggFWBgsqhkiG9w0BCRABBKCCAUUEggFBMIIBPQIBAQYKKwYBBAGE # WQoDATAxMA0GCWCGSAFlAwQCAQUABCDrBnyJhc/PGdKoMnrBfZxCl1cDFnsWH2qb # 7G4eh8dhogIGXYjetduMGBEyMDE5MDkyNDIxNDY0OS43WjAHAgEBgAIB9KCB1KSB # 0TCBzjELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcT # B1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEpMCcGA1UE # CxMgTWljcm9zb2Z0IE9wZXJhdGlvbnMgUHVlcnRvIFJpY28xJjAkBgNVBAsTHVRo # YWxlcyBUU1MgRVNOOkY1MjgtMzc3Ny04QTc2MSUwIwYDVQQDExxNaWNyb3NvZnQg # VGltZS1TdGFtcCBTZXJ2aWNloIIPIjCCBPUwggPdoAMCAQICEzMAAAECkWNcxbRZ # uTwAAAAAAQIwDQYJKoZIhvcNAQELBQAwfDELMAkGA1UEBhMCVVMxEzARBgNVBAgT # Cldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29m # dCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENB # IDIwMTAwHhcNMTkwOTA2MjA0MTE2WhcNMjAxMjA0MjA0MTE2WjCBzjELMAkGA1UE # BhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAc # BgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEpMCcGA1UECxMgTWljcm9zb2Z0 # IE9wZXJhdGlvbnMgUHVlcnRvIFJpY28xJjAkBgNVBAsTHVRoYWxlcyBUU1MgRVNO # OkY1MjgtMzc3Ny04QTc2MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBT # ZXJ2aWNlMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxH1wHsUNMysE # jyH9PNRzLIf9YyfJb5PE/HfTysXbYrrkrp3QKD9VDKvfG2hP6KvQwSFn+G9djmw7 # wXgdK7Z+uSe3fQ9hFNBbQjWDOA1ztOCBtzF9jglxdK2ozT/c0Zm6yIooOXxS8VXz # mKsZi6I/9vfqep7pPnOTWBUgYfHmcUh18/IeOyehZfqA7F+ogNq98V5v8CTuUqpk # AdSB0BlTTwoJiRUpgu1ltpHJDZbX8oDtw99xPXu76vp0kdk18yqcJauItnP2xN2S # lOdCC8Gvot0snxvR7bi1oxf3zJKrJ6dzVsF+hrj2tqwp6/8CjXvBzexM7U84SQlD # M6Jvo7CI1wIDAQABo4IBGzCCARcwHQYDVR0OBBYEFD8CBo7X1XrsRlaDWDIJ+/e5 # ULW2MB8GA1UdIwQYMBaAFNVjOlyKMZDzQ3t8RhvFM2hahW1VMFYGA1UdHwRPME0w # S6BJoEeGRWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2kvY3JsL3Byb2R1Y3Rz # L01pY1RpbVN0YVBDQV8yMDEwLTA3LTAxLmNybDBaBggrBgEFBQcBAQROMEwwSgYI # KwYBBQUHMAKGPmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWlj # VGltU3RhUENBXzIwMTAtMDctMDEuY3J0MAwGA1UdEwEB/wQCMAAwEwYDVR0lBAww # CgYIKwYBBQUHAwgwDQYJKoZIhvcNAQELBQADggEBAJ0ygzFeIY3qVg9oW/+4hWF0 # +vnQ9ETQf7iNnBQQ6tNTy8ksXsBGLMx4r9mbFzO4k9CGbspJkElen4WatfmNET6A # Pv6CQ+VNpFOLL4D/eNU4UmI8KGHXtnHP99Kq1sqV6OQbssm/g+2D/W7upUjds0aB # 7zkGQO3TGVNSwrxXEDbMZBKrgl+QXlNI8IYdCOYp2AlN+Jlp0JZDaP8rlbRADM/E # 2GuPdB60mn0OqWvTgSJXUi9k0CFjTRNQHIEYaFOURyVhMLOEYbsCC/b6oaQ6/W2Z # 5GOosIRO4Xf/5ZBaPETMd+MxGxsN+Gty4CUBdkysmS0Gv7zsXBc3O3/zUXCQ46Qw # ggZxMIIEWaADAgECAgphCYEqAAAAAAACMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYD # VQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEe # MBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3Nv # ZnQgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgMjAxMDAeFw0xMDA3MDEyMTM2 # NTVaFw0yNTA3MDEyMTQ2NTVaMHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNo # aW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29y # cG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEw # MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqR0NvHcRijog7PwTl/X6 # f2mUa3RUENWlCgCChfvtfGhLLF/Fw+Vhwna3PmYrW/AVUycEMR9BGxqVHc4JE458 # YTBZsTBED/FgiIRUQwzXTbg4CLNC3ZOs1nMwVyaCo0UN0Or1R4HNvyRgMlhgRvJY # R4YyhB50YWeRX4FUsc+TTJLBxKZd0WETbijGGvmGgLvfYfxGwScdJGcSchohiq9L # ZIlQYrFd/XcfPfBXday9ikJNQFHRD5wGPmd/9WbAA5ZEfu/QS/1u5ZrKsajyeioK # MfDaTgaRtogINeh4HLDpmc085y9Euqf03GS9pAHBIAmTeM38vMDJRF1eFpwBBU8i # TQIDAQABo4IB5jCCAeIwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFNVjOlyK # MZDzQ3t8RhvFM2hahW1VMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud # DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFNX2VsuP6KJcYmjR # PZSQW9fOmhjEMFYGA1UdHwRPME0wS6BJoEeGRWh0dHA6Ly9jcmwubWljcm9zb2Z0 # LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNy # bDBaBggrBgEFBQcBAQROMEwwSgYIKwYBBQUHMAKGPmh0dHA6Ly93d3cubWljcm9z # b2Z0LmNvbS9wa2kvY2VydHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYtMjMuY3J0MIGg # BgNVHSABAf8EgZUwgZIwgY8GCSsGAQQBgjcuAzCBgTA9BggrBgEFBQcCARYxaHR0 # cDovL3d3dy5taWNyb3NvZnQuY29tL1BLSS9kb2NzL0NQUy9kZWZhdWx0Lmh0bTBA # BggrBgEFBQcCAjA0HjIgHQBMAGUAZwBhAGwAXwBQAG8AbABpAGMAeQBfAFMAdABh # AHQAZQBtAGUAbgB0AC4gHTANBgkqhkiG9w0BAQsFAAOCAgEAB+aIUQ3ixuCYP4Fx # Az2do6Ehb7Prpsz1Mb7PBeKp/vpXbRkws8LFZslq3/Xn8Hi9x6ieJeP5vO1rVFcI # K1GCRBL7uVOMzPRgEop2zEBAQZvcXBf/XPleFzWYJFZLdO9CEMivv3/Gf/I3fVo/ # HPKZeUqRUgCvOA8X9S95gWXZqbVr5MfO9sp6AG9LMEQkIjzP7QOllo9ZKby2/QTh # cJ8ySif9Va8v/rbljjO7Yl+a21dA6fHOmWaQjP9qYn/dxUoLkSbiOewZSnFjnXsh # bcOco6I8+n99lmqQeKZt0uGc+R38ONiU9MalCpaGpL2eGq4EQoO4tYCbIjggtSXl # ZOz39L9+Y1klD3ouOVd2onGqBooPiRa6YacRy5rYDkeagMXQzafQ732D8OE7cQnf # XXSYIghh2rBQHm+98eEA3+cxB6STOvdlR3jo+KhIq/fecn5ha293qYHLpwmsObvs # xsvYgrRyzR30uIUBHoD7G4kqVDmyW9rIDVWZeodzOwjmmC3qjeAzLhIp9cAvVCch # 98isTtoouLGp25ayp0Kiyc8ZQU3ghvkqmqMRZjDTu3QyS99je/WZii8bxyGvWbWu # 3EQ8l1Bx16HSxVXjad5XwdHeMMD9zOZN+w2/XU/pnR4ZOC+8z1gFLu8NoFA12u8J # JxzVs341Hgi62jbb01+P3nSISRKhggOwMIICmAIBATCB/qGB1KSB0TCBzjELMAkG # A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx # HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEpMCcGA1UECxMgTWljcm9z # b2Z0IE9wZXJhdGlvbnMgUHVlcnRvIFJpY28xJjAkBgNVBAsTHVRoYWxlcyBUU1Mg # RVNOOkY1MjgtMzc3Ny04QTc2MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt # cCBTZXJ2aWNloiUKAQEwCQYFKw4DAhoFAAMVABfpv+2EFOX+Mx4pxziWE5RxPf2v # oIHeMIHbpIHYMIHVMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQ # MA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u # MSkwJwYDVQQLEyBNaWNyb3NvZnQgT3BlcmF0aW9ucyBQdWVydG8gUmljbzEnMCUG # A1UECxMebkNpcGhlciBOVFMgRVNOOjRERTktMEM1RS0zRTA5MSswKQYDVQQDEyJN # aWNyb3NvZnQgVGltZSBTb3VyY2UgTWFzdGVyIENsb2NrMA0GCSqGSIb3DQEBBQUA # AgUA4TSNCjAiGA8yMDE5MDkyNDIwMzkzOFoYDzIwMTkwOTI1MjAzOTM4WjB3MD0G # CisGAQQBhFkKBAExLzAtMAoCBQDhNI0KAgEAMAoCAQACAiMhAgH/MAcCAQACAhq9 # MAoCBQDhNd6KAgEAMDYGCisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwGgCjAI # AgEAAgMW42ChCjAIAgEAAgMHoSAwDQYJKoZIhvcNAQEFBQADggEBAGsBJVT2l1xH # gXv/i1PLhRrWmBdodl5L5bEKT9jbuVc+NfcBdzXT6xbN9jf32wd4jGWgY08YTZ0B # ut552lY1Q50BKkfg1yZ0EhX0vD6vMg1F8OSReea4xMEI1dQGF4AKTk8wEmQWYhve # nNLWW0vRWsGMiquEQdwA4NvTziSqSjCqcvKleOpupeG2C0JRhvhHdhbhQeHZ8QuA # 0PhvXfuGKJ/W5g+aXZ5gkXc2RYTH5jLVuc4Gg7UcYY5VWRiXSFor0pg7jvsBq39b # dFcsKL1la9QXXPMjOaAQamaDQgnT6Bzg7+6ovh+ND6/t2vhdkamsOTgr++ccm5c/ # pnH5X0BBi3kxggL1MIIC8QIBATCBkzB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK # V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 # IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg # MjAxMAITMwAAAQKRY1zFtFm5PAAAAAABAjANBglghkgBZQMEAgEFAKCCATIwGgYJ # KoZIhvcNAQkDMQ0GCyqGSIb3DQEJEAEEMC8GCSqGSIb3DQEJBDEiBCCgZJ6uGCYd # 5+CnOdK91KrosrvzLDr3j9n69Cc3W8GnPTCB4gYLKoZIhvcNAQkQAgwxgdIwgc8w # gcwwgbEEFBfpv+2EFOX+Mx4pxziWE5RxPf2vMIGYMIGApH4wfDELMAkGA1UEBhMC # VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV # BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRp # bWUtU3RhbXAgUENBIDIwMTACEzMAAAECkWNcxbRZuTwAAAAAAQIwFgQUTpoJrl6v # 4c8nRkz3qjQBG0yyR2IwDQYJKoZIhvcNAQELBQAEggEACajlkuK6ZXU1NpIP8OG0 # k5mZTFtlvnP/nbaIK+gpgOGZ6xL9aS3TbijDjhVGoNql/6vt09twSrinrw+eSKZz # KwX3OZ7WJZcyDoCxSEUl/wt2rwz6SgrRErKyqL7cbnFGAE43a/dO/vblhpQh7Fd6 # 2Ayyfwcxvb4fmbWxW1z9L94HdJTZJNPhfAmH/m2tfPtrLT+3prPa9G7+128MA6u0 # /CN3F8WUWz1JBfbZhK2hx/QhnFwC+txUpaLUcEM62QFGJ2Jx2Sz7/uaXpBE3KRO5 # IkK7Nd613605mnqQHWSYAA5fAbtS93Gdp7NIQhdGuqhkK5IKtv8KrvGHgfvzlEgQ # 6Q== # SIG # End signature block |