????

Your IP : 3.138.112.77


Current Path : C:/Windows/System32/Printing_Admin_Scripts/en-US/
Upload File :
Current File : C:/Windows/System32/Printing_Admin_Scripts/en-US/prnjobs.vbs

��'----------------------------------------------------------------------

'

' Copyright (c) Microsoft Corporation. All rights reserved.

'

' Abstract:

' prnjobs.vbs - job control script for WMI on Windows 

'     used to pause, resume, cancel and list jobs

'

' Usage:

' prnjobs [-zmxl?] [-s server] [-p printer] [-j jobid] [-u user name] [-w password]

'

' Examples:

' prnjobs -z -j jobid -p printer

' prnjobs -l -p printer

'

'----------------------------------------------------------------------



option explicit



'

' Debugging trace flags, to enable debug output trace message

' change gDebugFlag to true.

'

const kDebugTrace = 1

const kDebugError = 2

dim   gDebugFlag



gDebugFlag = false



'

' Operation action values.

'

const kActionUnknown    = 0

const kActionPause      = 1

const kActionResume     = 2

const kActionCancel     = 3

const kActionList       = 4



const kErrorSuccess     = 0

const KErrorFailure     = 1



const kNameSpace        = "root\cimv2"



'

' Job status constants

'

const kJobPaused        = 1

const kJobError         = 2

const kJobDeleting      = 4

const kJobSpooling      = 8

const kJobPrinting      = 16

const kJobOffline       = 32

const kJobPaperOut      = 64

const kJobPrinted       = 128

const kJobDeleted       = 256

const kJobBlockedDevq   = 512

const kJobUserInt       = 1024

const kJobRestarted     = 2048

const kJobComplete      = 4096



'

' Generic strings

'

const L_Empty_Text                 = ""

const L_Space_Text                 = " "

const L_Error_Text                 = "Error"

const L_Success_Text               = "Success"

const L_Failed_Text                = "Failed"

const L_Hex_Text                   = "0x"

const L_Printer_Text               = "Printer"

const L_Operation_Text             = "Operation"

const L_Provider_Text              = "Provider"

const L_Description_Text           = "Description"

const L_Debug_Text                 = "Debug:"



'

' General usage messages

'

const L_Help_Help_General01_Text   = "Usage: prnjobs [-zmxl?] [-s server][-p printer][-j jobid][-u user name][-w password]"

const L_Help_Help_General02_Text   = "Arguments:"

const L_Help_Help_General03_Text   = "-j     - job id"

const L_Help_Help_General04_Text   = "-l     - list all jobs"

const L_Help_Help_General05_Text   = "-m     - resume the job"

const L_Help_Help_General06_Text   = "-p     - printer name"

const L_Help_Help_General07_Text   = "-s     - server name"

const L_Help_Help_General08_Text   = "-u     - user name"

const L_Help_Help_General09_Text   = "-w     - password"

const L_Help_Help_General10_Text   = "-x     - cancel the job"

const L_Help_Help_General11_Text   = "-z     - pause the job"

const L_Help_Help_General12_Text   = "-?     - display command usage"

const L_Help_Help_General13_Text   = "Examples:"

const L_Help_Help_General14_Text   = "prnjobs -z -p printer -j jobid"

const L_Help_Help_General15_Text   = "prnjobs -l -p printer"

const L_Help_Help_General16_Text   = "prnjobs -l"



'

' Messages to be displayed if the scripting host is not cscript

'

const L_Help_Help_Host01_Text      = "This script should be executed from the Command Prompt using CScript.exe."

const L_Help_Help_Host02_Text      = "For example: CScript script.vbs arguments"

const L_Help_Help_Host03_Text      = ""

const L_Help_Help_Host04_Text      = "To set CScript as the default application to run .VBS files run the following:"

const L_Help_Help_Host05_Text      = "     CScript //H:CScript //S"

const L_Help_Help_Host06_Text      = "You can then run ""script.vbs arguments"" without preceding the script with CScript."



'

' General error messages

'

const L_Text_Error_General01_Text  = "The scripting host could not be determined."

const L_Text_Error_General02_Text  = "Unable to parse command line."

const L_Text_Error_General03_Text  = "Win32 error code"



'

' Miscellaneous messages

'

const L_Text_Msg_General01_Text    = "Unable to enumerate print jobs"

const L_Text_Msg_General02_Text    = "Number of print jobs enumerated"

const L_Text_Msg_General03_Text    = "Unable to set print job"

const L_Text_Msg_General04_Text    = "Unable to get SWbemLocator object"

const L_Text_Msg_General05_Text    = "Unable to connect to WMI service"





'

' Print job properties

'

const L_Text_Msg_Job01_Text        = "Job id"

const L_Text_Msg_Job02_Text        = "Printer"

const L_Text_Msg_Job03_Text        = "Document"

const L_Text_Msg_Job04_Text        = "Data type"

const L_Text_Msg_Job05_Text        = "Driver name"

const L_Text_Msg_Job06_Text        = "Description"

const L_Text_Msg_Job07_Text        = "Elapsed time"

const L_Text_Msg_Job08_Text        = "Machine name"

const L_Text_Msg_Job09_Text        = "Notify"

const L_Text_Msg_Job10_Text        = "Owner"

const L_Text_Msg_Job11_Text        = "Pages printed"

const L_Text_Msg_Job12_Text        = "Parameters"

const L_Text_Msg_Job13_Text        = "Size"

const L_Text_Msg_Job14_Text        = "Start time"

const L_Text_Msg_Job15_Text        = "Until time"

const L_Text_Msg_Job16_Text        = "Status"

const L_Text_Msg_Job17_Text        = "Time submitted"

const L_Text_Msg_Job18_Text        = "Total pages"

const L_Text_Msg_Job19_Text        = "SizeHigh"

const L_Text_Msg_Job20_Text        = "PaperSize"

const L_Text_Msg_Job21_Text        = "PaperWidth"

const L_Text_Msg_Job22_Text        = "PaperLength"

const L_Text_Msg_Job23_Text        = "Color"



'

' Job status strings

'

const L_Text_Msg_Status01_Text     = "The driver cannot print the job"

const L_Text_Msg_Status02_Text     = "Sent to the printer"

const L_Text_Msg_Status03_Text     = "Job has been deleted"

const L_Text_Msg_Status04_Text     = "Job is being deleted"

const L_Text_Msg_Status05_Text     = "An error is associated with the job"

const L_Text_Msg_Status06_Text     = "Printer is offline"

const L_Text_Msg_Status07_Text     = "Printer is out of paper"

const L_Text_Msg_Status08_Text     = "Job is paused"

const L_Text_Msg_Status09_Text     = "Job has printed"

const L_Text_Msg_Status10_Text     = "Job is printing"

const L_Text_Msg_Status11_Text     = "Job has been restarted"

const L_Text_Msg_Status12_Text     = "Job is spooling"

const L_Text_Msg_Status13_Text     = "Printer has an error that requires user intervention"



'

' Action strings

'

const L_Text_Action_General01_Text = "Pause"

const L_Text_Action_General02_Text = "Resume"

const L_Text_Action_General03_Text = "Cancel"



'

' Debug messages

'

const L_Text_Dbg_Msg01_Text        = "In function ListJobs"

const L_Text_Dbg_Msg02_Text        = "In function ExecJob"

const L_Text_Dbg_Msg03_Text        = "In function ParseCommandLine"



main



'

' Main execution starts here

'

sub main



    dim iAction

    dim iRetval

    dim strServer

    dim strPrinter

    dim strJob

    dim strUser

    dim strPassword



    '

    ' Abort if the host is not cscript

    '

    if not IsHostCscript() then



        call wscript.echo(L_Help_Help_Host01_Text & vbCRLF & L_Help_Help_Host02_Text & vbCRLF & _

                          L_Help_Help_Host03_Text & vbCRLF & L_Help_Help_Host04_Text & vbCRLF & _

                          L_Help_Help_Host05_Text & vbCRLF & L_Help_Help_Host06_Text & vbCRLF)



        wscript.quit



    end if



    iRetval = ParseCommandLine(iAction, strServer, strPrinter, strJob, strUser, strPassword)



    if iRetval = kErrorSuccess then



        select case iAction



            case kActionPause

                 iRetval = ExecJob(strServer, strJob, strPrinter, strUser, strPassword, L_Text_Action_General01_Text)



            case kActionResume

                 iRetval = ExecJob(strServer, strJob, strPrinter, strUser, strPassword, L_Text_Action_General02_Text)



            case kActionCancel

                 iRetval = ExecJob(strServer, strJob, strPrinter, strUser, strPassword, L_Text_Action_General03_Text)



            case kActionList

                 iRetval = ListJobs(strServer, strPrinter, strUser, strPassword)



            case else

                 Usage(true)

                 exit sub



        end select



    end if



end sub



'

' Enumerate all print jobs on a printer

'

function ListJobs(strServer, strPrinter, strUser, strPassword)



    on error resume next



    DebugPrint kDebugTrace, L_Text_Dbg_Msg01_Text



    dim Jobs

    dim oJob

    dim oService

    dim iRetval

    dim strTemp

    dim iTotal



    if WmiConnect(strServer, kNameSpace, strUser, strPassword, oService) then



        set Jobs = oService.InstancesOf("Win32_PrintJob")



    else



        ListJobs = kErrorFailure



        exit function



    end if



    if Err.Number <> kErrorSuccess then



        wscript.echo L_Text_Msg_General01_Text & L_Space_Text & L_Error_Text & L_Space_Text _

                     & L_Hex_Text & hex(Err.Number) & L_Space_Text & Err.Description



        ListJobs = kErrorFailure



        exit function



    end if



    iTotal = 0



    for each oJob in Jobs



        '

        ' oJob.Name has the form "printer name, job id". We are isolating the printer name

        '

        strTemp = Mid(oJob.Name, 1, InStr(1, oJob.Name, ",", 1)-1 )



        '

        ' If no printer was specified, then enumerate all jobs

        '

        if strPrinter = null or strPrinter = "" or LCase(strTemp) = LCase(strPrinter) then



            iTotal = iTotal + 1



            wscript.echo L_Empty_Text

            wscript.echo L_Text_Msg_Job01_Text & L_Space_Text & oJob.JobId

            wscript.echo L_Text_Msg_Job02_Text & L_Space_Text & strTemp

            wscript.echo L_Text_Msg_Job03_Text & L_Space_Text & oJob.Document

            wscript.echo L_Text_Msg_Job04_Text & L_Space_Text & oJob.DataType

            wscript.echo L_Text_Msg_Job05_Text & L_Space_Text & oJob.DriverName

            wscript.echo L_Text_Msg_Job06_Text & L_Space_Text & oJob.Description

            wscript.echo L_Text_Msg_Job07_Text & L_Space_Text & Mid(CStr(oJob.ElapsedTime), 9, 2) & ":" _

                                                              & Mid(CStr(oJob.ElapsedTime), 11, 2) & ":" _

                                                              & Mid(CStr(oJob.ElapsedTime), 13, 2)

            wscript.echo L_Text_Msg_Job08_Text & L_Space_Text & oJob.HostPrintQueue

            wscript.echo L_Text_Msg_Job09_Text & L_Space_Text & oJob.Notify

            wscript.echo L_Text_Msg_Job10_Text & L_Space_Text & oJob.Owner

            wscript.echo L_Text_Msg_Job11_Text & L_Space_Text & oJob.PagesPrinted

            wscript.echo L_Text_Msg_Job12_Text & L_Space_Text & oJob.Parameters

            wscript.echo L_Text_Msg_Job13_Text & L_Space_Text & oJob.Size

            wscript.echo L_Text_Msg_Job19_Text & L_Space_Text & oJob.SizeHigh

            wscript.echo L_Text_Msg_Job20_Text & L_Space_Text & oJob.PaperSize

            wscript.echo L_Text_Msg_Job21_Text & L_Space_Text & oJob.PaperWidth

            wscript.echo L_Text_Msg_Job22_Text & L_Space_Text & oJob.PaperLength

            wscript.echo L_Text_Msg_Job23_Text & L_Space_Text & oJob.Color



            if CStr(oJob.StartTime) <> "********000000.000000+000" and _

               CStr(oJob.UntilTime) <> "********000000.000000+000" then



                wscript.echo L_Text_Msg_Job14_Text & L_Space_Text & Mid(Mid(CStr(oJob.StartTime), 9, 4), 1, 2) & "h" _

                                                                  & Mid(Mid(CStr(oJob.StartTime), 9, 4), 3, 2)

                wscript.echo L_Text_Msg_Job15_Text & L_Space_Text & Mid(Mid(CStr(oJob.UntilTime), 9, 4), 1, 2) & "h" _

                                                                  & Mid(Mid(CStr(oJob.UntilTime), 9, 4), 3, 2)

            end if



            wscript.echo L_Text_Msg_Job16_Text & L_Space_Text & JobStatusToString(oJob.StatusMask)

            wscript.echo L_Text_Msg_Job17_Text & L_Space_Text & Mid(CStr(oJob.TimeSubmitted), 5, 2) & "/" _

                                                              & Mid(CStr(oJob.TimeSubmitted), 7, 2) & "/" _

                                                              & Mid(CStr(oJob.TimeSubmitted), 1, 4) & " " _

                                                              & Mid(CStr(oJob.TimeSubmitted), 9, 2) & ":" _

                                                              & Mid(CStr(oJob.TimeSubmitted), 11, 2) & ":" _

                                                              & Mid(CStr(oJob.TimeSubmitted), 13, 2)

            wscript.echo L_Text_Msg_Job18_Text & L_Space_Text & oJob.TotalPages



            Err.Clear



        end if



    next



    wscript.echo L_Empty_Text

    wscript.echo L_Text_Msg_General02_Text & L_Space_Text & iTotal



    ListJobs = kErrorSuccess



end function



'

' Convert the job status from bit mask to string

'

function JobStatusToString(Status)



    on error resume next



    dim strString



    strString = L_Empty_Text



    if (Status and kJobPaused)      = kJobPaused      then strString = strString & L_Text_Msg_Status08_Text & L_Space_Text end if

    if (Status and kJobError)       = kJobError       then strString = strString & L_Text_Msg_Status05_Text & L_Space_Text end if

    if (Status and kJobDeleting)    = kJobDeleting    then strString = strString & L_Text_Msg_Status04_Text & L_Space_Text end if

    if (Status and kJobSpooling)    = kJobSpooling    then strString = strString & L_Text_Msg_Status12_Text & L_Space_Text end if

    if (Status and kJobPrinting)    = kJobPrinting    then strString = strString & L_Text_Msg_Status10_Text & L_Space_Text end if

    if (Status and kJobOffline)     = kJobOffline     then strString = strString & L_Text_Msg_Status06_Text & L_Space_Text end if

    if (Status and kJobPaperOut)    = kJobPaperOut    then strString = strString & L_Text_Msg_Status07_Text & L_Space_Text end if

    if (Status and kJobPrinted)     = kJobPrinted     then strString = strString & L_Text_Msg_Status09_Text & L_Space_Text end if

    if (Status and kJobDeleted)     = kJobDeleted     then strString = strString & L_Text_Msg_Status03_Text & L_Space_Text end if

    if (Status and kJobBlockedDevq) = kJobBlockedDevq then strString = strString & L_Text_Msg_Status01_Text & L_Space_Text end if

    if (Status and kJobUserInt)     = kJobUserInt     then strString = strString & L_Text_Msg_Status13_Text & L_Space_Text end if

    if (Status and kJobRestarted)   = kJobRestarted   then strString = strString & L_Text_Msg_Status11_Text & L_Space_Text end if

    if (Status and kJobComplete)    = kJobComplete    then strString = strString & L_Text_Msg_Status02_Text & L_Space_Text end if



    JobStatusToString = strString



end function



'

' Pause/Resume/Cancel jobs

'

function ExecJob(strServer, strJob, strPrinter, strUser, strPassword, strCommand)



    on error resume next



    DebugPrint kDebugTrace, L_Text_Dbg_Msg02_Text



    dim oJob

    dim oService

    dim iRetval

    dim uResult

    dim strName



    '

    ' Build up the key. The key for print jobs is "printer-name, job-id"

    '

    strName = strPrinter & ", " & strJob



    iRetval = kErrorFailure



    if WmiConnect(strServer, kNameSpace, strUser, strPassword, oService) then



        set oJob = oService.Get("Win32_PrintJob.Name='" & strName & "'")



    else



        ExecJob = kErrorFailure



        exit function



    end if



    '

    ' Check if getting job instance succeeded

    '

    if Err.Number = kErrorSuccess then



        uResult = kErrorSuccess



        select case strCommand



            case L_Text_Action_General01_Text

                 uResult = oJob.Pause()



            case L_Text_Action_General02_Text

                 uResult = oJob.Resume()



            case L_Text_Action_General03_Text

                 oJob.Delete_()



             case else

                 Usage(true)



        end select



        if Err.Number = kErrorSuccess then



            if uResult = kErrorSuccess then



                wscript.echo L_Success_Text & L_Space_Text & strCommand & L_Space_Text _

                             & L_Text_Msg_Job01_Text & L_Space_Text & strJob _

                             & L_Space_Text & L_Printer_Text & L_Space_Text & strPrinter



                iRetval = kErrorSuccess



            else



                wscript.echo L_Failed_Text & L_Space_Text & strCommand & L_Space_Text _

                             & L_Text_Error_General03_Text & L_Space_Text & uResult



            end if



        else



            wscript.echo L_Text_Msg_General03_Text & L_Space_Text & L_Error_Text & L_Space_Text _

                         & L_Hex_Text & hex(Err.Number) & L_Space_Text & Err.Description



            '

            ' Try getting extended error information

            '

            call LastError()



        end if



   else



        wscript.echo L_Text_Msg_General03_Text & L_Space_Text & L_Error_Text & L_Space_Text _

                     & L_Hex_Text & hex(Err.Number) & L_Space_Text & Err.Description



        '

        ' Try getting extended error information

        '

        call LastError()



    end if



    ExecJob = iRetval



end function



'

' Debug display helper function

'

sub DebugPrint(uFlags, strString)



    if gDebugFlag = true then



        if uFlags = kDebugTrace then



            wscript.echo L_Debug_Text & L_Space_Text & strString



        end if



        if uFlags = kDebugError then



            if Err <> 0 then



                wscript.echo L_Debug_Text & L_Space_Text & strString & L_Space_Text _

                             & L_Error_Text & L_Space_Text & L_Hex_Text & hex(Err.Number) _

                             & L_Space_Text & Err.Description



            end if



        end if



    end if



end sub



'

' Parse the command line into its components

'

function ParseCommandLine(iAction, strServer, strPrinter, strJob, strUser, strPassword)



    on error resume next



    DebugPrint kDebugTrace, L_Text_Dbg_Msg03_Text



    dim oArgs

    dim iIndex



    iAction = kActionUnknown

    iIndex = 0



    set oArgs = wscript.Arguments



    while iIndex < oArgs.Count



        select case oArgs(iIndex)



            case "-z"

                iAction = kActionPause



            case "-m"

                iAction = kActionResume



            case "-x"

                iAction = kActionCancel



            case "-l"

                iAction = kActionList



            case "-p"

                iIndex = iIndex + 1

                strPrinter = oArgs(iIndex)



            case "-s"

                iIndex = iIndex + 1

                strServer = RemoveBackslashes(oArgs(iIndex))



            case "-j"

                iIndex = iIndex + 1

                strJob = oArgs(iIndex)



            case "-u"

                iIndex = iIndex + 1

                strUser = oArgs(iIndex)



            case "-w"

                iIndex = iIndex + 1

                strPassword = oArgs(iIndex)



            case "-?"

                Usage(true)

                exit function



            case else

                Usage(true)

                exit function



        end select



        iIndex = iIndex + 1



    wend



    if Err.Number = kErrorSuccess then



        ParseCommandLine = kErrorSuccess



    else



        wscript.echo L_Text_Error_General02_Text & L_Space_Text & L_Error_Text & L_Space_Text _

                     & L_Hex_Text & hex(Err.Number) & L_Space_text & Err.Description



        ParseCommandLine = kErrorFailure



    end if



end function



'

' Display command usage.

'

sub Usage(bExit)



    wscript.echo L_Help_Help_General01_Text

    wscript.echo L_Empty_Text

    wscript.echo L_Help_Help_General02_Text

    wscript.echo L_Help_Help_General03_Text

    wscript.echo L_Help_Help_General04_Text

    wscript.echo L_Help_Help_General05_Text

    wscript.echo L_Help_Help_General06_Text

    wscript.echo L_Help_Help_General07_Text

    wscript.echo L_Help_Help_General08_Text

    wscript.echo L_Help_Help_General09_Text

    wscript.echo L_Help_Help_General10_Text

    wscript.echo L_Help_Help_General11_Text

    wscript.echo L_Help_Help_General12_Text

    wscript.echo L_Empty_Text

    wscript.echo L_Help_Help_General13_Text

    wscript.echo L_Help_Help_General14_Text

    wscript.echo L_Help_Help_General15_Text

    wscript.echo L_Help_Help_General16_Text



    if bExit then



        wscript.quit(1)



    end if



end sub



'

' Determines which program is being used to run this script.

' Returns true if the script host is cscript.exe

'

function IsHostCscript()



    on error resume next



    dim strFullName

    dim strCommand

    dim i, j

    dim bReturn



    bReturn = false



    strFullName = WScript.FullName



    i = InStr(1, strFullName, ".exe", 1)



    if i <> 0 then



        j = InStrRev(strFullName, "\", i, 1)



        if j <> 0 then



            strCommand = Mid(strFullName, j+1, i-j-1)



            if LCase(strCommand) = "cscript" then



                bReturn = true



            end if



        end if



    end if



    if Err <> 0 then



        wscript.echo L_Text_Error_General01_Text & L_Space_Text & L_Error_Text & L_Space_Text _

                     & L_Hex_Text & hex(Err.Number) & L_Space_Text & Err.Description



    end if



    IsHostCscript = bReturn



end function



'

' Retrieves extended information about the last error that occurred

' during a WBEM operation. The methods that set an SWbemLastError

' object are GetObject, PutInstance, DeleteInstance

'

sub LastError()



    on error resume next



    dim oError



    set oError = CreateObject("WbemScripting.SWbemLastError")



    if Err = kErrorSuccess then



        wscript.echo L_Operation_Text            & L_Space_Text & oError.Operation

        wscript.echo L_Provider_Text             & L_Space_Text & oError.ProviderName

        wscript.echo L_Description_Text          & L_Space_Text & oError.Description

        wscript.echo L_Text_Error_General03_Text & L_Space_Text & oError.StatusCode



    end if



end sub



'

' Connects to the WMI service on a server. oService is returned as a service

' object (SWbemServices)

'

function WmiConnect(strServer, strNameSpace, strUser, strPassword, oService)



    on error resume next



    dim oLocator

    dim bResult



    oService = null



    bResult  = false



    set oLocator = CreateObject("WbemScripting.SWbemLocator")



    if Err = kErrorSuccess then



        set oService = oLocator.ConnectServer(strServer, strNameSpace, strUser, strPassword)



        if Err = kErrorSuccess then



            bResult = true



            oService.Security_.impersonationlevel = 3



            '

            ' Required to perform administrative tasks on the spooler service

            '

            oService.Security_.Privileges.AddAsString "SeLoadDriverPrivilege"



            Err.Clear



        else



            wscript.echo L_Text_Msg_General05_Text & L_Space_Text & L_Error_Text _

                         & L_Space_Text & L_Hex_Text & hex(Err.Number) & L_Space_Text _

                         & Err.Description



        end if



    else



        wscript.echo L_Text_Msg_General04_Text & L_Space_Text & L_Error_Text _

                     & L_Space_Text & L_Hex_Text & hex(Err.Number) & L_Space_Text _

                     & Err.Description



    end if



    WmiConnect = bResult



end function



'

' Remove leading "\\" from server name

'

function RemoveBackslashes(strServer)



    dim strRet



    strRet = strServer



    if Left(strServer, 2) = "\\" and Len(strServer) > 2 then



        strRet = Mid(strServer, 3)



    end if



    RemoveBackslashes = strRet



end function



'' SIG '' Begin signature block

'' SIG '' MIIhXAYJKoZIhvcNAQcCoIIhTTCCIUkCAQExDzANBglg

'' SIG '' hkgBZQMEAgEFADB3BgorBgEEAYI3AgEEoGkwZzAyBgor

'' SIG '' BgEEAYI3AgEeMCQCAQEEEE7wKRaZJ7VNj+Ws4Q8X66sC

'' SIG '' AQACAQACAQACAQACAQAwMTANBglghkgBZQMEAgEFAAQg

'' SIG '' KB4xm2kUt3OhuuVqyIMeDTFOGLaCpXJYI64NQQxGXLqg

'' SIG '' ggrlMIIFBjCCA+6gAwIBAgITMwAAAu0sReTBRc9IRAAA

'' SIG '' AAAC7TANBgkqhkiG9w0BAQsFADCBhDELMAkGA1UEBhMC

'' SIG '' VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcT

'' SIG '' B1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jw

'' SIG '' b3JhdGlvbjEuMCwGA1UEAxMlTWljcm9zb2Z0IFdpbmRv

'' SIG '' d3MgUHJvZHVjdGlvbiBQQ0EgMjAxMTAeFw0yMDEyMTUy

'' SIG '' MTI5MTRaFw0yMTEyMDIyMTI5MTRaMHAxCzAJBgNVBAYT

'' SIG '' AlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQH

'' SIG '' EwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29y

'' SIG '' cG9yYXRpb24xGjAYBgNVBAMTEU1pY3Jvc29mdCBXaW5k

'' SIG '' b3dzMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC

'' SIG '' AQEA1/mOTaZIAMdvXd/Uq3DhEpREugbVndaHjzafKgYv

'' SIG '' XqdiboW0UGKgYBgiM+f66zVMFxocrP4gxe33290l7UFD

'' SIG '' 6iVt6t7BkJDi91lzCGFZMsjlKfRwvDC64ucGyhaS64N5

'' SIG '' uQlvjwH8a8YjNwPwfF2IOU8r1MStiYVtBS6cQPAGT9HK

'' SIG '' FsuKOkieubIYQMwh6F05jPheTP0NvbxlISpy9LEbUYoB

'' SIG '' bbOjZ+GJbjOil7USxnbYK+bEQ+qSCnrHfolbLX5Ajmk3

'' SIG '' uFC11bjuJxA9opD6cmwi2QAs+V4HFuDjAhvJojb8lP/v

'' SIG '' qiZRe4mRvp0xsaQWI2y/Jv5czI7ZBiI6v+0d1QIDAQAB

'' SIG '' o4IBgjCCAX4wHwYDVR0lBBgwFgYKKwYBBAGCNwoDBgYI

'' SIG '' KwYBBQUHAwMwHQYDVR0OBBYEFBX5vmhcu8syt5gpQoPf

'' SIG '' BQEaWSozMFQGA1UdEQRNMEukSTBHMS0wKwYDVQQLEyRN

'' SIG '' aWNyb3NvZnQgSXJlbGFuZCBPcGVyYXRpb25zIExpbWl0

'' SIG '' ZWQxFjAUBgNVBAUTDTIyOTg3OSs0NjMzNDQwHwYDVR0j

'' SIG '' BBgwFoAUqSkCOY4WxJd4zZD5nk+a4XxVr1MwVAYDVR0f

'' SIG '' BE0wSzBJoEegRYZDaHR0cDovL3d3dy5taWNyb3NvZnQu

'' SIG '' Y29tL3BraW9wcy9jcmwvTWljV2luUHJvUENBMjAxMV8y

'' SIG '' MDExLTEwLTE5LmNybDBhBggrBgEFBQcBAQRVMFMwUQYI

'' SIG '' KwYBBQUHMAKGRWh0dHA6Ly93d3cubWljcm9zb2Z0LmNv

'' SIG '' bS9wa2lvcHMvY2VydHMvTWljV2luUHJvUENBMjAxMV8y

'' SIG '' MDExLTEwLTE5LmNydDAMBgNVHRMBAf8EAjAAMA0GCSqG

'' SIG '' SIb3DQEBCwUAA4IBAQAeDDbpx7pwpcs42ObZbp01JdBL

'' SIG '' Ul1/8L2+4IaJVeTRbjYc5hRcGbh3wjkNLBP90gXISlh8

'' SIG '' ZsC7k22x+k89M8JnDPp47a81uAE0kO3eEq9M90XvusY1

'' SIG '' B+2Q2N62wRJAjlvrj8jsX5RPGD69Hf9Tl0+TXE2aZ+FU

'' SIG '' o1vH9WsKRHorLLASNzOO+VrSx+iPN4ht2sHppvFK749M

'' SIG '' fSiTpnwMv1YTQ9gj/AiT+Htn+DYj8k/siV96lsHRhgE8

'' SIG '' xuTSyl306rKlfiuoCI/Q2o1vPpbPMz30r2q9Yd3823uc

'' SIG '' uN9CoFTpeOjSnvjz7uLjnrxDSSoKopMFZgvnGGcLWNEV

'' SIG '' nlxc/H+/MIIF1zCCA7+gAwIBAgIKYQd2VgAAAAAACDAN

'' SIG '' BgkqhkiG9w0BAQsFADCBiDELMAkGA1UEBhMCVVMxEzAR

'' SIG '' BgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1v

'' SIG '' bmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlv

'' SIG '' bjEyMDAGA1UEAxMpTWljcm9zb2Z0IFJvb3QgQ2VydGlm

'' SIG '' aWNhdGUgQXV0aG9yaXR5IDIwMTAwHhcNMTExMDE5MTg0

'' SIG '' MTQyWhcNMjYxMDE5MTg1MTQyWjCBhDELMAkGA1UEBhMC

'' SIG '' VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcT

'' SIG '' B1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jw

'' SIG '' b3JhdGlvbjEuMCwGA1UEAxMlTWljcm9zb2Z0IFdpbmRv

'' SIG '' d3MgUHJvZHVjdGlvbiBQQ0EgMjAxMTCCASIwDQYJKoZI

'' SIG '' hvcNAQEBBQADggEPADCCAQoCggEBAN0Mu6LkLgnj58X3

'' SIG '' lmm8ACG9aTMz760Ey1SA7gaDu8UghNn30ovzOLCrpK0t

'' SIG '' fGJ5Bf/jSj8ENSBw48Tna+CcwDZ16Yox3Y1w5dw3tXRG

'' SIG '' lihbh2AjLL/cR6Vn91EnnnLrB6bJuR47UzV85dPsJ7mH

'' SIG '' HP65ySMJb6hGkcFuljxB08ujP10Cak3saR8lKFw2//1D

'' SIG '' FQqU4Bm0z9/CEuLCWyfuJ3gwi1sqCWsiiVNgFizAaB1T

'' SIG '' uuxJ851hjIVoCXNEXX2iVCvdefcVzzVdbBwrXM68nCOL

'' SIG '' b261Jtk2E8NP1ieuuTI7QZIs4cfNd+iqVE73XAsEh2W0

'' SIG '' QxiosuBtGXfsWiT6SAMCAwEAAaOCAUMwggE/MBAGCSsG

'' SIG '' AQQBgjcVAQQDAgEAMB0GA1UdDgQWBBSpKQI5jhbEl3jN

'' SIG '' kPmeT5rhfFWvUzAZBgkrBgEEAYI3FAIEDB4KAFMAdQBi

'' SIG '' AEMAQTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB

'' SIG '' /zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo0T2UkFvXzpoY

'' SIG '' xDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1p

'' SIG '' Y3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNS

'' SIG '' b29DZXJBdXRfMjAxMC0wNi0yMy5jcmwwWgYIKwYBBQUH

'' SIG '' AQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1p

'' SIG '' Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1

'' SIG '' dF8yMDEwLTA2LTIzLmNydDANBgkqhkiG9w0BAQsFAAOC

'' SIG '' AgEAFPx8cVGlecJusu85Prw8Ug9uKz8QE3P+qGjQSKY0

'' SIG '' TYqWBSbuMUaQYXnW/zguRWv0wOUouNodj4rbCdcax0wK

'' SIG '' NmZqjOwb1wSQqBgXpJu54kAyNnbEwVrGv+QEwOoW06zD

'' SIG '' aO9irN1UbFAwWKbrfP6Up06O9Ox8hnNXwlIhczRa86OK

'' SIG '' VsgE2gcJ7fiL4870fo6u8PYLigj7P8kdcn9TuOu+Y+Dj

'' SIG '' PTFlsIHl8qzNFqSfPaixm8JC0JCEX1Qd/4nquh1HkG+w

'' SIG '' c05Bn0CfX+WhKrIRkXOKISjwzt5zOV8+q1xg7N8DEKjT

'' SIG '' Cen09paFtn9RiGZHGY2isBI9gSpoBXe7kUxie7bBB8e6

'' SIG '' eoc0Aw5LYnqZ6cr8zko3yS2kV3wc/j3cuA9a+tbEswKF

'' SIG '' Ajrqs9lu5GkhN96B0fZ1GQVn05NXXikbOcjuLeHN5EVz

'' SIG '' W9DSznqrFhmCRljQXp2Bs2evbDXyvOU/JOI1ogp1BvYY

'' SIG '' VpnUeCzRBRvr0IgBnaoQ8QXfun4sY7cGmyMhxPl4bOJY

'' SIG '' FwY2K5ESA8yk2fItuvmUnUDtGEXxzopcaz6rA9NwGCoK

'' SIG '' auBfR9HVYwoy8q/XNh8qcFrlQlkIcUtXun6DgfAhPPQc

'' SIG '' wcW5kJMOiEWThumxIJm+mMvFlaRdYtagYwggvXUQd309

'' SIG '' 80W5n5efy1eAbzOpBM93pGIcWX4xghXPMIIVywIBATCB

'' SIG '' nDCBhDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hp

'' SIG '' bmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoT

'' SIG '' FU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEuMCwGA1UEAxMl

'' SIG '' TWljcm9zb2Z0IFdpbmRvd3MgUHJvZHVjdGlvbiBQQ0Eg

'' SIG '' MjAxMQITMwAAAu0sReTBRc9IRAAAAAAC7TANBglghkgB

'' SIG '' ZQMEAgEFAKCCAQQwGQYJKoZIhvcNAQkDMQwGCisGAQQB

'' SIG '' gjcCAQQwHAYKKwYBBAGCNwIBCzEOMAwGCisGAQQBgjcC

'' SIG '' ARUwLwYJKoZIhvcNAQkEMSIEIEwHNDVL7Ac8Zck/Q3ix

'' SIG '' LQVKRUMjMJWh1B84XuPtI/SNMDwGCisGAQQBgjcKAxwx

'' SIG '' LgwsM2NDRlZ2THdFVFZ5K3pxYjVHbFZQWkVKS085VXkx

'' SIG '' MmZyZG9EeXQzbDh3dz0wWgYKKwYBBAGCNwIBDDFMMEqg

'' SIG '' JIAiAE0AaQBjAHIAbwBzAG8AZgB0ACAAVwBpAG4AZABv

'' SIG '' AHcAc6EigCBodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20v

'' SIG '' d2luZG93czANBgkqhkiG9w0BAQEFAASCAQB5iyVixAjl

'' SIG '' mFOSNfXR2T+BmYC3Soyqi0ExpjaWApm7Xl7CfdF9DC4n

'' SIG '' /LqBVqSBCXgCksD3DDbMQHrTi65N5uLqPC1y6vIe22Hb

'' SIG '' h+ZpGfBFwCs7fiNClMKnUYeTTsvMhk9VXxWkYUwjSIDK

'' SIG '' njI8+89bQxmuKBySF4k2fRVp0NCNbuwtF5lhC04iEp/x

'' SIG '' Ccs3/9gYJRVA3nEtkVMA6BS4qrVg9FFdIp4gDuaH+fvW

'' SIG '' BVBEgxLplsiW6repGjZXm6TNjpHfP1SfqIBpaqIn3wws

'' SIG '' RbfrO9WiDkk/0BhDIG2YrDNMdSd6J1oGtOysJmTEuwPG

'' SIG '' rw2ki6R+96ndD2EpOuydtgRcoYIS+zCCEvcGCisGAQQB

'' SIG '' gjcDAwExghLnMIIS4wYJKoZIhvcNAQcCoIIS1DCCEtAC

'' SIG '' AQMxDzANBglghkgBZQMEAgEFADCCAVkGCyqGSIb3DQEJ

'' SIG '' EAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMBMDEw

'' SIG '' DQYJYIZIAWUDBAIBBQAEIA79eHLsHv65uaigIfTOFbfY

'' SIG '' j85US3zOzyMBq96TnkfEAgZgivkVw4gYEzIwMjEwNTA4

'' SIG '' MDUxMzU1LjQ1OFowBIACAfSggdikgdUwgdIxCzAJBgNV

'' SIG '' BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYD

'' SIG '' VQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg

'' SIG '' Q29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJ

'' SIG '' cmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UE

'' SIG '' CxMdVGhhbGVzIFRTUyBFU046ODZERi00QkJDLTkzMzUx

'' SIG '' JTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNl

'' SIG '' cnZpY2Wggg5KMIIE+TCCA+GgAwIBAgITMwAAAT7OyndS

'' SIG '' xfc0KwAAAAABPjANBgkqhkiG9w0BAQsFADB8MQswCQYD

'' SIG '' VQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4G

'' SIG '' A1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0

'' SIG '' IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQg

'' SIG '' VGltZS1TdGFtcCBQQ0EgMjAxMDAeFw0yMDEwMTUxNzI4

'' SIG '' MjVaFw0yMjAxMTIxNzI4MjVaMIHSMQswCQYDVQQGEwJV

'' SIG '' UzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMH

'' SIG '' UmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBv

'' SIG '' cmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQgSXJlbGFu

'' SIG '' ZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRo

'' SIG '' YWxlcyBUU1MgRVNOOjg2REYtNEJCQy05MzM1MSUwIwYD

'' SIG '' VQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNl

'' SIG '' MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA

'' SIG '' vFTEyDzZfpws404gSC0kt4VSyX/vaxwOfri89gQdxvfQ

'' SIG '' NvvQARebKR3plqHz0ZHZW+bmFxyGtTh9zw20LSdpMcWY

'' SIG '' DFc1rzPuJvTNAnDkKyQP+TqrW7j/lDlCLbqi8ubo4EqS

'' SIG '' pkHra0Zt15j2r/IJGZbu3QaRY6qYMZxxkkw4Y5ubAwV3

'' SIG '' E1p+TNzFg8nzgJ9kwEM4xvZAf9NhHhM2K/jx092xmKxy

'' SIG '' Ffp0X0tboY9d1OyhdCXl8spOigE32g8zH12Y2NXTfI41

'' SIG '' 41LQU+9dKOKQ7YFF1kwofuGGwxMU0CsDimODWgr6VFVc

'' SIG '' NDd2tQbGubgdfLBGEBfje0PyoOOXEO1m4QIDAQABo4IB

'' SIG '' GzCCARcwHQYDVR0OBBYEFJNa8534u9BiLWvwtbZUDraG

'' SIG '' iP17MB8GA1UdIwQYMBaAFNVjOlyKMZDzQ3t8RhvFM2ha

'' SIG '' hW1VMFYGA1UdHwRPME0wS6BJoEeGRWh0dHA6Ly9jcmwu

'' SIG '' bWljcm9zb2Z0LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01p

'' SIG '' Y1RpbVN0YVBDQV8yMDEwLTA3LTAxLmNybDBaBggrBgEF

'' SIG '' BQcBAQROMEwwSgYIKwYBBQUHMAKGPmh0dHA6Ly93d3cu

'' SIG '' bWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljVGltU3Rh

'' SIG '' UENBXzIwMTAtMDctMDEuY3J0MAwGA1UdEwEB/wQCMAAw

'' SIG '' EwYDVR0lBAwwCgYIKwYBBQUHAwgwDQYJKoZIhvcNAQEL

'' SIG '' BQADggEBAKaz+RF9Wp+GkrkVj6cY5djCdVepJFyufABJ

'' SIG '' 1qKlCWXhOoYAcB7w7ZxzRC4Z2iY4bc9QU93sa2YDwhQw

'' SIG '' FPeqfKZfWSkmrcus49QB9EGPc9FwIgfBQK2AJthaYEys

'' SIG '' TawS40f6yc6w/ybotAclqFAr+BPDt0zGZoExvGc8ZpVA

'' SIG '' ZpvSyXbzGLuKtm8K+R73VC4DUp4sRFck1Cx8ILvYdYSN

'' SIG '' YqORyh0Gwi3v4HWmw6HutafFOdFjaKQEcSsn0SNLfY25

'' SIG '' qOqnu6DL+NAo7z3qD0eBDISilWob5dllDcONfsu99UEt

'' SIG '' Onrbdl292yGNIyxilpI8XGNgGcZxKN6VqLBxAuKlWOYw

'' SIG '' ggZxMIIEWaADAgECAgphCYEqAAAAAAACMA0GCSqGSIb3

'' SIG '' DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK

'' SIG '' V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG

'' SIG '' A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTIwMAYD

'' SIG '' VQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0ZSBB

'' SIG '' dXRob3JpdHkgMjAxMDAeFw0xMDA3MDEyMTM2NTVaFw0y

'' SIG '' NTA3MDEyMTQ2NTVaMHwxCzAJBgNVBAYTAlVTMRMwEQYD

'' SIG '' VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25k

'' SIG '' MR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24x

'' SIG '' JjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBD

'' SIG '' QSAyMDEwMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB

'' SIG '' CgKCAQEAqR0NvHcRijog7PwTl/X6f2mUa3RUENWlCgCC

'' SIG '' hfvtfGhLLF/Fw+Vhwna3PmYrW/AVUycEMR9BGxqVHc4J

'' SIG '' E458YTBZsTBED/FgiIRUQwzXTbg4CLNC3ZOs1nMwVyaC

'' SIG '' o0UN0Or1R4HNvyRgMlhgRvJYR4YyhB50YWeRX4FUsc+T

'' SIG '' TJLBxKZd0WETbijGGvmGgLvfYfxGwScdJGcSchohiq9L

'' SIG '' ZIlQYrFd/XcfPfBXday9ikJNQFHRD5wGPmd/9WbAA5ZE

'' SIG '' fu/QS/1u5ZrKsajyeioKMfDaTgaRtogINeh4HLDpmc08

'' SIG '' 5y9Euqf03GS9pAHBIAmTeM38vMDJRF1eFpwBBU8iTQID

'' SIG '' AQABo4IB5jCCAeIwEAYJKwYBBAGCNxUBBAMCAQAwHQYD

'' SIG '' VR0OBBYEFNVjOlyKMZDzQ3t8RhvFM2hahW1VMBkGCSsG

'' SIG '' AQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB

'' SIG '' hjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFNX2

'' SIG '' VsuP6KJcYmjRPZSQW9fOmhjEMFYGA1UdHwRPME0wS6BJ

'' SIG '' oEeGRWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2kv

'' SIG '' Y3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dF8yMDEwLTA2

'' SIG '' LTIzLmNybDBaBggrBgEFBQcBAQROMEwwSgYIKwYBBQUH

'' SIG '' MAKGPmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kv

'' SIG '' Y2VydHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYtMjMuY3J0

'' SIG '' MIGgBgNVHSABAf8EgZUwgZIwgY8GCSsGAQQBgjcuAzCB

'' SIG '' gTA9BggrBgEFBQcCARYxaHR0cDovL3d3dy5taWNyb3Nv

'' SIG '' ZnQuY29tL1BLSS9kb2NzL0NQUy9kZWZhdWx0Lmh0bTBA

'' SIG '' BggrBgEFBQcCAjA0HjIgHQBMAGUAZwBhAGwAXwBQAG8A

'' SIG '' bABpAGMAeQBfAFMAdABhAHQAZQBtAGUAbgB0AC4gHTAN

'' SIG '' BgkqhkiG9w0BAQsFAAOCAgEAB+aIUQ3ixuCYP4FxAz2d

'' SIG '' o6Ehb7Prpsz1Mb7PBeKp/vpXbRkws8LFZslq3/Xn8Hi9

'' SIG '' x6ieJeP5vO1rVFcIK1GCRBL7uVOMzPRgEop2zEBAQZvc

'' SIG '' XBf/XPleFzWYJFZLdO9CEMivv3/Gf/I3fVo/HPKZeUqR

'' SIG '' UgCvOA8X9S95gWXZqbVr5MfO9sp6AG9LMEQkIjzP7QOl

'' SIG '' lo9ZKby2/QThcJ8ySif9Va8v/rbljjO7Yl+a21dA6fHO

'' SIG '' mWaQjP9qYn/dxUoLkSbiOewZSnFjnXshbcOco6I8+n99

'' SIG '' lmqQeKZt0uGc+R38ONiU9MalCpaGpL2eGq4EQoO4tYCb

'' SIG '' IjggtSXlZOz39L9+Y1klD3ouOVd2onGqBooPiRa6YacR

'' SIG '' y5rYDkeagMXQzafQ732D8OE7cQnfXXSYIghh2rBQHm+9

'' SIG '' 8eEA3+cxB6STOvdlR3jo+KhIq/fecn5ha293qYHLpwms

'' SIG '' ObvsxsvYgrRyzR30uIUBHoD7G4kqVDmyW9rIDVWZeodz

'' SIG '' OwjmmC3qjeAzLhIp9cAvVCch98isTtoouLGp25ayp0Ki

'' SIG '' yc8ZQU3ghvkqmqMRZjDTu3QyS99je/WZii8bxyGvWbWu

'' SIG '' 3EQ8l1Bx16HSxVXjad5XwdHeMMD9zOZN+w2/XU/pnR4Z

'' SIG '' OC+8z1gFLu8NoFA12u8JJxzVs341Hgi62jbb01+P3nSI

'' SIG '' SRKhggLUMIICPQIBATCCAQChgdikgdUwgdIxCzAJBgNV

'' SIG '' BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYD

'' SIG '' VQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg

'' SIG '' Q29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJ

'' SIG '' cmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UE

'' SIG '' CxMdVGhhbGVzIFRTUyBFU046ODZERi00QkJDLTkzMzUx

'' SIG '' JTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNl

'' SIG '' cnZpY2WiIwoBATAHBgUrDgMCGgMVAKBMFej0xjCTjCk1

'' SIG '' sTdTKa+TzJDUoIGDMIGApH4wfDELMAkGA1UEBhMCVVMx

'' SIG '' EzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1Jl

'' SIG '' ZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3Jh

'' SIG '' dGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3Rh

'' SIG '' bXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDkQANL

'' SIG '' MCIYDzIwMjEwNTA4MDIxOTU1WhgPMjAyMTA1MDkwMjE5

'' SIG '' NTVaMHQwOgYKKwYBBAGEWQoEATEsMCowCgIFAORAA0sC

'' SIG '' AQAwBwIBAAICBI4wBwIBAAICEdIwCgIFAORBVMsCAQAw

'' SIG '' NgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAK

'' SIG '' MAgCAQACAwehIKEKMAgCAQACAwGGoDANBgkqhkiG9w0B

'' SIG '' AQUFAAOBgQAsdof6NEyE7+dm1YWfZ1AZ40y/yzH07sdc

'' SIG '' VwSXm9A7ryx5RS566tLC5Tuuac60Ihbzrk+ELKfkbwb0

'' SIG '' L5O9Dxt4bZXcSd0UcI/IiKGb480KKh4OBC+Z3T8DAQHj

'' SIG '' S7vG6xkWrBIlQWtVwOCAVSHMvlGYuz1FR2T3WX+ztK9j

'' SIG '' 5wgRqzGCAw0wggMJAgEBMIGTMHwxCzAJBgNVBAYTAlVT

'' SIG '' MRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS

'' SIG '' ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y

'' SIG '' YXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0

'' SIG '' YW1wIFBDQSAyMDEwAhMzAAABPs7Kd1LF9zQrAAAAAAE+

'' SIG '' MA0GCWCGSAFlAwQCAQUAoIIBSjAaBgkqhkiG9w0BCQMx

'' SIG '' DQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIKLL

'' SIG '' csBwKIKCNZ3aPGa0rBUUybbat8ib2qkNO7hLieg4MIH6

'' SIG '' BgsqhkiG9w0BCRACLzGB6jCB5zCB5DCBvQQgi+vOjaqN

'' SIG '' TvKOZGut49HXrqtwUj2ZCnVOurBwfgQxmxMwgZgwgYCk

'' SIG '' fjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGlu

'' SIG '' Z3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMV

'' SIG '' TWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1N

'' SIG '' aWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAA

'' SIG '' AT7OyndSxfc0KwAAAAABPjAiBCB2b8sSm9pla37bVhvT

'' SIG '' qMwV6M9QPHtZrFzC/Aat0yJ74TANBgkqhkiG9w0BAQsF

'' SIG '' AASCAQAbsRMFX4aqFg06ufxV8pj+7xV48Hbz4Yli2pSy

'' SIG '' vj1oz5s+c/3rj6cpkKX2t76FJUdr3sYSd1LaGjpMczrB

'' SIG '' uK92ZE2hSZiSl5uftqy15xTv+dt/PAgiqTfYhCWmDIBZ

'' SIG '' 3i2a0z7FrdsoO04xlqNHId48OBhOFFfNziH8Szt2l1KE

'' SIG '' tVyyJTOO2w4LPK3Pi/W44bE7UYm1hUZFrL3k+SBRF8fi

'' SIG '' Qlw8OCQXQaHGxU7/cWRYMQ9ZAy1Nn2IKUnp5KacVziR2

'' SIG '' be+GXfBhpmqaK9wUELfilJWNLk9QfE60BXcW8VQGBrgO

'' SIG '' DyXNzNkMN5MbZ7Gh1bEYmmDwHS3UmTZy7vdMWJWw

'' SIG '' End signature block