diff --git a/BorisVmPlatformConfigScript.ps1 b/BorisVmPlatformConfigScript.ps1
new file mode 100644
index 0000000..bc71e1c
--- /dev/null
+++ b/BorisVmPlatformConfigScript.ps1
@@ -0,0 +1,65 @@
+# Stop the three services
+Get-Service -Name RSysLnkCns, RSysLogger, WksEmitter | Stop-Service -Force
+
+# Display a dialog box for the user to select a folder
+$selectedFolder = Get-Item -Path 'C:\borisconfig\*' | Out-GridView -PassThru -Title "Pick a Folder"
+
+# Get the list of config files in the selected folder
+$configs = Get-ChildItem -Path $selectedFolder.FullName -File
+
+# Check that the user has selected at least one config file
+if ($configs.Count -eq 0) {
+ Write-Warning "No config files found in selected folder"
+ pause
+ exit
+}
+
+# Move the contents of the destination folder to a backup folder
+$backupDir = "C:\Rejsekort\Conf\OldConfig"
+if (!(Test-Path $backupDir)) {
+ New-Item -ItemType Directory -Path $backupDir | Out-Null
+}
+Move-Item -Path "C:\Rejsekort\Conf\*" -Destination $backupDir -Force -ErrorAction SilentlyContinue
+
+# Copy the config files to the destination folder
+Copy-Item -Path $configs.FullName -Destination "C:\Rejsekort\Conf\" -Force
+
+# Get the selected choice from the user
+$choices = "buc", "preprod", "prod", "testa", "testc"
+$selectedChoice = $choices | Out-GridView -PassThru -Title "Pick a choice"
+
+
+# Modify the RSysLnkCns.exe.config file based on the selected choice
+$configFile = "C:\Rejsekort\Bin\RSysLnkCns.exe.config"
+if (Test-Path $configFile) {
+ $config = Get-Content $configFile
+ switch ($selectedChoice) {
+ "buc" {
+ $config[44] = ' '
+ }
+ "preprod" {
+ $config[44] = ' '
+ }
+ "prod" {
+ $config[44] = ' '
+ }
+ "testc" {
+ $config[44] = ' '
+ }
+ "testa" {
+ $config[44] = ' '
+ }
+ }
+ Set-Content $configFile -Value $config
+} else {
+ Write-Warning "Could not find config file $configFile"
+ pause
+ exit
+}
+
+# Start the three services
+Get-Service -Name RSysLnkCns, RSysLogger, WksEmitter | Start-Service
+
+Add-Type -AssemblyName System.Windows.Forms
+[System.Windows.Forms.MessageBox]::Show('Please wait 1-2 minutes before trying to connect in order for the client to sync config', 'PlatformConfigScript')
+
diff --git a/CPR-UnSubscribe.ps1 b/CPR-UnSubscribe.ps1
new file mode 100644
index 0000000..ccae81a
--- /dev/null
+++ b/CPR-UnSubscribe.ps1
@@ -0,0 +1,30 @@
+<#
+Input: CSV file
+Output: Valid CPR unsubscribe file
+#>
+
+# Constants: CPR requires us to use the following information (along with CPR number)
+#Each line in the file contains a record, and the record contains the following information (always 80 characters per rrecord/line)
+$CPR_DataType = '06' # 06 means subscribe/unsubscribe
+$CPR_Customer = '4211' # Our customer ID in the CPR system
+$CPR_Constant = '00' # Documentation tells us this constant has to be included and written as 00 (always)
+$CPR_EnableRemove = 'SL' # SL means delete subscription, OP means create subscription
+#CPRNumber CPR number, obviously not a constant
+$CPR_KeyConstant = ' ' # 15 obligatory characters (use 15 whitespace characters if not in use) that can be used to mark each entry. CPR will not use this, but will return the string along with the result of the entry. Some companies use it to recognisethe CPR response
+$CPR_Constant2 = ' ' # 45 obligatory blank spaces at the end of each record
+
+$InputFile = 'unsubscribe.csv'
+$OutputFile = "d" + $(Get-Date -Format "yyMMdd") + ".i" + $CPR_Customer + $CPR_DataType
+
+Write-Output "Deleting old outputfile if exists: $OutputFile"
+Remove-Item .\$OutputFile -ErrorAction SilentlyContinue
+
+Write-Output "Reading Inputfile: $InputFile"
+$UnsubscribeList = Import-CSV $InputFile -delimiter ',' -Encoding UTF7
+
+Foreach ($Unsubscribe in $UnsubscribeList) {
+ Write-Output "Writing entry: $($Unsubscribe.CPR)"
+ $UnsubscribeString = $CPR_DataType + $CPR_Customer + $CPR_Constant + $CPR_EnableRemove + $Unsubscribe.CPR + $CPR_KeyConstant + $CPR_Constant2
+ #Add-content $OutputFile -value $UnsubscribeString -Encoding $([System.Text.Encoding]::GetEncoding('iso-8859-1').WindowsCodePage) # please note that CPR only supports ISO-8859-1, that is a std parameter, I therefore have to ask the operating system for codepage number
+ [System.IO.File]::AppendAllText($(Get-Location).Path + "\" + $OutputFile,$UnsubscribeString + "`r`n",[System.Text.Encoding]::GetEncoding('iso-8859-1'))
+}
\ No newline at end of file
diff --git a/CertificateCheckUpdate/CertificateCheck.ps1 b/CertificateCheckUpdate/CertificateCheck.ps1
new file mode 100644
index 0000000..a5006b8
--- /dev/null
+++ b/CertificateCheckUpdate/CertificateCheck.ps1
@@ -0,0 +1,56 @@
+# NSClient++ INI command:
+#
+#certificatecheck = cmd /c echo scripts\CertificateCheck.ps1; exit($lastexitcode) | powershell.exe -command -
+[cmdletbinding()]
+param(
+ $Warning = '90', #days
+ $Critical = '30' #days
+)
+
+$result = "OK"
+$exitcode = 0
+
+$certificates = Get-ChildItem 'Cert:\LocalMachine\My','Cert:\LocalMachine\TrustedPeople'
+if($certificates -eq $null) {
+ Write-Output $result
+ exit $exitcode
+}
+
+$certificatesCritical = @($certificates | Where-Object { $_.NotAfter -lt (Get-Date).AddDays($Critical) }).Count
+$certificatesWarning = @($certificates | Where-Object { $_.NotAfter -lt (Get-Date).AddDays($Warning) }).Count
+
+if($certificatesWarning -gt 0) {
+ Write-Verbose "certificatesWarning:$certificatesWarning"
+ $result = "WARNING - $certificatesWarning certificate(s) expiring within $Warning days"
+ $exitcode = 1
+
+ if($certificatesCritical -gt 0) {
+ Write-Verbose "certificatesCritical:$certificatesCritical"
+ $result = "CRITICAL - $certificatesCritical certificate(s) expiring within $Critical days ($certificatesWarning within $Warning days)`n"
+ $exitcode = 2
+ }
+
+ $result += foreach($certificate in ($certificates | Where-Object { $_.NotAfter -lt (Get-Date).AddDays($Warning) })) {
+ $subject = $certificate.Subject
+ Write-Verbose ". subject:$subject"
+ Write-Verbose ($certificate | fl * | Out-String)
+
+ $date = Get-Date $certificate.NotAfter -Format 'yyyy-MM-dd HH:mm:ss'
+ $cnIndex = $subject.IndexOf('CN=')
+ if($cnIndex -ne -1) {
+ $commaIndex = $subject.IndexOf(',', $cnIndex)
+ if($commaIndex -ne -1) {
+ Write-Output "`n$date - $($subject.Substring($cnIndex, $commaIndex-$cnIndex))"
+ }
+ else {
+ Write-Output "`n$date - $($subject.Substring($cnIndex))"
+ }
+ }
+ else {
+ Write-Output "`nCN="
+ }
+ }
+}
+
+Write-Output $result
+exit $exitcode
\ No newline at end of file
diff --git a/Checkudvejpress.ahk b/Checkudvejpress.ahk
new file mode 100644
index 0000000..9dc7d17
--- /dev/null
+++ b/Checkudvejpress.ahk
@@ -0,0 +1,22 @@
+#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
+; #Warn ; Enable warnings to assist with detecting common errors.
+SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
+SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
+#SingleInstance, force
+
+run, C:\PurseCorrection\PurseCorrectionConsole.exe, C:\PurseCorrection
+Sleep, 2000
+
+WinActivate, [ C:\PurseCorrection\PurseCorrectionConsole.exe]
+
+Sleep, 2000
+Send !{1}
+Sleep, 2000
+Send {Enter}
+Sleep, 2000
+Send !{Y}
+Send {Enter}
+
+
+
+
diff --git a/Checkudvejpress.exe b/Checkudvejpress.exe
new file mode 100644
index 0000000..d8f144d
Binary files /dev/null and b/Checkudvejpress.exe differ
diff --git a/Conv-checkudvej-CSV.ps1 b/Conv-checkudvej-CSV.ps1
new file mode 100644
index 0000000..7973a01
--- /dev/null
+++ b/Conv-checkudvej-CSV.ps1
@@ -0,0 +1,181 @@
+##Create work folders
+#New-Item "C:\Users\$env:username\downloads\checkudvej1" -type Directory -Force
+#New-Item "C:\Users\$env:username\downloads\checkudvej2" -type Directory -Force
+#New-Item "C:\Users\$env:username\Documents\logs" -type Directory -Force
+#New-Item "C:\Users\$env:username\downloads\mailfile" -type Directory -Force
+#
+##Create Mail work Folder (remember to create a rule to sort checkudvej mails into that folder)
+#$olApp = new-object -comobject outlook.application
+#$namespace = $olApp.GetNamespace("MAPI")
+## Get Inbox
+#$Folder = $namespace.GetDefaultFolder(6)
+#
+#$MatchCheckudvejmailfolder = $inbox.Folders | Where-Object { $_.FolderPath -match 'Checkudvej' }
+#
+#if ($MatchCheckudvejmailfolder) {
+# Write-Output "Folder $MatchCheckudvejmailfolder exists."
+#} else {
+# Write-Output "Folder $MatchCheckudvejmailfolder does not exist."
+# $Folder.Parent.folders.Add("Checkudvej")
+#}
+#
+## End Inbox
+#$olApp.Quit | Out-Null
+#[GC]::Collect()
+
+
+#Grab email from user
+#$Useremail = Read-Host -Prompt 'Input your Email'
+
+# link to the folder
+#$olFolderPath = "\\$Useremail\Inbox\Checkudvej"
+# link to the folder
+$olFolderPath = "\\alexander.warme@urbanandmainlines.com\Inbox\Checkudvej"
+
+# set the location to temporary file
+$filePath = "C:\Users\$env:username\Downloads\mailfile"
+# use MAPI name space
+$outlook = new-object -com outlook.application;
+$mapi = $outlook.GetNameSpace("MAPI");
+# set the Inbox folder id
+$olDefaultFolderInbox = 6
+$inbox = $mapi.GetDefaultFolder($olDefaultFolderInbox)
+# access the target subfolder
+$olTargetFolder = $inbox.Folders | Where-Object { $_.FolderPath -eq $olFolderPath }
+# load emails
+$emails = $olTargetFolder.Items
+# process the emails
+
+foreach ($email in $emails) {
+
+# format the timestamp
+# $timestamp = $email.ReceivedTime.ToString("yyyyMMddhhmmss")
+# filter out the attachments
+ foreach ($attachment in $email.Attachments) {
+ if ($attachment.FileName -like "*.xlsx"){
+ # insert the timestamp into the file name
+ $fileName = $attachment.FileName
+ #$fileName = $fileName.Insert($fileName.IndexOf('.'),$timestamp)
+ # save the attachment
+ $attachment.saveasfile((Join-Path $filePath $fileName))
+ }
+ }
+}
+
+Get-ChildItem C:\Users\$env:username\Downloads\mailfile -Recurse -Filter 'checkudvej1*' | Move-Item -Force -Destination "C:\Users\$env:username\Downloads\checkudvej1\"
+Get-ChildItem C:\Users\$env:username\Downloads\mailfile -Recurse -Filter 'checkudvej2*' | Move-Item -Force -Destination "C:\Users\$env:username\Downloads\checkudvej2\"
+
+ #choose checkudvej 1 or 2
+
+ $CHK1 = New-Object System.Management.Automation.Host.ChoiceDescription '&Checkudvej1', 'Checkudvej 1'
+ $CHK2 = New-Object System.Management.Automation.Host.ChoiceDescription '&Checkudvej2', 'Checkudvej 2'
+
+ $options = [System.Management.Automation.Host.ChoiceDescription[]]($CHK1, $CHK2)
+ $title = 'Choose Checkudvej File'
+ $message = "Choose the Checkudvej file of the day"
+ $result = $host.ui.PromptForChoice($title, $message, $options, 0)
+ if ($result -eq 0) {
+ $choice = "Checkudvej 1"
+ $todayxlsfiles=(Get-ChildItem -Path C:\Users\$env:username\Downloads\checkudvej1\ -Filter 'checkudvej1*' | Select-Object -ExpandProperty FullName )
+ }
+ elseif ($result -eq 1) {
+ $choice = "Checkudvej 2"
+ $todayxlsfiles=(Get-ChildItem -Path C:\Users\$env:username\Downloads\checkudvej2\ -Filter 'checkudvej2*' | Select-Object -ExpandProperty FullName )
+
+ }
+
+ else {
+ $choice = "Try again"
+ }
+ "Du har Valgt: {0}" -f $choice
+
+($superfilepath=$todayxlsfiles)
+
+#check superfilepath
+#$superfilepath.ToLower()
+
+#grab pw
+#set lowercase
+$superlower=$superfilepath.ToLower()
+
+#match end
+$superlower -match '(?<=_)(.*?)(?=\.)' | Out-Null
+#test match value
+#$Matches[0]
+#set pw on match
+$password=$Matches[0]
+#test pw
+#Write-Host "Matched password"
+#$password
+#grab name for save
+$filesavename=[System.IO.Path]::GetFileNameWithoutExtension($todayxlsfiles)
+
+#open excel
+$excel = New-Object -ComObject Excel.Application
+$excel.Visible = $False
+$excel.DisplayAlerts = $False
+
+#open with saved password
+($wb = $excel.Workbooks.Open($superfilepath,0,0,5,$password)) | Out-Null
+
+
+#createSaveDirectory
+$Dirsave=Get-ChildItem -Directory $superfilepath
+
+
+#combine dir and filename and save excel
+$wb.SaveAs($Dirsave.DirectoryName+'\'+$filesavename,6,'')
+
+#Close Excel
+$excel.Quit() | Out-Null
+[System.Runtime.Interopservices.Marshal]::ReleaseComObject($excel) | Out-Null
+Remove-Variable excel
+
+
+#create config entry
+$nameconfig=$filesavename+".csv"
+
+#move csv files
+Get-Childitem -Recurse C:\Users\$env:username\Downloads\checkudvej1\ -Filter 'checkudvej*.csv' | Move-Item -Force -Destination "\\p-replacement\PurseCorrection\"
+Get-Childitem -Recurse C:\Users\$env:username\Downloads\checkudvej2\ -Filter 'checkudvej*.csv' | Move-Item -Force -Destination "\\p-replacement\PurseCorrection\"
+
+#grab config
+$content = Get-Content "\\p-replacement\PurseCorrection\PurseCorrectionConsole.exe.config"
+#match line 22
+$content[22]
+
+#change line 22 key
+$content[22] = $content[22] -replace "value=.*", ('value="'+$nameconfig +'"/>')
+$content | Set-Content \\p-replacement\PurseCorrection\PurseCorrectionConsole.exe.config
+
+#cleanup
+Get-Childitem -Recurse C:\Users\$env:username\Downloads\checkudvej1\ -Filter 'checkudvej*.xlsx' | Remove-Item -Force
+Get-Childitem -Recurse C:\Users\$env:username\Downloads\checkudvej2\ -Filter 'checkudvej*.xlsx' | Remove-Item -Force
+
+write-host "Now run AHK Script Checkudvej.AHK in C:\PurseCorrection\"
+Start-Process "$env:windir\system32\mstsc.exe" -ArgumentList "/v:p-replacement"
+
+
+#wait for log to be 1000kb
+while ($true) {
+ $logfilematch=Get-ChildItem -Path '\\p-replacement\PurseCorrection\logs\' -Filter "$filesavename*" | Where-Object {$_.Length -ge 1000}
+ if (-not ($logfilematch)) {
+ Write-Output "Log file $logfilematch does not exist or size is less than 1000KB. And Console has not been closed on server "
+ Start-Sleep -Seconds 60
+ } else {
+ break
+ }
+}
+Write-Output "Log file $logfilematch exists and size is greater than or equal to 1000KB - remember to delete Csv file or move to handled ."
+
+#copy file and open log folder
+Add-Type -AssemblyName System.Speech
+$synth = New-Object -TypeName System.Speech.Synthesis.SpeechSynthesizer
+$logfilematch | Copy-Item -Force -Destination "C:\Users\$env:username\Documents\logs"
+write-host "Files has been copied"
+write-host "Opening log folder"
+$synth.Speak("Hey $env:USERNAME, File has been copied, Opening log folder")
+Invoke-Item "C:\Users\$env:username\Documents\logs"
+
+#find out why csv file is not moved to "done" folder on server after script.
+
diff --git a/Dennis_Scripts/AddAccountToLogonLocally.ps1 b/Dennis_Scripts/AddAccountToLogonLocally.ps1
new file mode 100644
index 0000000..d9958b7
--- /dev/null
+++ b/Dennis_Scripts/AddAccountToLogonLocally.ps1
@@ -0,0 +1,84 @@
+#written by Ingo Karstein, http://ikarstein.wordpress.com
+# v1.0, 10/12/2012
+
+## <--- Configure here
+
+$accountToAdd = "domain\sp_farm"
+
+## ---> End of Config
+
+$sidstr = $null
+try {
+ $ntprincipal = new-object System.Security.Principal.NTAccount "$accountToAdd"
+ $sid = $ntprincipal.Translate([System.Security.Principal.SecurityIdentifier])
+ $sidstr = $sid.Value.ToString()
+} catch {
+ $sidstr = $null
+}
+
+Write-Host "Account: $($accountToAdd)" -ForegroundColor DarkCyan
+
+if( [string]::IsNullOrEmpty($sidstr) ) {
+ Write-Host "Account not found!" -ForegroundColor Red
+ exit -1
+}
+
+Write-Host "Account SID: $($sidstr)" -ForegroundColor DarkCyan
+
+$tmp = [System.IO.Path]::GetTempFileName()
+
+Write-Host "Export current Local Security Policy" -ForegroundColor DarkCyan
+secedit.exe /export /cfg "$($tmp)"
+
+$c = Get-Content -Path $tmp
+
+$currentSetting = ""
+
+foreach($s in $c) {
+ if( $s -like "SeInteractiveLogonRight*") {
+ $x = $s.split("=",[System.StringSplitOptions]::RemoveEmptyEntries)
+ $currentSetting = $x[1].Trim()
+ }
+}
+
+if( $currentSetting -notlike "*$($sidstr)*" ) {
+ Write-Host "Modify Setting ""Allow Logon Locally""" -ForegroundColor DarkCyan
+
+ if( [string]::IsNullOrEmpty($currentSetting) ) {
+ $currentSetting = "*$($sidstr)"
+ } else {
+ $currentSetting = "*$($sidstr),$($currentSetting)"
+ }
+
+ Write-Host "$currentSetting"
+
+ $outfile = @"
+[Unicode]
+Unicode=yes
+[Version]
+signature="`$CHICAGO`$"
+Revision=1
+[Privilege Rights]
+SeInteractiveLogonRight = $($currentSetting)
+"@
+
+ $tmp2 = [System.IO.Path]::GetTempFileName()
+
+
+ Write-Host "Import new settings to Local Security Policy" -ForegroundColor DarkCyan
+ $outfile | Set-Content -Path $tmp2 -Encoding Unicode -Force
+
+ #notepad.exe $tmp2
+ Push-Location (Split-Path $tmp2)
+
+ try {
+ secedit.exe /configure /db "secedit.sdb" /cfg "$($tmp2)" /areas USER_RIGHTS
+ #write-host "secedit.exe /configure /db ""secedit.sdb"" /cfg ""$($tmp2)"" /areas USER_RIGHTS "
+ } finally {
+ Pop-Location
+ }
+} else {
+ Write-Host "NO ACTIONS REQUIRED! Account already in ""Allow Logon Locally""" -ForegroundColor DarkCyan
+}
+
+Write-Host "Done." -ForegroundColor DarkCyan
diff --git a/Dennis_Scripts/AddCPRCertificatesToStore.ps1 b/Dennis_Scripts/AddCPRCertificatesToStore.ps1
new file mode 100644
index 0000000..338dafe
--- /dev/null
+++ b/Dennis_Scripts/AddCPRCertificatesToStore.ps1
@@ -0,0 +1,78 @@
+&{
+ # AddTrustExternalCARoot
+ if(-not (Get-Item cert:\LocalMachine\Root\02FAF3E291435468607857694DF5E45B68851868 -ErrorAction SilentlyContinue)) {
+ # Open certificate store
+ $CertStore = New-Object System.Security.Cryptography.X509Certificates.X509Store -ArgumentList "\\.\Root", "LocalMachine"
+ $CertStore.Open('ReadWrite')
+
+ # Read certificate file
+ $Certificate = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2
+ $Certificate.Import('D:\Certificates\CPR14042015\AddTrustExternalCARoot.crt')
+
+ # Add certificate to store
+ $CertStore.Add($Certificate)
+ $CertStore.Close()
+
+ Write-Host -ForegroundColor Yellow "AddTrustExternalCARoot installed"
+ }
+ else {
+ Write-Host -ForegroundColor Yellow "AddTrustExternalCARoot not installed"
+ }
+
+
+ # COMODORSACertificationAuthority
+ if(-not (Get-Item cert:\LocalMachine\CA\F5AD0BCC1AD56CD150725B1C866C30AD92EF21B0 -ErrorAction SilentlyContinue)) {
+ $CertStore = New-Object System.Security.Cryptography.X509Certificates.X509Store -ArgumentList "\\.\CA", "LocalMachine"
+ $CertStore.Open('ReadWrite')
+
+ $Certificate = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2
+ $Certificate.Import('D:\Certificates\CPR14042015\COMODORSACertificationAuthority.crt')
+
+ $CertStore.Add($Certificate)
+ $CertStore.Close()
+
+ Write-Host -ForegroundColor Yellow "COMODORSACertificationAuthority installed"
+ }
+ else {
+ Write-Host -ForegroundColor Yellow "COMODORSACertificationAuthority not installed"
+ }
+
+ # COMODORSADomainValidationSecureServerCA
+ if(-not (Get-Item cert:\LocalMachine\CA\339CDD57CFD5B141169B615FF31428782D1DA639 -ErrorAction SilentlyContinue)) {
+ $CertStore = New-Object System.Security.Cryptography.X509Certificates.X509Store -ArgumentList "\\.\CA", "LocalMachine"
+ $CertStore.Open('ReadWrite')
+
+ $Certificate = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2
+ $Certificate.Import('D:\Certificates\CPR14042015\COMODORSADomainValidationSecureServerCA.crt')
+
+ $CertStore.Add($Certificate)
+ $CertStore.Close()
+
+ Write-Host -ForegroundColor Yellow "COMODORSADomainValidationSecureServerCA installed"
+ }
+ else {
+ Write-Host -ForegroundColor Yellow "COMODORSADomainValidationSecureServerCA not installed"
+ }
+
+ # -.cpr.dk
+ if(-not (Get-Item cert:\LocalMachine\My\F6C78C9BD32ADEC12BF5FC3A67ACEB3C684FF8C1 -ErrorAction SilentlyContinue)) {
+ $CertStore = New-Object System.Security.Cryptography.X509Certificates.X509Store -ArgumentList "\\.\My", "LocalMachine"
+ $CertStore.Open('ReadWrite')
+
+ $Certificate = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2
+ $Certificate.Import('D:\Certificates\CPR14042015\-.cpr.dk.crt')
+
+ $CertStore.Add($Certificate)
+ $CertStore.Close()
+
+ Write-Host -ForegroundColor Yellow "-.cpr.dk installed"
+ }
+ else {
+ Write-Host -ForegroundColor Yellow "-.cpr.dk not installed"
+ }
+
+ if(Get-Item cert:\LocalMachine\Root\02FAF3E291435468607857694DF5E45B68851868 -ErrorAction SilentlyContinue) { Write-Host -ForegroundColor Green "AddTrustExternalCARoot found" } else { Write-Host -ForegroundColor Red "AddTrustExternalCARoot not found" }
+ if(Get-Item cert:\LocalMachine\CA\F5AD0BCC1AD56CD150725B1C866C30AD92EF21B0 -ErrorAction SilentlyContinue) { Write-Host -ForegroundColor Green "COMODORSACertificationAuthority found" } else { Write-Host -ForegroundColor Red "COMODORSACertificationAuthority not found" }
+ if(Get-Item cert:\LocalMachine\CA\339CDD57CFD5B141169B615FF31428782D1DA639 -ErrorAction SilentlyContinue) { Write-Host -ForegroundColor Green "COMODORSADomainValidationSecureServerCA found" } else { Write-Host -ForegroundColor Red "COMODORSADomainValidationSecureServerCA not found" }
+ if(Get-Item cert:\LocalMachine\My\F6C78C9BD32ADEC12BF5FC3A67ACEB3C684FF8C1 -ErrorAction SilentlyContinue) { Write-Host -ForegroundColor Green "-.cpr.dk found" } else { Write-Host -ForegroundColor Red "-.cpr.dk not found" }
+}
\ No newline at end of file
diff --git a/Dennis_Scripts/CWS invoice scanner script.ps1 b/Dennis_Scripts/CWS invoice scanner script.ps1
new file mode 100644
index 0000000..19e9bb4
--- /dev/null
+++ b/Dennis_Scripts/CWS invoice scanner script.ps1
@@ -0,0 +1,61 @@
+cd C:\Spam
+$rootUrl = '\/CWS\/Payment\/PdfReport'
+
+$select = Get-Item *.log | Select-String -Pattern $rootUrl
+$selectcsv = $select.line | ConvertFrom-Csv -Delimiter ' ' -Header ('date time s-sitename s-computername s-ip cs-method cs-uri-stem cs-uri-query s-port cs-username c-ip cs-version cs(User-Agent) cs(Cookie) cs(Referer) cs-host sc-status sc-substatus sc-win32-status sc-bytes cs-bytes time-taken' -split ' ')
+
+#$select2 = $select | where { $_.line -match 'documentNumber=F007940834' -or $_.line -match 'documentNumber=F001602219' -or $_.line -match 'documentNumber=F004716680' -or $_.line -match 'documentNumber=F007000458' }
+#$select2csv = $select.line | ConvertFrom-Csv -Delimiter ' ' -Header ('date time s-sitename s-computername s-ip cs-method cs-uri-stem cs-uri-query s-port cs-username c-ip cs-version cs(User-Agent) cs(Cookie) cs(Referer) cs-host sc-status sc-substatus sc-win32-status sc-bytes cs-bytes time-taken' -split ' ')
+#$select3 = $select | where { $_.line -match '69303ba0-4050-4219-9913-af7ca3a8ad31' }
+#$select3csv = $select3.line | ConvertFrom-Csv -Delimiter ' ' -Header ('date time s-sitename s-computername s-ip cs-method cs-uri-stem cs-uri-query s-port cs-username c-ip cs-version cs(User-Agent) cs(Cookie) cs(Referer) cs-host sc-status sc-substatus sc-win32-status sc-bytes cs-bytes time-taken' -split ' ')
+
+$select2 = $selectcsv.'cs-uri-query' | Select-String -Pattern 'documentNumber=([A-Z][0-9]*)'
+
+$data = @'
+F000018636
+F000021482
+F000024219
+F000026112
+F000028853
+F000031097
+F000034604
+F000038300
+F000044790
+F000048042
+F000050669
+F000053147
+F000057263
+F003002358
+F003007266
+F003010442
+F003017056
+F003021908
+F003026206
+F003030162
+F003036063
+F003041789
+F003042429
+F003051839
+F003057120
+F003061224
+F003066429
+F003076822
+F003081376
+F003087833
+F003094635
+F003103301
+F003107703
+F003112733
+F003118791
+F003124053
+F003131888
+F003138217
+F003144770
+F003149616
+'@
+$find = $data.Split("`r`n", [System.StringSplitOptions]::RemoveEmptyEntries)
+
+$get = $select2 | % {
+ Write-Host "Matching '$($_.Matches[0].Groups[1].Value)'"
+ if($_.Matches[0].Groups[1].Value -match ($find -join ',')) { $_.Matches[0].Groups[1].Value }
+}
diff --git a/Dennis_Scripts/CardsWithPreEngagement.ps1 b/Dennis_Scripts/CardsWithPreEngagement.ps1
new file mode 100644
index 0000000..cac6950
--- /dev/null
+++ b/Dennis_Scripts/CardsWithPreEngagement.ps1
@@ -0,0 +1,46201 @@
+$cards = @"
+201628452
+201629920
+201629919
+201629918
+201629917
+201628733
+201628732
+201629916
+201629915
+201628451
+201628731
+201628730
+201629914
+201628729
+201628450
+201628728
+201628727
+201628726
+201629913
+201628449
+201629912
+201628022
+201628725
+201628724
+201628448
+201628723
+201628447
+201628722
+201628446
+201628445
+201629911
+201628721
+201628720
+201629910
+201628444
+201628443
+201629435
+201628442
+201628719
+201628718
+201628717
+201628441
+201629434
+201629909
+201629908
+201631031
+201631030
+201628440
+201629907
+201629906
+201631029
+201629905
+201631028
+201629433
+201631027
+201628439
+201628438
+201629904
+201631026
+201628437
+201631025
+201631024
+201628436
+201631023
+201631022
+201631021
+201628434
+201628433
+201631020
+201628432
+201628431
+201629903
+201628430
+201628429
+201629902
+201628428
+201629901
+201631019
+201628427
+201629900
+201629899
+201629898
+201631018
+201631017
+201628013
+201628426
+201631016
+201631015
+201628425
+201629431
+201631014
+201628424
+201628012
+201631013
+201628423
+201628011
+201628422
+201628421
+201628010
+201631012
+201631011
+201628059
+201628009
+201631010
+201631009
+201628008
+201628007
+201628006
+201628420
+201628058
+201628419
+201628418
+201628005
+201631007
+201628004
+201628417
+201631006
+201628003
+201628416
+201628002
+201631005
+201628415
+201628414
+201628413
+201628412
+201628411
+201628410
+201628001
+201628409
+201631004
+201628000
+201631003
+201631002
+201631001
+201628016
+201628408
+201628015
+201628407
+201631000
+201631032
+201628014
+201629363
+201629174
+201629362
+201629173
+201629172
+201629361
+201629360
+201629359
+201628898
+201629171
+201629170
+201628897
+201628060
+201629358
+201629357
+201629169
+201629356
+201629168
+201629167
+201628896
+201628895
+201629166
+201629355
+201628894
+201629354
+201629353
+201628893
+201629165
+201629164
+201628892
+201629352
+201629351
+201629350
+201629349
+201629163
+201629162
+201628890
+201629348
+201629161
+201629347
+201629160
+201628889
+201629346
+201628888
+201629159
+201629158
+201629157
+201629156
+201629155
+201628887
+201629345
+201629344
+201629343
+201629429
+201629342
+201628886
+201629341
+201629154
+201628885
+201629153
+201629152
+201629340
+201629339
+201629338
+201629337
+201628884
+201629336
+201628883
+201629335
+201629334
+201628882
+201629149
+201629148
+201628881
+201628880
+201629333
+201628879
+201629147
+201629332
+201629331
+201629330
+201629146
+201629329
+201628878
+201629328
+201629145
+201629327
+201628877
+201629326
+201628876
+201629144
+201629325
+201629324
+201629143
+201629142
+201629323
+201629322
+201629320
+201629319
+201628875
+201629318
+201629317
+201629316
+201629141
+201628874
+201629314
+201628873
+201629313
+201629312
+201629311
+201629310
+201629309
+201628872
+201628871
+201629308
+201629307
+201628870
+201628869
+201629424
+201629423
+201629422
+201629140
+201628868
+201629139
+201628867
+201629421
+201629420
+201629419
+201629138
+201629418
+201628866
+201629137
+201629136
+201629135
+201629417
+201629416
+201629134
+201629415
+201629414
+201629413
+201629412
+201629411
+201629410
+201629133
+201628865
+201629132
+201628864
+201628863
+201629409
+201629131
+201628862
+201629408
+201629406
+201629405
+201628861
+201628860
+201629130
+201629129
+201629404
+201629403
+201628859
+201629128
+201629127
+201629402
+201629126
+201629239
+201628858
+201629238
+201628857
+201629125
+201629237
+201629236
+201628856
+201629235
+201628065
+201629124
+201628855
+201628064
+201629234
+201629233
+201629123
+201628854
+201628853
+201628852
+201629231
+201629230
+201628851
+201629122
+201629121
+201628850
+201629229
+201629120
+201629228
+201629227
+201629226
+201629225
+201629224
+201629119
+201628849
+201629118
+201629223
+201629117
+201629222
+201628848
+201629116
+201629115
+201629221
+201629220
+201628847
+201629219
+201628846
+201629114
+201629113
+201629112
+201629111
+201629218
+201628845
+201629110
+201629216
+201629109
+201629215
+201629108
+201629107
+201628844
+201628843
+201629106
+201629214
+201629105
+201629213
+201629212
+201628842
+201629104
+201629211
+201629210
+201629209
+201628841
+201629103
+201628840
+201629208
+201629102
+201629207
+201628839
+201629206
+201629051
+201628838
+201629050
+201629049
+201629048
+201628837
+201628836
+201629205
+201628835
+201628834
+201629047
+201629204
+201629203
+201629202
+201629201
+201628833
+201628832
+201628831
+201628830
+201629200
+201629199
+201629046
+201628829
+201628828
+201628798
+201629197
+201629196
+201629045
+201629044
+201628827
+201628826
+201629043
+201629042
+201628825
+201629041
+201628824
+201628823
+201628822
+201629195
+201628821
+201629194
+201628820
+201628819
+201628818
+201629192
+201628817
+201629040
+201629039
+201629190
+201629189
+201629038
+201628816
+201629188
+201629187
+201628815
+201629186
+201629185
+201629184
+201629183
+201629182
+201629037
+201629181
+201629180
+201629179
+201628814
+201628813
+201629036
+201629178
+201628812
+201628811
+201628810
+201628809
+201628808
+201629177
+201629035
+201628807
+201629399
+201629034
+201628806
+201629033
+201629398
+201629032
+201629031
+201628805
+201629397
+201629030
+201628804
+201629396
+201629395
+201629447
+201629394
+201629393
+201629392
+201629391
+201629390
+201629389
+201629446
+201629445
+201629029
+201629428
+201629388
+201629444
+201628063
+201629387
+201629386
+201629443
+201629442
+201629028
+201629027
+201629385
+201629026
+201629025
+201629384
+201629441
+201629440
+201629024
+201629383
+201629382
+201629381
+201629380
+201629023
+201629379
+201629022
+201629378
+201629021
+201629020
+201629019
+201629377
+201629018
+201629439
+201629376
+201629017
+201629016
+201629015
+201629014
+201629438
+201629437
+201629013
+201629375
+201629374
+201628999
+201628998
+201629373
+201629012
+201628997
+201629372
+201629011
+201629371
+201628996
+201629010
+201628995
+201628994
+201628993
+201628992
+201628991
+201628990
+201629369
+201629009
+201629008
+201629368
+201629367
+201629366
+201629007
+201628989
+201628988
+201629006
+201628987
+201629365
+201628986
+201629005
+201629364
+201629306
+201629004
+201629003
+201629305
+201628985
+201628984
+201629304
+201628983
+201628982
+201628981
+201629002
+201628980
+201628979
+201628062
+201628978
+201629427
+201629001
+201628977
+201628976
+201628975
+201629303
+201629302
+201628974
+201629000
+201628973
+201629301
+201629101
+201628972
+201629100
+201629099
+201629300
+201628971
+201629299
+201628970
+201629098
+201628969
+201629298
+201629097
+201629096
+201629297
+201629095
+201628968
+201629296
+201629094
+201629295
+201629093
+201629294
+201629293
+201628967
+201629092
+201629292
+201629291
+201628966
+201628965
+201629091
+201629290
+201628964
+201629090
+201629089
+201628963
+201629289
+201628962
+201629088
+201628961
+201628960
+201628959
+201629288
+201629087
+201628958
+201629287
+201629086
+201628957
+201629286
+201629084
+201629285
+201629284
+201629083
+201628499
+201628498
+201628955
+201628497
+201628954
+201629283
+201628953
+201628495
+201629282
+201629281
+201628952
+201629280
+201628494
+201629279
+201628493
+201628951
+201628950
+201628949
+201628492
+201628491
+201628948
+201628490
+201629278
+201628947
+201629277
+201629276
+201628946
+201628489
+201628488
+201629275
+201628945
+201628944
+201628487
+201628942
+201629274
+201628941
+201628486
+201628485
+201629273
+201628484
+201629272
+201628940
+201628939
+201628938
+201629271
+201628937
+201628936
+201628483
+201628935
+201629270
+201629082
+201629081
+201628934
+201628933
+201628932
+201628931
+201628930
+201629080
+201629269
+201628929
+201628928
+201628927
+201629079
+201628926
+201629268
+201628925
+201628924
+201629078
+201628923
+201628922
+201629077
+201629266
+201628921
+201629076
+201629265
+201629075
+201629074
+201629073
+201629264
+201629263
+201628920
+201628919
+201629072
+201628918
+201629071
+201628917
+201629262
+201628916
+201629070
+201628915
+201629069
+201628914
+201629068
+201629261
+201629260
+201629067
+201628913
+201628912
+201628911
+201628910
+201629258
+201629065
+201629064
+201629063
+201628909
+201629257
+201629062
+201629256
+201628908
+201629061
+201629255
+201629254
+201629253
+201628907
+201629252
+201628906
+201629251
+201629250
+201629060
+201628905
+201629249
+201628904
+201629248
+201629247
+201629246
+201628903
+201629059
+201628902
+201629058
+201629057
+201629056
+201629245
+201629055
+201629244
+201629054
+201629243
+201629053
+201629052
+201629242
+201628061
+201629241
+201629240
+201628901
+201629426
+201628900
+201628899
+201628797
+201628796
+201630088
+201631486
+201630731
+201631485
+201631484
+201630742
+201631482
+201631483
+201630087
+201631326
+201631481
+201630086
+201630085
+201631490
+201630084
+201631477
+201631480
+201630579
+201630082
+201631936
+201631479
+201631336
+201631403
+201631478
+201631341
+201630717
+201630004
+201631475
+201631474
+201630640
+201630716
+201631938
+201630012
+201631472
+201631935
+201630605
+201631471
+201631470
+201631473
+201631469
+201631466
+201631467
+201631465
+201630714
+201631464
+201631463
+201631461
+201630715
+201631459
+201630713
+201631458
+201631460
+201631318
+201630638
+201631314
+201630712
+201630751
+201631934
+201631457
+201631462
+201631456
+201631350
+201630711
+201630709
+201631402
+201631455
+201631933
+201630708
+201630710
+201631454
+201630030
+201631452
+201631451
+201630706
+201631453
+201631450
+201631449
+201631448
+201630051
+201630707
+201631376
+201631446
+201631445
+201630705
+201631444
+201630704
+201631441
+201631443
+201631442
+201631439
+201631438
+201630617
+201631437
+201630654
+201631932
+201630616
+201631435
+201630727
+201630064
+201631368
+201630658
+201631434
+201630077
+201631436
+201631931
+201630059
+201630703
+201630651
+201630702
+201630700
+201630055
+201631433
+201631432
+201631930
+201630698
+201630075
+201631429
+201631426
+201631430
+201631929
+201631424
+201631428
+201631405
+201631425
+201630766
+201630696
+201630769
+201631423
+201630692
+201631431
+201630017
+201630694
+201630603
+201630569
+201631422
+201630695
+201631421
+201631420
+201630693
+201630685
+201630773
+201631313
+201630686
+201630691
+201631418
+201631417
+201631419
+201630699
+201631415
+201631393
+201631416
+201631141
+201631414
+201630078
+201630730
+201630683
+201631356
+201631412
+201630681
+201630684
+201631411
+201631413
+201630690
+201631409
+201630582
+201630641
+201630719
+201630677
+201631408
+201630682
+201630642
+201630687
+201631599
+201631410
+201630679
+201630675
+201630680
+201630673
+201630674
+201631597
+201630632
+201631598
+201631927
+201631596
+201630724
+201630672
+201630678
+201631595
+201631594
+201631591
+201631593
+201631925
+201631948
+201631590
+201631496
+201630601
+201631589
+201631353
+201631924
+201631588
+201631592
+201631587
+201631923
+201631583
+201631585
+201630671
+201631582
+201630635
+201630670
+201630063
+201630774
+201631578
+201631580
+201631577
+201631373
+201631586
+201631331
+201631574
+201631584
+201631576
+201631369
+201630600
+201631922
+201631355
+201631572
+201631571
+201631579
+201631581
+201630090
+201630669
+201631921
+201631834
+201631575
+201631573
+201630079
+201631920
+201631321
+201631566
+201631568
+201631569
+201630676
+201631570
+201631919
+201631563
+201630665
+201631562
+201631397
+201631918
+201631561
+201631567
+201630666
+201630568
+201630664
+201631560
+201631558
+201631559
+201630661
+201630019
+201631916
+201631556
+201630611
+201630749
+201631557
+201631915
+201631917
+201631553
+201631555
+201630689
+201631377
+201631554
+201631914
+201630842
+201630660
+201631552
+201630663
+201630840
+201630040
+201630741
+201630662
+201630625
+201631550
+201631551
+201631549
+201631913
+201631547
+201631548
+201630048
+201631546
+201630045
+201631545
+201631543
+201631911
+201630074
+201631909
+201631910
+201631544
+201631542
+201630839
+201631541
+201631540
+201631389
+201631908
+201630836
+201631539
+201631538
+201630007
+201631907
+201630837
+201631912
+201630835
+201630555
+201630035
+201630667
+201630838
+201631536
+201631388
+201631537
+201630834
+201631534
+201631535
+201631906
+201630648
+201631349
+201630833
+201631533
+201630003
+201631905
+201630832
+201631532
+201631380
+201630650
+201630830
+201631903
+201631940
+201631947
+201631529
+201630050
+201631530
+201630583
+201631904
+201630831
+201630829
+201630826
+201630825
+201631138
+201631366
+201630827
+201631370
+201631902
+201630029
+201631527
+201630627
+201631528
+201631526
+201630824
+201630770
+201630734
+201631311
+201631939
+201631524
+201631523
+201630823
+201631488
+201630608
+201631521
+201631522
+201631525
+201631901
+201630828
+201631900
+201630621
+201630614
+201631950
+201631520
+201631519
+201630645
+201630822
+201631518
+201630740
+201630821
+201630587
+201631899
+201631517
+201630819
+201630818
+201631335
+201631898
+201631316
+201630567
+201630633
+201630069
+201630701
+201631515
+201630656
+201631342
+201630576
+201630089
+201630815
+201630722
+201631531
+201631395
+201630735
+201630042
+201631372
+201630812
+201631514
+201631385
+201630739
+201631315
+201630808
+201630810
+201631346
+201630814
+201631323
+201630723
+201630811
+201631498
+201631513
+201630755
+201630806
+201630813
+201631351
+201630061
+201631512
+201630816
+201631325
+201630809
+201631139
+201630820
+201631509
+201630578
+201631511
+201631510
+201631897
+201630804
+201630805
+201631508
+201630807
+201630629
+201630643
+201630753
+201631506
+201631926
+201631896
+201630566
+201631505
+201631502
+201631491
+201631895
+201630798
+201630799
+201631339
+201631501
+201630022
+201631504
+201631507
+201630802
+201630592
+201631371
+201631894
+201630797
+201630591
+201630630
+201630796
+201631698
+201631500
+201631696
+201631695
+201631697
+201630043
+201630586
+201630794
+201630585
+201631831
+201630584
+201631893
+201631362
+201631892
+201630775
+201630024
+201630795
+201630763
+201630792
+201630762
+201631692
+201631694
+201630761
+201630726
+201630800
+201631691
+201631332
+201630765
+201631333
+201630793
+201631693
+201631689
+201631401
+201631891
+201630728
+201630733
+201631690
+201631688
+201631687
+201631686
+201631683
+201630598
+201631685
+201630534
+201630031
+201631928
+201631352
+201630787
+201630571
+201631682
+201631487
+201631678
+201631676
+201630006
+201631677
+201631681
+201630789
+201630784
+201630565
+201630785
+201631503
+201631672
+201631674
+201631679
+201631671
+201630781
+201631374
+201630041
+201630783
+201631673
+201631675
+201631670
+201631889
+201630597
+201631348
+201631684
+201631400
+201630778
+201631669
+201630767
+201630782
+201631667
+201630067
+201631888
+201630841
+201630530
+201630066
+201631140
+201631668
+201630780
+201630738
+201630027
+201630903
+201631941
+201631328
+201630013
+201631666
+201630737
+201630900
+201630531
+201631664
+201631887
+201631663
+201631662
+201631680
+201630570
+201631660
+201630637
+201630754
+201631886
+201631320
+201631659
+201630901
+201630902
+201630025
+201631658
+201631946
+201630897
+201630899
+201630895
+201631943
+201630757
+201630898
+201630892
+201631885
+201631944
+201630893
+201630894
+201630756
+201630624
+201630732
+201631308
+201631655
+201631656
+201631654
+201631657
+201631307
+201630572
+201630760
+201630652
+201630659
+201630891
+201630054
+201631653
+201631651
+201631390
+201630904
+201630011
+201631650
+201630002
+201631329
+201630803
+201631649
+201630889
+201631648
+201630594
+201630887
+201630886
+201630896
+201630649
+201630759
+201631645
+201630885
+201630720
+201630884
+201631883
+201630750
+201631644
+201631884
+201630882
+201631646
+201631642
+201630619
+201630657
+201631643
+201631882
+201631347
+201631641
+201630881
+201631640
+201630880
+201630014
+201631880
+201630628
+201630746
+201630636
+201630879
+201631879
+201630874
+201631365
+201630589
+201631881
+201630873
+201631330
+201630875
+201631638
+201631639
+201631637
+201630877
+201631636
+201631375
+201631951
+201631634
+201630890
+201630869
+201631635
+201630533
+201630588
+201630876
+201630620
+201631633
+201631357
+201631632
+201631877
+201630752
+201631367
+201631630
+201631631
+201631937
+201630599
+201631628
+201631629
+201631627
+201631626
+201631625
+201630868
+201631624
+201630866
+201630863
+201631623
+201631621
+201630867
+201631622
+201631358
+201631620
+201631364
+201631619
+201630862
+201631618
+201631617
+201630005
+201630009
+201631875
+201631614
+201631616
+201631615
+201631612
+201631874
+201630573
+201631611
+201630883
+201630861
+201630871
+201630860
+201630729
+201631873
+201631344
+201631872
+201631609
+201630865
+201630857
+201630577
+201630870
+201631379
+201631387
+201630888
+201630000
+201630615
+201630856
+201631391
+201630864
+201631317
+201630647
+201630039
+201630574
+201631871
+201631608
+201631868
+201631870
+201630855
+201630038
+201630612
+201631334
+201630581
+201630853
+201631866
+201630653
+201630854
+201631867
+201631495
+201631606
+201631607
+201631865
+201630044
+201631605
+201630852
+201631327
+201631604
+201630771
+201630849
+201630026
+201630850
+201631869
+201630859
+201630016
+201631864
+201630848
+201631863
+201631603
+201630847
+201630748
+201630846
+201630851
+201631862
+201631497
+201631860
+201631859
+201630844
+201631858
+201631602
+201630843
+201630858
+201631857
+201631384
+201630644
+201630065
+201630998
+201630997
+201631827
+201630047
+201630999
+201631861
+201631699
+201631791
+201631600
+201630772
+201630872
+201631601
+201631789
+201631792
+201631856
+201631788
+201631790
+201630994
+201630992
+201630062
+201631787
+201630996
+201631306
+201631360
+201630606
+201630764
+201631786
+201631785
+201631784
+201631855
+201631398
+201631783
+201630995
+201630580
+201630790
+201631780
+201631851
+201631852
+201631853
+201630991
+201631399
+201631781
+201631493
+201631392
+201631779
+201631850
+201630988
+201631337
+201630989
+201631310
+201631345
+201631778
+201631849
+201630990
+201631848
+201631847
+201631782
+201630986
+201631945
+201631846
+201631777
+201630596
+201630015
+201631832
+201631845
+201630984
+201630985
+201631844
+201631492
+201631775
+201631843
+201630983
+201630607
+201630987
+201631841
+201631774
+201630595
+201631776
+201630721
+201631772
+201631773
+201631840
+201630001
+201631839
+201631838
+201631770
+201631768
+201631769
+201630736
+201631322
+201631766
+201630032
+201631837
+201631319
+201631765
+201631767
+201631137
+201630979
+201630980
+201630068
+201631762
+201631763
+201631761
+201631999
+201630976
+201630978
+201630993
+201630975
+201630974
+201631760
+201630973
+201630972
+201631771
+201631759
+201630083
+201630037
+201631758
+201630982
+201630056
+201630971
+201631757
+201631309
+201631996
+201631995
+201631998
+201631764
+201631338
+201630969
+201631755
+201631404
+201630968
+201631997
+201631476
+201630970
+201630021
+201631756
+201631754
+201630963
+201630966
+201631753
+201631752
+201630965
+201630967
+201630961
+201631751
+201630964
+201630962
+201631750
+201631994
+201631993
+201630960
+201630957
+201631343
+201631747
+201631749
+201630958
+201630956
+201631990
+201631354
+201630609
+201631991
+201631748
+201631989
+201630954
+201630955
+201631992
+201631988
+201630532
+201631746
+201630952
+201630959
+201630953
+201631494
+201630951
+201631987
+201630747
+201630008
+201631744
+201630623
+201630046
+201630981
+201631745
+201630950
+201631741
+201631742
+201630946
+201631986
+201630018
+201630947
+201631942
+201631985
+201631738
+201631363
+201631983
+201631984
+201630944
+201630945
+201631733
+201630948
+201631740
+201631737
+201631980
+201630941
+201631981
+201631739
+201631735
+201630010
+201630943
+201631982
+201631979
+201631732
+201630938
+201631731
+201631729
+201631978
+201630940
+201631447
+201631499
+201631833
+201630604
+201630937
+201630939
+201631977
+201631743
+201631728
+201630593
+201631736
+201631727
+201631730
+201630942
+201631427
+201631726
+201630073
+201631724
+201630934
+201631725
+201630072
+201630639
+201631972
+201631324
+201630932
+201631723
+201630034
+201631973
+201630933
+201631971
+201631722
+201630931
+201631721
+201631489
+201630725
+201631720
+201630936
+201630930
+201631718
+201631719
+201630634
+201630929
+201630070
+201631975
+201631976
+201630928
+201631312
+201631970
+201630058
+201630927
+201631969
+201630926
+201631717
+201631716
+201631714
+201631715
+201631968
+201631967
+201630028
+201631142
+201630925
+201631383
+201630924
+201631964
+201631836
+201631965
+201630613
+201630060
+201631966
+201631712
+201631713
+201631963
+201630923
+201631962
+201630921
+201630918
+201631974
+201630917
+201631961
+201630919
+201631340
+201630053
+201631711
+201631960
+201630033
+201631835
+201631710
+201630920
+201630914
+201631709
+201631959
+201631958
+201630626
+201630915
+201630913
+201630744
+201630718
+201631949
+201631708
+201631957
+201631706
+201631703
+201631704
+201630911
+201630912
+201630049
+201631702
+201631136
+201631707
+201630575
+201631135
+201630909
+201631700
+201631361
+201631701
+201630020
+201631956
+201631797
+201631798
+201630908
+201631796
+201630057
+201631955
+201631795
+201630631
+201631794
+201631799
+201630907
+201631359
+201630052
+201631793
+201631954
+201631953
+201631952
+201630906
+201630905
+201636861
+201636159
+201636860
+201636859
+201636158
+201636858
+201630461
+201630460
+201636857
+201636856
+201636157
+201630458
+201636156
+201636155
+201630457
+201636154
+201630456
+201636153
+201636152
+201636855
+201636151
+201636854
+201630455
+201636150
+201636149
+201630454
+201630453
+201636148
+201636147
+201630452
+201630451
+201636145
+201636144
+201636143
+201636853
+201630450
+201636852
+201636142
+201636141
+201636851
+201630449
+201636140
+201630448
+201636850
+201636139
+201636138
+201636137
+201636136
+201636135
+201636134
+201636133
+201636132
+201636849
+201636131
+201636130
+201636129
+201636128
+201630446
+201636848
+201636127
+201636126
+201630445
+201636125
+201636124
+201636123
+201636122
+201636847
+201636121
+201636120
+201630444
+201636119
+201630443
+201636118
+201630442
+201636846
+201636845
+201636117
+201636844
+201636116
+201636115
+201636114
+201636113
+201636843
+201636112
+201630441
+201636842
+201636111
+201636110
+201630439
+201636109
+201636841
+201630438
+201636840
+201636839
+201636108
+201636107
+201636106
+201636105
+201636104
+201630437
+201636954
+201636838
+201636103
+201636102
+201630436
+201636837
+201630435
+201636101
+201636100
+201636099
+201636098
+201636836
+201636835
+201636097
+201630434
+201630433
+201630432
+201636096
+201636834
+201636095
+201636833
+201636094
+201636832
+201636093
+201630431
+201636831
+201630430
+201630429
+201636830
+201636092
+201630428
+201636829
+201630427
+201636828
+201636091
+201630426
+201636090
+201636089
+201630425
+201630424
+201630423
+201636088
+201636827
+201630422
+201630421
+201630420
+201636087
+201636826
+201636825
+201636824
+201636086
+201630419
+201630418
+201630417
+201636085
+201636084
+201636083
+201636082
+201636823
+201636822
+201636081
+201630416
+201630415
+201636079
+201630414
+201630413
+201636821
+201636078
+201636820
+201636077
+201636076
+201636075
+201630412
+201630411
+201636074
+201636073
+201636072
+201630410
+201636071
+201636819
+201636818
+201636264
+201636263
+201630409
+201630096
+201630097
+201630408
+201630407
+201630406
+201630405
+201630404
+201630403
+201636262
+201630402
+201630401
+201636261
+201636260
+201636817
+201636816
+201636259
+201636258
+201636815
+201636257
+201630400
+201636256
+201630399
+201630398
+201630397
+201636255
+201636254
+201636253
+201636814
+201636813
+201636252
+201630396
+201630395
+201636812
+201636251
+201630394
+201636811
+201636250
+201636249
+201636953
+201636248
+201636550
+201636810
+201636549
+201636548
+201636247
+201636547
+201636546
+201636246
+201636245
+201636244
+201636809
+201636545
+201636243
+201636242
+201636241
+201636240
+201636239
+201636544
+201636808
+201636807
+201636238
+201636237
+201636236
+201636235
+201636234
+201636233
+201636232
+201636543
+201636231
+201636542
+201636541
+201636540
+201636230
+201636806
+201636229
+201636228
+201636031
+201636226
+201636805
+201636225
+201630098
+201636539
+201636224
+201636804
+201636538
+201636223
+201636537
+201636222
+201630099
+201636536
+201636221
+201636220
+201636219
+201636218
+201636535
+201636217
+201636216
+201636215
+201636214
+201636534
+201636803
+201636213
+201636533
+201636802
+201636532
+201636531
+201636530
+201636211
+201636529
+201636801
+201636800
+201636210
+201636799
+201636209
+201636528
+201636208
+201636207
+201636527
+201636526
+201636798
+201636206
+201636205
+201636525
+201636204
+201636797
+201636952
+201636524
+201636796
+201636203
+201636202
+201636523
+201636795
+201636201
+201636794
+201636522
+201636200
+201636199
+201636793
+201636198
+201636197
+201636196
+201636521
+201636520
+201636195
+201636194
+201636792
+201636193
+201636791
+201636790
+201636789
+201636788
+201636192
+201636519
+201636787
+201636786
+201636785
+201636191
+201636518
+201636190
+201636784
+201636517
+201636516
+201636515
+201630100
+201636514
+201636513
+201636188
+201636512
+201636511
+201636510
+201636509
+201636783
+201636508
+201636507
+201636506
+201636505
+201636186
+201636782
+201636504
+201636503
+201636502
+201636781
+201636501
+201630393
+201630392
+201630391
+201636780
+201636779
+201630390
+201636185
+201636184
+201636778
+201636183
+201630389
+201630388
+201636777
+201630387
+201636182
+201636776
+201636775
+201630386
+201636774
+201630385
+201636181
+201630384
+201636180
+201636179
+201636178
+201636773
+201636176
+201630383
+201636175
+201636174
+201630382
+201630381
+201630380
+201630379
+201636173
+201630378
+201630377
+201636772
+201636771
+201630376
+201636171
+201636770
+201630375
+201636742
+201630374
+201636170
+201630373
+201636169
+201636168
+201630372
+201636768
+201630371
+201636767
+201636167
+201630370
+201630369
+201630368
+201630367
+201630366
+201636166
+201630365
+201630364
+201630363
+201630362
+201630360
+201630359
+201636766
+201636765
+201636165
+201636164
+201630358
+201630357
+201636764
+201636163
+201630355
+201636763
+201636162
+201636161
+201630354
+201630353
+201630352
+201636340
+201636339
+201630351
+201636338
+201636337
+201636762
+201636761
+201636760
+201636759
+201636336
+201630350
+201630349
+201636335
+201636334
+201636758
+201636333
+201636332
+201630348
+201636331
+201636757
+201630347
+201636330
+201636329
+201636328
+201636327
+201636948
+201630346
+201636326
+201636325
+201636324
+201630345
+201636756
+201636323
+201636755
+201630344
+201636322
+201630343
+201630342
+201636947
+201630341
+201636321
+201636754
+201636320
+201636319
+201636318
+201636753
+201636317
+201636752
+201630340
+201630339
+201630338
+201636316
+201636751
+201630337
+201630126
+201636315
+201636314
+201636750
+201630336
+201636313
+201636312
+201630335
+201630334
+201636749
+201630125
+201630333
+201636311
+201636748
+201636310
+201630332
+201636309
+201636308
+201636307
+201636306
+201630331
+201636305
+201630330
+201636304
+201630329
+201636303
+201636302
+201636747
+201636301
+201636300
+201636299
+201636298
+201636721
+201630327
+201630326
+201636297
+201630325
+201636296
+201636720
+201636295
+201636294
+201636293
+201630324
+201636292
+201636718
+201636291
+201636717
+201636290
+201636716
+201636289
+201630323
+201630322
+201636715
+201630321
+201636287
+201636714
+201636713
+201636712
+201630320
+201630319
+201636711
+201630318
+201636286
+201636710
+201630317
+201630316
+201636285
+201636284
+201636709
+201630315
+201630314
+201636283
+201630313
+201630312
+201630311
+201636282
+201630310
+201630309
+201630308
+201636281
+201636280
+201636279
+201636708
+201636278
+201630307
+201636707
+201630306
+201630305
+201630304
+201636277
+201636276
+201630303
+201630302
+201630301
+201636275
+201636274
+201636273
+201636706
+201636272
+201636705
+201630300
+201636271
+201636270
+201630299
+201636269
+201636268
+201630499
+201636704
+201636267
+201636703
+201630498
+201630497
+201630496
+201630495
+201636266
+201636702
+201630494
+201630493
+201636701
+201636700
+201630492
+201636265
+201636407
+201630491
+201636406
+201636699
+201630490
+201630489
+201636405
+201630488
+201630487
+201636404
+201630486
+201636698
+201636403
+201636946
+201630485
+201636402
+201636401
+201630484
+201636697
+201630483
+201630482
+201636400
+201630481
+201636696
+201636399
+201630480
+201630479
+201636398
+201636397
+201636396
+201636695
+201630478
+201630477
+201636394
+201636694
+201636945
+201636393
+201636392
+201630476
+201630475
+201636693
+201636391
+201630474
+201636390
+201630473
+201636389
+201630472
+201636692
+201636691
+201636388
+201630471
+201630470
+201630469
+201636690
+201636387
+201630468
+201636386
+201636385
+201636689
+201630467
+201630466
+201636384
+201630465
+201636383
+201630464
+201636382
+201630463
+201630462
+201636381
+201636380
+201636379
+201636688
+201636687
+201630298
+201630297
+201630296
+201630295
+201636378
+201630294
+201636686
+201636377
+201630293
+201636376
+201630292
+201636375
+201636374
+201636685
+201636684
+201630291
+201636373
+201636683
+201630124
+201636682
+201636372
+201636681
+201636371
+201636370
+201636369
+201630290
+201636368
+201636367
+201636366
+201636365
+201636364
+201636363
+201630289
+201636362
+201636361
+201630288
+201630287
+201636360
+201636359
+201630286
+201636680
+201636679
+201630285
+201636358
+201636678
+201630284
+201630283
+201630282
+201636677
+201636357
+201636356
+201636676
+201636355
+201630281
+201636675
+201636951
+201636674
+201636673
+201630123
+201630280
+201636354
+201636353
+201636671
+201630279
+201636352
+201630278
+201636351
+201636350
+201636670
+201630277
+201636669
+201630276
+201630275
+201636349
+201636668
+201630274
+201630273
+201636348
+201630272
+201636347
+201636667
+201636346
+201636666
+201636665
+201630271
+201630270
+201636664
+201636345
+201636344
+201636343
+201630269
+201636950
+201630268
+201636342
+201630267
+201636663
+201630266
+201636662
+201630265
+201630264
+201636341
+201636949
+201636661
+201630263
+201636499
+201630262
+201636660
+201636659
+201636498
+201636497
+201630261
+201636658
+201630260
+201636657
+201636656
+201636655
+201636496
+201636654
+201636495
+201630259
+201630258
+201636653
+201636652
+201636651
+201630257
+201636650
+201630256
+201636649
+201636494
+201636493
+201630255
+201636648
+201630254
+201630253
+201636492
+201636491
+201636647
+201636490
+201630252
+201636489
+201630251
+201636646
+201636645
+201630250
+201630249
+201636488
+201630248
+201636644
+201636643
+201630247
+201636642
+201636487
+201630246
+201636486
+201636641
+201636485
+201636640
+201636484
+201630245
+201636483
+201636639
+201630244
+201636482
+201636481
+201636638
+201636480
+201630243
+201636479
+201636637
+201636636
+201636635
+201636478
+201630242
+201630241
+201636634
+201636633
+201636632
+201636477
+201636476
+201636475
+201636474
+201630240
+201630239
+201636473
+201630238
+201636472
+201630237
+201636471
+201636631
+201630236
+201630235
+201630234
+201636470
+201636469
+201636468
+201630233
+201630122
+201636630
+201636467
+201636629
+201636466
+201630232
+201636465
+201630121
+201630231
+201630230
+201636628
+201636464
+201636627
+201636626
+201630229
+201636463
+201636462
+201630227
+201636625
+201636461
+201636460
+201630226
+201636459
+201636458
+201636457
+201636624
+201630225
+201636623
+201630224
+201636456
+201636455
+201636622
+201630223
+201636454
+201630221
+201636621
+201636620
+201636453
+201636452
+201636451
+201636450
+201630220
+201636449
+201636619
+201636448
+201636447
+201636446
+201630219
+201630218
+201630217
+201636445
+201636618
+201630216
+201636444
+201636617
+201636616
+201636443
+201636615
+201636614
+201636442
+201630215
+201636441
+201636440
+201630214
+201636613
+201636612
+201636611
+201636439
+201636438
+201630213
+201636437
+201636436
+201636435
+201636434
+201630212
+201636610
+201636433
+201630211
+201630210
+201636609
+201630209
+201636432
+201636608
+201636607
+201636431
+201636430
+201630208
+201636429
+201636428
+201636606
+201636605
+201636604
+201636603
+201636602
+201636427
+201630207
+201636426
+201630206
+201636601
+201636425
+201630205
+201636424
+201630204
+201636600
+201636599
+201630202
+201630203
+201636423
+201630201
+201630200
+201636422
+201636598
+201636421
+201636420
+201636419
+201636597
+201630199
+201630120
+201636596
+201630198
+201636418
+201636417
+201630197
+201636595
+201636416
+201630196
+201636415
+201630195
+201630194
+201630193
+201636414
+201630192
+201636594
+201636413
+201636412
+201630191
+201630190
+201630189
+201636411
+201636593
+201636410
+201630188
+201630187
+201636592
+201636591
+201636590
+201636409
+201630186
+201636589
+201636408
+201630185
+201630184
+201636552
+201630119
+201637317
+201637409
+201637243
+201637232
+201637041
+201637242
+201637372
+201637210
+201637038
+201637383
+201637248
+201637247
+201637584
+201637382
+201637244
+201637539
+201637039
+201637239
+201637206
+201637289
+201637393
+201637029
+201637366
+201637858
+201637226
+201632058
+201637365
+201637531
+201637280
+201637310
+201637758
+201637147
+201637583
+201637230
+201637407
+201637743
+201637585
+201637562
+201637241
+201632079
+201637138
+201637321
+201637593
+201637096
+201637214
+201637487
+201632059
+201632101
+201637136
+201637464
+201636038
+201637711
+201637415
+201637320
+201632078
+201637607
+201637547
+201637855
+201637768
+201637040
+201637417
+201637414
+201637284
+201637670
+201637425
+201637739
+201637486
+201632196
+201637761
+201637328
+201632106
+201637716
+201637465
+201637302
+201637137
+201637428
+201637294
+201637682
+201637427
+201637700
+201637288
+201637125
+201637129
+201632074
+201637113
+201637470
+201637332
+201637135
+201637195
+201637240
+201637426
+201637693
+201632073
+201637466
+201637433
+201637679
+201637148
+201637688
+201637199
+201637765
+201637299
+201637296
+201637495
+201637740
+201637418
+201637216
+201637133
+201637387
+201637117
+201637496
+201637420
+201637297
+201637692
+201637131
+201636041
+201637491
+201637132
+201637334
+201637162
+201637385
+201637070
+201637856
+201637609
+201637490
+201637741
+201637476
+201637422
+201637325
+201637497
+201637327
+201637565
+201637127
+201632048
+201637318
+201637434
+201637690
+201636001
+201637364
+201637461
+201637678
+201637025
+201637687
+201637738
+201637237
+201637686
+201637533
+201637675
+201637462
+201637122
+201637121
+201637925
+201632043
+201637363
+201637809
+201637286
+201637463
+201637720
+201637544
+201637685
+201637721
+201637447
+201637153
+201637451
+201637671
+201637639
+201632045
+201637085
+201637340
+201637714
+201637530
+201637805
+201637638
+201637103
+201637443
+201632047
+201637673
+201637448
+201637626
+201637630
+201637158
+201637069
+201632111
+201632046
+201637438
+201637306
+201637667
+201637102
+201637459
+201632044
+201637441
+201637246
+201637460
+201637450
+201637105
+201637633
+201637045
+201632205
+201637632
+201637640
+201637637
+201637455
+201637931
+201637628
+201637440
+201637213
+201636037
+201632039
+201637111
+201632122
+201637457
+201637703
+201637215
+201637623
+201637625
+201637613
+201637631
+201637229
+201637611
+201637281
+201632042
+201637872
+201637823
+201637876
+201637831
+201637627
+201637594
+201637707
+201632108
+201637590
+201632193
+201637867
+201632120
+201632189
+201637668
+201637830
+201632119
+201637090
+201637766
+201637825
+201637926
+201637454
+201637871
+201632110
+201637877
+201637866
+201637847
+201637828
+201632084
+201637852
+201637505
+201637878
+201637430
+201637072
+201637453
+201637868
+201637870
+201637775
+201637879
+201637849
+201637605
+201632118
+201637307
+201637408
+201637095
+201637603
+201637665
+201632121
+201637742
+201637654
+201637092
+201632085
+201637829
+201637088
+201637827
+201637108
+201637701
+201637107
+201637708
+201637794
+201637819
+201637813
+201637082
+201637568
+201632005
+201637808
+201632086
+201637818
+201637853
+201637816
+201632191
+201637112
+201637799
+201637074
+201637435
+201637710
+201637811
+201637553
+201637709
+201632087
+201637806
+201637782
+201637532
+201637909
+201637810
+201632194
+201637802
+201632098
+201637801
+201632095
+201637060
+201637908
+201637800
+201637059
+201637071
+201637058
+201637783
+201637035
+201637841
+201637065
+201637057
+201632092
+201632089
+201632097
+201637764
+201632004
+201632090
+201637597
+201637774
+201637791
+201637649
+201637068
+201637650
+201637890
+201637648
+201637043
+201637587
+201637646
+201637645
+201637377
+201637053
+201637647
+201637047
+201637560
+201637767
+201632049
+201637376
+201632094
+201637056
+201632088
+201637770
+201637661
+201632010
+201637309
+201637660
+201632034
+201637196
+201637375
+201637619
+201637304
+201637374
+201637351
+201637880
+201637618
+201637916
+201637617
+201637591
+201637651
+201637389
+201637308
+201637222
+201637048
+201637881
+201632064
+201637027
+201637616
+201632203
+201637615
+201637659
+201637524
+201632065
+201637567
+201637256
+201637510
+201637379
+201637657
+201637756
+201632053
+201637260
+201632028
+201637362
+201637658
+201637032
+201637779
+201632062
+201637655
+201637264
+201637336
+201637558
+201637235
+201637754
+201637504
+201637501
+201637361
+201637031
+201637614
+201637666
+201637735
+201637290
+201637492
+201637744
+201637620
+201637509
+201637500
+201637554
+201637254
+201637684
+201637695
+201637669
+201637404
+201637664
+201637146
+201637696
+201637656
+201637485
+201637357
+201637369
+201637653
+201637918
+201637211
+201637846
+201637733
+201637662
+201637576
+201632051
+201637479
+201637784
+201637789
+201637529
+201637923
+201637790
+201637468
+201637780
+201637518
+201637566
+201637557
+201637202
+201632032
+201637484
+201637798
+201632023
+201632035
+201637170
+201637026
+201637788
+201637771
+201637250
+201637786
+201637922
+201637681
+201637116
+201637537
+201637793
+201637543
+201632036
+201632031
+201637186
+201637185
+201637803
+201637190
+201637378
+201637201
+201637183
+201637535
+201637467
+201637919
+201637792
+201632026
+201632025
+201637845
+201637305
+201637906
+201637804
+201637144
+201637345
+201637797
+201637471
+201637860
+201637683
+201637785
+201637896
+201637795
+201632018
+201632195
+201637384
+201637174
+201637472
+201637857
+201632199
+201637349
+201637458
+201637892
+201637893
+201632096
+201637577
+201632075
+201637885
+201637315
+201637726
+201637354
+201637473
+201637545
+201632104
+201637569
+201637197
+201632105
+201637300
+201637760
+201637402
+201637335
+201637037
+201637371
+201637342
+201637600
+201637602
+201637582
+201632100
+201637238
+201637575
+201637097
+201637360
+201637796
+201637499
+201637368
+201637406
+201632076
+201637391
+201637036
+201637207
+201637419
+201637513
+201637480
+201637225
+201637507
+201637541
+201637390
+201632072
+201637787
+201637478
+201637410
+201637233
+201637482
+201632070
+201637416
+201637231
+201637563
+201637205
+201637581
+201637511
+201637759
+201637141
+201637534
+201637429
+201637224
+201637869
+201637456
+201637400
+201637301
+201637303
+201637601
+201637713
+201637719
+201637285
+201637718
+201637380
+201632056
+201637516
+201637331
+201637538
+201637324
+201637423
+201637292
+201637712
+201637580
+201637717
+201637606
+201637330
+201637343
+201632080
+201637702
+201637120
+201637130
+201637570
+201637314
+201637494
+201637412
+201637298
+201637483
+201637859
+201637502
+201637715
+201637689
+201637424
+201637699
+201637311
+201637508
+201637134
+201637208
+201632057
+201637421
+201637370
+201637338
+201637498
+201637672
+201637843
+201632081
+201637118
+201637411
+201637691
+201637561
+201637329
+201637521
+201637608
+201636040
+201637356
+201637128
+201637522
+201637228
+201632082
+201637395
+201637573
+201637599
+201637489
+201637517
+201637469
+201637477
+201637475
+201637493
+201637526
+201637115
+201637698
+201637680
+201637555
+201637326
+201637883
+201637525
+201637126
+201637236
+201637386
+201637341
+201637114
+201637339
+201637322
+201637643
+201637337
+201637814
+201637355
+201637123
+201637313
+201637359
+201637488
+201637677
+201637556
+201637388
+201637287
+201637727
+201637724
+201637676
+201637124
+201637546
+201637474
+201637358
+201637194
+201637193
+201637449
+201637574
+201637333
+201637725
+201637595
+201637445
+201637641
+201637704
+201637104
+201637636
+201637323
+201637642
+201637437
+201637519
+201637106
+201637442
+201637405
+201637635
+201637514
+201637629
+201637101
+201637728
+201637506
+201637697
+201637439
+201637139
+201637191
+201637245
+201637143
+201637622
+201637444
+201637145
+201637209
+201637520
+201637142
+201637431
+201637762
+201637634
+201637154
+201637512
+201637882
+201637152
+201637624
+201637319
+201637396
+201637100
+201637204
+201632192
+201637432
+201637156
+201637218
+201637099
+201637078
+201637223
+201637621
+201632114
+201637087
+201637084
+201632202
+201637151
+201637737
+201637083
+201632201
+201632117
+201632187
+201637834
+201637086
+201637030
+201632000
+201637081
+201632207
+201632002
+201637098
+201637824
+201637033
+201637080
+201637200
+201637596
+201637089
+201637817
+201637091
+201637644
+201637079
+201637705
+201637094
+201637093
+201637612
+201637604
+201637055
+201632001
+201637528
+201637413
+201637832
+201637381
+201637076
+201637833
+201637822
+201637835
+201637928
+201632116
+201637826
+201637820
+201632115
+201637571
+201632109
+201637110
+201637044
+201637157
+201637821
+201632113
+201637874
+201632112
+201637807
+201637815
+201637063
+201637812
+201637075
+201637848
+201637572
+201632103
+201637073
+201636036
+201632093
+201632102
+201637773
+201637054
+201637024
+201637064
+201637067
+201637452
+201637198
+201632067
+201637062
+201637050
+201632091
+201637049
+201637772
+201637933
+201637052
+201637344
+201637051
+201637278
+201637723
+201632069
+201632068
+201637769
+201637777
+201637753
+201637778
+201637274
+201632066
+201637273
+201637277
+201637875
+201637291
+201632052
+201637276
+201637747
+201637279
+201637763
+201637873
+201637272
+201637755
+201637752
+201637911
+201632071
+201637757
+201637851
+201637910
+201637592
+201637275
+201632060
+201632063
+201637750
+201637730
+201637929
+201637109
+201637751
+201637398
+201637527
+201636035
+201632061
+201637262
+201637255
+201637746
+201637745
+201637399
+201637927
+201637749
+201637748
+201637267
+201637270
+201637171
+201637259
+201632055
+201637261
+201637269
+201637283
+201637159
+201637736
+201632040
+201632054
+201632021
+201632050
+201632033
+201637350
+201637894
+201637258
+201637346
+201637732
+201637312
+201637734
+201637268
+201632038
+201637729
+201632190
+201637266
+201637265
+201637731
+201632029
+201637181
+201637559
+201637252
+201637253
+201637934
+201637189
+201637392
+201637907
+201637552
+201637188
+201637394
+201637187
+201632200
+201637257
+201637932
+201637515
+201637536
+201637917
+201637160
+201637776
+201637861
+201636034
+201637902
+201637180
+201637182
+201637020
+201637046
+201637251
+201637149
+201637914
+201637905
+201637219
+201637913
+201637184
+201637921
+201637598
+201632030
+201637249
+201637904
+201637220
+201637920
+201637930
+201632027
+201637903
+201637179
+201637367
+201637915
+201637542
+201637884
+201637912
+201637177
+201637901
+201632024
+201632022
+201637897
+201637178
+201637221
+201637899
+201637898
+201637173
+201632014
+201632019
+201637176
+201637175
+201637166
+201637164
+201637900
+201637169
+201637066
+201632003
+201632016
+201632012
+201637865
+201637844
+201637316
+201632041
+201637523
+201637227
+201632020
+201637034
+201637172
+201637061
+201637887
+201632188
+201637203
+201637864
+201632015
+201632013
+201637722
+201637578
+201632206
+201637891
+201632007
+201637548
+201637347
+201637549
+201632006
+201637168
+201637192
+201637888
+201637150
+201637167
+201637706
+201632011
+201637550
+201632017
+201637155
+201637889
+201637234
+201637161
+201637886
+201637652
+201632009
+201637863
+201637217
+201632198
+201632008
+201632204
+201637021
+201632197
+201637163
+201637862
+201637842
+201637589
+201637564
+201637042
+201637588
+201637586
+201637540
+201637551
+201632300
+201632876
+201632678
+201632123
+201632696
+201632304
+201632697
+201632867
+201632548
+201632135
+201632965
+201632133
+201632129
+201632632
+201632260
+201632284
+201632558
+201632566
+201633027
+201632498
+201632916
+201632132
+201632126
+201632602
+201632978
+201632513
+201632504
+201632930
+201632640
+201632522
+201632464
+201632919
+201632623
+201632494
+201632287
+201632487
+201632564
+201632303
+201632651
+201632572
+201632539
+201632844
+201632283
+201632508
+201632670
+201632850
+201632603
+201632638
+201632506
+201632910
+201632937
+201632538
+201632862
+201632917
+201632840
+201632493
+201632614
+201632592
+201632956
+201632652
+201632481
+201632556
+201632612
+201632292
+201632479
+201632555
+201632255
+201632957
+201632928
+201632307
+201632478
+201632611
+201632969
+201632925
+201632461
+201632823
+201632281
+201632529
+201632898
+201632650
+201632871
+201632460
+201632826
+201632259
+201632505
+201632530
+201632901
+201632883
+201632933
+201632306
+201632544
+201632847
+201632581
+201632305
+201632274
+201632610
+201632485
+201632452
+201632458
+201632510
+201632534
+201632620
+201632624
+201632514
+201632865
+201632518
+201632239
+201632821
+201632524
+201632863
+201632447
+201632646
+201632628
+201632489
+201632692
+201632849
+201632695
+201632573
+201632532
+201632261
+201632630
+201632516
+201632515
+201632453
+201632589
+201632891
+201632820
+201632509
+201632967
+201632427
+201632186
+201632645
+201632252
+201632477
+201632774
+201632637
+201632384
+201632622
+201632846
+201632635
+201632480
+201632523
+201632621
+201632902
+201632586
+201632911
+201632541
+201632816
+201632517
+201632934
+201632920
+201632412
+201632679
+201632593
+201632441
+201632411
+201632900
+201632237
+201632845
+201632403
+201632648
+201632426
+201632217
+201632568
+201632791
+201632879
+201632511
+201632809
+201632654
+201632521
+201632215
+201632314
+201632647
+201632884
+201632401
+201632367
+201632598
+201632395
+201632625
+201632430
+201632887
+201632540
+201632272
+201633184
+201632690
+201632214
+201632929
+201632760
+201632323
+201632886
+201632385
+201632784
+201632861
+201632567
+201632569
+201632234
+201632743
+201632246
+201632512
+201632626
+201632520
+201632997
+201632642
+201632502
+201632873
+201632805
+201632233
+201632531
+201632360
+201632263
+201632985
+201632636
+201632169
+201632533
+201632184
+201632475
+201632763
+201632689
+201632993
+201632892
+201632537
+201632495
+201632245
+201632681
+201632881
+201632866
+201632991
+201632554
+201632410
+201632267
+201632680
+201632507
+201632594
+201632266
+201632804
+201632882
+201632229
+201632527
+201632904
+201632979
+201632903
+201632842
+201632996
+201632160
+201632553
+201632536
+201632643
+201632878
+201632228
+201632896
+201632528
+201632682
+201632130
+201632859
+201632343
+201632671
+201632497
+201632156
+201632932
+201632240
+201632159
+201632995
+201632971
+201632730
+201632751
+201632627
+201632170
+201632975
+201632708
+201632476
+201632759
+201632947
+201632225
+201632364
+201632340
+201632503
+201632419
+201632474
+201632291
+201632421
+201632691
+201632496
+201632550
+201632858
+201632312
+201632492
+201632327
+201632644
+201632753
+201632256
+201632420
+201632223
+201632715
+201632841
+201632337
+201632142
+201632704
+201632749
+201632222
+201632977
+201632748
+201633023
+201633181
+201632365
+201632830
+201632660
+201632899
+201632700
+201632470
+201632688
+201632290
+201632829
+201632853
+201632659
+201632744
+201632445
+201632778
+201633022
+201632361
+201632591
+201632782
+201632694
+201632139
+201632699
+201632258
+201632609
+201632674
+201632838
+201632946
+201632693
+201632738
+201632486
+201632848
+201632707
+201632731
+201632141
+201632686
+201632182
+201632740
+201632711
+201632468
+201632675
+201632335
+201632590
+201632706
+201632990
+201632324
+201632685
+201632950
+201632456
+201632606
+201632613
+201632656
+201632724
+201632153
+201632574
+201632773
+201632661
+201632987
+201632181
+201632722
+201632359
+201632961
+201632488
+201632607
+201632777
+201632721
+201632786
+201632664
+201632629
+201632720
+201632588
+201632289
+201632397
+201632157
+201632339
+201632457
+201632164
+201632557
+201632658
+201632393
+201632968
+201632741
+201632542
+201632399
+201632358
+201632657
+201632357
+201632584
+201632140
+201632579
+201632356
+201632949
+201632152
+201632662
+201632776
+201632353
+201632158
+201632825
+201632398
+201632775
+201632570
+201632525
+201632387
+201632546
+201632463
+201632333
+201632948
+201632954
+201632582
+201632719
+201633182
+201632836
+201632952
+201632772
+201632138
+201632713
+201632712
+201632870
+201632963
+201632444
+201632943
+201632177
+201632334
+201632955
+201632959
+201632718
+201632605
+201632970
+201632469
+201632714
+201632931
+201632608
+201632837
+201632962
+201632923
+201632273
+201632698
+201632604
+201632471
+201632147
+201632924
+201632578
+201632405
+201632964
+201632587
+201632146
+201632145
+201632386
+201632472
+201632330
+201632180
+201632663
+201632914
+201632149
+201632926
+201632857
+201632559
+201632465
+201632736
+201632855
+201632673
+201632580
+201632880
+201632771
+201632735
+201632552
+201632734
+201632703
+201632392
+201632770
+201632352
+201632668
+201632750
+201632905
+201632727
+201632150
+201632406
+201632176
+201632467
+201632918
+201632655
+201632178
+201632765
+201632716
+201632151
+201632764
+201632888
+201632639
+201632577
+201632935
+201632835
+201632872
+201632388
+201632723
+201632373
+201632462
+201632755
+201632561
+201632893
+201632705
+201632466
+201632482
+201632262
+201632282
+201632276
+201632526
+201632285
+201632631
+201632908
+201632951
+201632247
+201632329
+201632739
+201632941
+201632984
+201632454
+201632980
+201632131
+201632490
+201632617
+201632575
+201632127
+201632976
+201632565
+201632125
+201632519
+201632894
+201632992
+201632616
+201632562
+201632789
+201632667
+201632974
+201632268
+201632875
+201632710
+201632618
+201632973
+201632983
+201632958
+201632982
+201632889
+201632684
+201632676
+201632491
+201632634
+201632981
+201632128
+201632938
+201632702
+201632864
+201632473
+201632944
+201632286
+201632915
+201632669
+201632922
+201632972
+201632601
+201632936
+201632877
+201632499
+201632302
+201632653
+201632909
+201632895
+201632615
+201632939
+201632249
+201632535
+201632310
+201632500
+201632649
+201632265
+201632595
+201632331
+201632560
+201632163
+201632907
+201632834
+201632294
+201632297
+201632243
+201632814
+201632666
+201632244
+201632251
+201632459
+201632839
+201632824
+201632832
+201632270
+201632665
+201632960
+201632501
+201632322
+201632275
+201632822
+201632818
+201632137
+201632906
+201632551
+201632484
+201632320
+201632827
+201632321
+201632449
+201632807
+201632326
+201632817
+201632801
+201632833
+201632319
+201632912
+201632309
+201632318
+201632451
+201632446
+201632781
+201632308
+201632438
+201632317
+201633025
+201632799
+201632316
+201632831
+201632798
+201632227
+201632416
+201632250
+201632450
+201632874
+201632236
+201632315
+201632439
+201632418
+201632219
+201632819
+201632483
+201632812
+201632293
+201632253
+201632815
+201632431
+201632800
+201632425
+201632677
+201632854
+201632442
+201632391
+201632440
+201632230
+201632769
+201632313
+201632576
+201632257
+201632415
+201632945
+201632172
+201632171
+201632796
+201632811
+201632761
+201632296
+201632787
+201632788
+201632808
+201632436
+201632264
+201632226
+201632443
+201632179
+201632757
+201632241
+201632232
+201632278
+201632417
+201632806
+201632389
+201632813
+201632218
+201632790
+201632766
+201632381
+201632414
+201633183
+201632785
+201632597
+201632375
+201632136
+201632868
+201632288
+201632211
+201632402
+201632413
+201632210
+201632672
+201632400
+201632869
+201632394
+201632435
+201632238
+201632301
+201632298
+201632183
+201632374
+201632166
+201633024
+201632890
+201632434
+201632754
+201632299
+201632424
+201632927
+201632209
+201632143
+201632280
+201632404
+201632185
+201632382
+201632208
+201632175
+201632433
+201632355
+201632231
+201632377
+201632756
+201632271
+201632383
+201632728
+201632762
+201632726
+201632803
+201632279
+201632380
+201632376
+201632742
+201632583
+201632683
+201632851
+201632269
+201632328
+201632167
+201632966
+201632737
+201632369
+201632174
+201632549
+201632165
+201632802
+201632168
+201632173
+201632162
+201632989
+201632277
+201632378
+201632733
+201632794
+201632423
+201632155
+201632379
+201632432
+201632701
+201632797
+201632363
+201632429
+201632428
+201632235
+201632347
+201632346
+201632988
+201632758
+201632368
+201632362
+201632793
+201632371
+201632224
+201632795
+201632325
+201632161
+201632729
+201632745
+201632345
+201632338
+201632242
+201632396
+201632792
+201632221
+201632366
+201632220
+201632354
+201632856
+201632336
+201632986
+201632370
+201632828
+201633180
+201632998
+201632408
+201632600
+201632148
+201632596
+201632994
+201632783
+201632752
+201632350
+201632332
+201632547
+201632344
+201632154
+201632709
+201632543
+201632213
+201632913
+201632545
+201632725
+201632254
+201632409
+201632144
+201632747
+201632732
+201632342
+201632942
+201632212
+201632407
+201632779
+201632780
+201632348
+201632349
+201632953
+201632448
+201633977
+201633372
+201633944
+201633945
+201633635
+201633642
+201633943
+201633670
+201633371
+201633942
+201633671
+201633950
+201633634
+201633651
+201633955
+201633957
+201633633
+201633941
+201633472
+201633368
+201633369
+201633938
+201633939
+201633631
+201633474
+201633940
+201633476
+201633985
+201633984
+201633632
+201633937
+201633366
+201633367
+201633936
+201633629
+201633630
+201633388
+201633484
+201633408
+201633996
+201633934
+201633933
+201633365
+201633478
+201633974
+201633935
+201633932
+201633655
+201633627
+201633626
+201633930
+201633976
+201633927
+201633964
+201633929
+201633364
+201633475
+201633438
+201633925
+201633926
+201633923
+201633979
+201633922
+201633921
+201633920
+201633919
+201633363
+201633361
+201633924
+201633917
+201633916
+201633915
+201633914
+201633918
+201633362
+201633644
+201633913
+201633959
+201633911
+201633625
+201633357
+201633946
+201633912
+201633660
+201633360
+201633358
+201633356
+201633628
+201633390
+201633910
+201633624
+201633681
+201633354
+201633623
+201633355
+201633962
+201633684
+201633998
+201633909
+201633970
+201633351
+201633908
+201633907
+201633988
+201633494
+201633906
+201633350
+201633904
+201633648
+201633905
+201633903
+201633621
+201633349
+201633348
+201633347
+201633688
+201633902
+201633434
+201633619
+201633480
+201633377
+201633346
+201633620
+201633900
+201633618
+201633901
+201633617
+201633967
+201633899
+201633344
+201633949
+201633898
+201633953
+201633975
+201633980
+201633345
+201633897
+201633477
+201633341
+201633339
+201633340
+201633894
+201633896
+201633616
+201633338
+201633658
+201633343
+201633336
+201633891
+201633895
+201633615
+201633892
+201633335
+201633638
+201633393
+201633679
+201633890
+201633887
+201633337
+201633614
+201633669
+201633888
+201633333
+201633435
+201633886
+201633885
+201633612
+201633613
+201633330
+201633332
+201633490
+201633370
+201633889
+201633437
+201633495
+201633884
+201633881
+201633359
+201633992
+201633883
+201633529
+201633389
+201633878
+201633879
+201633880
+201633611
+201633877
+201633882
+201633433
+201633875
+201633874
+201633334
+201633873
+201633327
+201633610
+201633893
+201633329
+201633392
+201633876
+201633872
+201633608
+201633609
+201633871
+201633325
+201633436
+201633685
+201633353
+201633990
+201633328
+201633378
+201633391
+201633321
+201633870
+201633319
+201633318
+201633320
+201633668
+201633497
+201633326
+201633489
+201633324
+201633607
+201633869
+201633868
+201633982
+201633991
+201633867
+201633866
+201633323
+201633865
+201633948
+201633674
+201633665
+201633466
+201633317
+201633863
+201633862
+201633606
+201633861
+201633410
+201633860
+201633445
+201633858
+201633859
+201633864
+201633603
+201633604
+201633383
+201633966
+201633316
+201633857
+201633313
+201633314
+201633312
+201633374
+201633855
+201633315
+201633856
+201633602
+201633498
+201633854
+201633322
+201633677
+201633429
+201633428
+201633853
+201633427
+201633426
+201633425
+201633956
+201633442
+201633424
+201633601
+201633441
+201633851
+201633423
+201633440
+201633422
+201633421
+201633439
+201633309
+201633420
+201633419
+201633418
+201633400
+201633850
+201633999
+201633849
+201633847
+201633417
+201633416
+201633848
+201633846
+201633404
+201633310
+201633471
+201633415
+201633843
+201633845
+201633444
+201633376
+201633639
+201633840
+201633844
+201633307
+201633841
+201633397
+201633403
+201633839
+201633396
+201633395
+201633308
+201633598
+201633687
+201633380
+201633645
+201633379
+201633838
+201633455
+201633986
+201633597
+201633989
+201633454
+201633837
+201633304
+201633453
+201633596
+201633465
+201633464
+201633961
+201633842
+201633835
+201633463
+201633836
+201633462
+201633483
+201633303
+201633461
+201633460
+201633459
+201633470
+201633963
+201633458
+201633680
+201633457
+201633496
+201633456
+201633306
+201633452
+201633682
+201633451
+201633832
+201633834
+201633833
+201633450
+201633305
+201633394
+201633449
+201633402
+201633448
+201633978
+201633954
+201633447
+201633401
+201633599
+201633301
+201633654
+201633446
+201633972
+201633387
+201633831
+201633594
+201633302
+201633386
+201633829
+201633385
+201633299
+201633413
+201633300
+201633593
+201633384
+201633830
+201633382
+201633381
+201633828
+201633407
+201633827
+201633406
+201633826
+201633592
+201633591
+201633296
+201633294
+201633295
+201633822
+201633297
+201633823
+201633825
+201633652
+201633820
+201633676
+201633528
+201633375
+201633821
+201633819
+201633818
+201633293
+201633824
+201633816
+201633817
+201633815
+201633291
+201633290
+201633289
+201633288
+201633292
+201633287
+201633405
+201633590
+201633589
+201633968
+201633286
+201633588
+201633473
+201633298
+201633587
+201633643
+201633285
+201633485
+201633814
+201633958
+201633659
+201633813
+201633586
+201633600
+201633283
+201633666
+201633973
+201633284
+201633585
+201633812
+201633282
+201633672
+201633810
+201633281
+201633584
+201633811
+201633952
+201633279
+201633951
+201633187
+201633275
+201633278
+201633583
+201633277
+201633686
+201633276
+201633274
+201633809
+201633646
+201633273
+201633647
+201633808
+201633983
+201633649
+201633582
+201633271
+201633272
+201633807
+201633399
+201633947
+201633269
+201633806
+201633678
+201633579
+201633578
+201633580
+201633280
+201633270
+201633802
+201633805
+201633804
+201633803
+201633641
+201633267
+201633969
+201633268
+201633801
+201633577
+201633800
+201633576
+201633266
+201633798
+201633265
+201633264
+201633799
+201633443
+201633575
+201633486
+201633797
+201633398
+201633352
+201633574
+201633573
+201633650
+201633795
+201633796
+201633263
+201633689
+201633572
+201633262
+201633664
+201633794
+201633261
+201633663
+201633571
+201633683
+201633491
+201633260
+201633667
+201633569
+201633487
+201633259
+201633568
+201633409
+201633567
+201633636
+201633662
+201633656
+201633566
+201633258
+201633793
+201633673
+201633565
+201633256
+201633987
+201633564
+201633257
+201633411
+201633562
+201633791
+201633792
+201633255
+201633561
+201633790
+201633253
+201633252
+201633254
+201633789
+201633560
+201633559
+201633788
+201633661
+201633786
+201633558
+201633787
+201633468
+201633414
+201633557
+201633657
+201633785
+201633556
+201633251
+201633555
+201633995
+201633784
+201633675
+201633783
+201633554
+201633250
+201633781
+201633780
+201633493
+201633249
+201633552
+201633248
+201633779
+201633469
+201633640
+201633778
+201633570
+201633479
+201633993
+201633481
+201633994
+201633777
+201633492
+201633373
+201633185
+201633981
+201633551
+201633653
+201633246
+201633186
+201633997
+201633776
+201633247
+201633965
+201633775
+201633971
+201633245
+201633244
+201633637
+201633960
+201633774
+201633482
+201634162
+201634161
+201634266
+201634072
+201634343
+201633519
+201634159
+201634274
+201634078
+201634350
+201634341
+201634340
+201634062
+201633516
+201634434
+201634160
+201634358
+201634407
+201634406
+201634059
+201634427
+201633523
+201634061
+201634354
+201634088
+201634158
+201634342
+201634405
+201634073
+201634157
+201634344
+201634422
+201634238
+201634156
+201634063
+201634338
+201634339
+201634060
+201634155
+201633526
+201633514
+201634240
+201634404
+201634056
+201634166
+201634153
+201634435
+201634152
+201633513
+201634154
+201634408
+201634419
+201634087
+201633512
+201633511
+201634411
+201634058
+201634334
+201634272
+201633510
+201634151
+201634410
+201634351
+201634149
+201634337
+201634150
+201634336
+201634148
+201634170
+201634068
+201634082
+201633505
+201633508
+201634433
+201634147
+201633507
+201634333
+201634335
+201634077
+201634146
+201634332
+201634065
+201634084
+201634176
+201634252
+201633504
+201634400
+201634262
+201633502
+201634093
+201634331
+201633509
+201634399
+201633503
+201634409
+201633527
+201634064
+201634401
+201634244
+201634326
+201634050
+201634395
+201634403
+201634327
+201634145
+201634079
+201634402
+201633500
+201634330
+201634143
+201634355
+201634144
+201634142
+201633506
+201634499
+201634498
+201633501
+201634165
+201634496
+201634497
+201634237
+201634328
+201634430
+201634169
+201634276
+201634495
+201634141
+201634264
+201634140
+201634436
+201634492
+201634054
+201634139
+201634085
+201634247
+201634491
+201634246
+201634325
+201634049
+201634494
+201634138
+201634137
+201634261
+201634239
+201634321
+201634174
+201634172
+201634488
+201634359
+201634437
+201634493
+201634324
+201634323
+201634490
+201634253
+201634418
+201634322
+201634412
+201634267
+201634425
+201634487
+201634475
+201634489
+201634171
+201634486
+201634320
+201634319
+201634315
+201634081
+201634135
+201634479
+201634314
+201634046
+201633522
+201634249
+201634477
+201634057
+201634245
+201634482
+201634485
+201634048
+201634484
+201634180
+201634136
+201634483
+201634478
+201634481
+201634317
+201634053
+201634316
+201634132
+201634133
+201634131
+201634397
+201634416
+201634476
+201634480
+201634091
+201634134
+201634414
+201634413
+201634254
+201634362
+201634474
+201634415
+201634248
+201634473
+201634047
+201634313
+201634318
+201634255
+201634130
+201634467
+201634442
+201634275
+201634080
+201634075
+201634126
+201634127
+201634439
+201634469
+201634420
+201633521
+201634431
+201634258
+201634129
+201634468
+201634417
+201634312
+201634028
+201634472
+201634173
+201634353
+201634311
+201634470
+201634067
+201634471
+201634310
+201634128
+201634360
+201634309
+201634308
+201634307
+201634306
+201634424
+201634305
+201634125
+201634094
+201634263
+201634348
+201633525
+201634074
+201634168
+201634303
+201633515
+201634304
+201634090
+201634302
+201634440
+201634069
+201633524
+201634301
+201634055
+201634347
+201634423
+201634299
+201634298
+201634441
+201634265
+201634300
+201634164
+201634066
+201634124
+201634466
+201634438
+201634462
+201634465
+201634122
+201634463
+201634052
+201634260
+201634123
+201634108
+201634107
+201634464
+201634432
+201634092
+201634257
+201634297
+201634086
+201634449
+201634179
+201634352
+201634447
+201634070
+201634448
+201634106
+201634461
+201634296
+201634295
+201634167
+201634294
+201634293
+201633520
+201634292
+201633517
+201634460
+201634349
+201634121
+201634291
+201634458
+201634459
+201634120
+201634119
+201634290
+201634118
+201634117
+201634289
+201634116
+201634457
+201634357
+201634241
+201634456
+201634089
+201634251
+201634288
+201634115
+201634114
+201634455
+201634356
+201634287
+201634286
+201634454
+201634113
+201634284
+201634285
+201634112
+201634452
+201634453
+201634111
+201634451
+201634109
+201634110
+201634105
+201634446
+201634271
+201634445
+201634104
+201634256
+201634103
+201634076
+201633518
+201634429
+201634178
+201634102
+201634428
+201634177
+201634101
+201634450
+201634100
+201634444
+201634345
+201634242
+201634281
+201634282
+201634269
+201634250
+201634398
+201634426
+201634099
+201634346
+201634098
+201634443
+201634071
+201634051
+201634163
+201634083
+201634280
+201634270
+201634273
+201634243
+201634268
+201634097
+201634259
+201634278
+201634096
+201634095
+201634277
+201634421
+201634029
+201635496
+201635495
+201635494
+201634799
+201634027
+201634026
+201634798
+201634025
+201635493
+201634797
+201635492
+201635491
+201634796
+201634795
+201634024
+201635490
+201635489
+201634794
+201634023
+201634793
+201634792
+201634791
+201634022
+201634790
+201634021
+201634789
+201634020
+201635488
+201634788
+201634019
+201635487
+201635486
+201634787
+201634786
+201635485
+201634785
+201634784
+201634783
+201634018
+201634782
+201634017
+201635484
+201634781
+201635483
+201634016
+201635482
+201635481
+201634780
+201634779
+201635480
+201634778
+201635479
+201634777
+201635478
+201634014
+201635477
+201634013
+201634776
+201635476
+201635475
+201634012
+201634011
+201634775
+201634010
+201634774
+201635474
+201634009
+201635473
+201634008
+201634007
+201634006
+201635306
+201634005
+201635471
+201635470
+201635469
+201635468
+201634004
+201634773
+201634772
+201635467
+201635466
+201634771
+201634770
+201634003
+201634769
+201634002
+201634001
+201634768
+201634000
+201635465
+201634767
+201634999
+201634766
+201634765
+201634764
+201635464
+201635463
+201635462
+201634998
+201635461
+201634997
+201634763
+201635460
+201634762
+201635498
+201634996
+201634761
+201634760
+201634995
+201634758
+201634757
+201634756
+201635459
+201634755
+201634594
+201635458
+201635457
+201634994
+201634752
+201634751
+201635456
+201635455
+201634993
+201635454
+201635453
+201634992
+201634991
+201634990
+201635452
+201634750
+201635451
+201635450
+201634988
+201634749
+201635449
+201635448
+201635447
+201634748
+201634987
+201635446
+201634986
+201635445
+201634747
+201634746
+201634985
+201634745
+201635444
+201634744
+201634984
+201635443
+201634983
+201634743
+201634982
+201634981
+201635442
+201634980
+201634742
+201634979
+201634978
+201634977
+201634976
+201635441
+201635440
+201635439
+201635438
+201634741
+201634740
+201634975
+201634739
+201634974
+201634738
+201635436
+201634737
+201634973
+201634736
+201634972
+201634735
+201635435
+201635434
+201634734
+201634971
+201635433
+201634733
+201635432
+201634732
+201634731
+201634730
+201634729
+201635431
+201635430
+201635429
+201635428
+201634970
+201634969
+201635427
+201634968
+201634967
+201634727
+201634966
+201635426
+201634726
+201634725
+201634724
+201634723
+201634722
+201635497
+201635425
+201634965
+201635424
+201634554
+201634721
+201635423
+201635422
+201634964
+201634963
+201634962
+201634720
+201635421
+201634961
+201634719
+201634960
+201634718
+201635420
+201634959
+201634717
+201634958
+201635419
+201634716
+201634957
+201635418
+201634956
+201634715
+201634955
+201635308
+201635417
+201634954
+201635307
+201635416
+201635415
+201635414
+201634953
+201635413
+201634952
+201634714
+201634713
+201634712
+201634950
+201634949
+201634711
+201634948
+201634710
+201634947
+201634709
+201634946
+201634708
+201635412
+201635411
+201634707
+201634706
+201634945
+201634705
+201635410
+201635409
+201634944
+201634943
+201634704
+201634703
+201634942
+201634702
+201634941
+201634701
+201634940
+201635408
+201634939
+201635407
+201634938
+201634937
+201634700
+201634936
+201635406
+201634699
+201635405
+201634698
+201634697
+201634696
+201634695
+201634694
+201635404
+201634693
+201635403
+201635402
+201634692
+201635401
+201634691
+201634690
+201635400
+201634689
+201635399
+201634688
+201634687
+201635397
+201635396
+201634686
+201635395
+201635394
+201634685
+201634933
+201634932
+201634931
+201635393
+201635392
+201635391
+201635390
+201634930
+201634684
+201634683
+201634929
+201634928
+201635389
+201634682
+201634681
+201634680
+201635388
+201635387
+201634927
+201634679
+201635386
+201634926
+201635385
+201634678
+201634677
+201634925
+201634924
+201634923
+201634922
+201634676
+201634921
+201634920
+201634675
+201634918
+201635384
+201634917
+201634674
+201635383
+201634916
+201634673
+201635382
+201635381
+201634915
+201634914
+201634672
+201634913
+201634671
+201634670
+201634912
+201635380
+201634911
+201635379
+201634669
+201634910
+201634909
+201634908
+201634907
+201635378
+201634906
+201634668
+201634667
+201634905
+201634666
+201635377
+201634665
+201634664
+201634663
+201634662
+201634661
+201634660
+201634659
+201635376
+201634658
+201634904
+201635375
+201634903
+201634902
+201635374
+201634657
+201634656
+201634655
+201634901
+201635373
+201634654
+201634900
+201635372
+201634653
+201634899
+201634898
+201634652
+201635371
+201634897
+201634896
+201634651
+201634650
+201634649
+201635370
+201634648
+201635369
+201634895
+201634647
+201634646
+201635368
+201634894
+201635367
+201634893
+201634645
+201634892
+201635366
+201634644
+201635365
+201634891
+201635364
+201635363
+201634890
+201634889
+201634643
+201634642
+201635362
+201635361
+201635360
+201634641
+201634640
+201635359
+201634888
+201634639
+201635358
+201635357
+201634638
+201634887
+201635356
+201634637
+201635355
+201634886
+201634636
+201634635
+201634885
+201634634
+201634884
+201634883
+201634632
+201634631
+201635354
+201634882
+201634630
+201635353
+201634629
+201634628
+201635352
+201634627
+201634626
+201634881
+201634625
+201634624
+201634623
+201634880
+201635351
+201635350
+201635349
+201635348
+201634879
+201634622
+201634878
+201635346
+201634621
+201635345
+201635344
+201634877
+201634620
+201634619
+201634876
+201634618
+201634875
+201634617
+201634874
+201634873
+201634872
+201634616
+201634871
+201635343
+201634870
+201634615
+201635342
+201634614
+201634869
+201634613
+201634868
+201634867
+201634866
+201634865
+201634864
+201634863
+201635341
+201635340
+201634862
+201634861
+201634860
+201634612
+201634859
+201634858
+201634611
+201635339
+201634610
+201634608
+201634609
+201634607
+201634857
+201634856
+201634606
+201634605
+201635338
+201634604
+201634603
+201634602
+201634601
+201635337
+201634600
+201634599
+201634598
+201634855
+201635336
+201634597
+201634596
+201634595
+201634854
+201634853
+201635335
+201635334
+201635333
+201635332
+201635331
+201634852
+201634851
+201635330
+201635329
+201634850
+201635328
+201634849
+201635999
+201635998
+201635997
+201638843
+201635996
+201638005
+201635995
+201638842
+201635572
+201638841
+201635994
+201635993
+201635571
+201635570
+201635992
+201635569
+201638840
+201635991
+201638839
+201635568
+201635990
+201638838
+201638837
+201638836
+201638835
+201638834
+201638833
+201638832
+201638831
+201635567
+201638830
+201638829
+201635989
+201635988
+201638828
+201635565
+201635564
+201638827
+201635563
+201635562
+201638012
+201635987
+201635561
+201638826
+201638999
+201635986
+201638998
+201635985
+201635560
+201635559
+201635558
+201635984
+201635557
+201635983
+201638997
+201638996
+201635556
+201638995
+201638994
+201638993
+201638992
+201638991
+201638990
+201638989
+201638988
+201638987
+201635982
+201638986
+201635981
+201638985
+201635980
+201638984
+201635555
+201635979
+201638983
+201638982
+201638981
+201635553
+201638980
+201638979
+201638978
+201638977
+201638976
+201638975
+201635978
+201638974
+201635552
+201638973
+201635977
+201638972
+201638971
+201635976
+201635975
+201638970
+201638969
+201638968
+201635551
+201635974
+201638967
+201638966
+201635973
+201638965
+201635550
+201635972
+201638963
+201638962
+201638961
+201635549
+201635548
+201635546
+201635545
+201635544
+201635543
+201635971
+201638960
+201635970
+201635542
+201635969
+201635968
+201635967
+201638959
+201635541
+201638958
+201638957
+201638956
+201638955
+201635966
+201638954
+201635540
+201638953
+201635965
+201635964
+201638952
+201638013
+201638951
+201635963
+201638950
+201635539
+201638949
+201635962
+201635537
+201638948
+201635961
+201635536
+201635960
+201638947
+201635959
+201635535
+201638945
+201638944
+201638943
+201638942
+201638941
+201635958
+201635534
+201638940
+201638939
+201638938
+201635533
+201635532
+201635531
+201635530
+201638936
+201635957
+201638935
+201638934
+201638933
+201635529
+201638932
+201635528
+201638931
+201638930
+201635956
+201635527
+201635526
+201635955
+201635954
+201635525
+201635524
+201635523
+201635522
+201635521
+201638929
+201635520
+201635519
+201638928
+201635518
+201635953
+201635952
+201635517
+201635516
+201635515
+201635674
+201635951
+201635513
+201635512
+201638927
+201638926
+201635511
+201635510
+201638925
+201638924
+201638923
+201635509
+201635508
+201638922
+201635507
+201635506
+201635505
+201638921
+201635504
+201635503
+201638920
+201638919
+201635950
+201635949
+201635502
+201635501
+201635500
+201635598
+201635948
+201635597
+201635947
+201635596
+201635595
+201635594
+201638917
+201635946
+201638916
+201638915
+201635593
+201635592
+201638914
+201635591
+201638723
+201638722
+201635590
+201635589
+201635588
+201635587
+201638721
+201635586
+201638720
+201638719
+201638718
+201635945
+201635668
+201635585
+201638717
+201635584
+201638716
+201638715
+201635944
+201635943
+201638714
+201635583
+201638713
+201635942
+201635582
+201638712
+201638711
+201635581
+201635941
+201634754
+201638710
+201638709
+201635940
+201638708
+201638707
+201635939
+201635095
+201635938
+201635094
+201635093
+201638706
+201635092
+201638705
+201635937
+201638704
+201635936
+201635091
+201638703
+201635090
+201638702
+201635089
+201635088
+201638701
+201635087
+201638700
+201635935
+201638699
+201638698
+201635086
+201638697
+201635934
+201635933
+201635932
+201638696
+201638695
+201638913
+201635085
+201635084
+201635083
+201635931
+201635082
+201635081
+201638912
+201638911
+201635080
+201638910
+201635930
+201635929
+201638909
+201635928
+201635079
+201638908
+201638907
+201638906
+201638905
+201635927
+201635078
+201635077
+201635076
+201638904
+201638903
+201635075
+201638902
+201638901
+201635074
+201635073
+201635072
+201638900
+201638899
+201635071
+201635926
+201635070
+201638898
+201635069
+201638897
+201635068
+201635067
+201635066
+201635065
+201635064
+201635925
+201638896
+201635063
+201635062
+201635924
+201635061
+201638895
+201635923
+201638893
+201638892
+201635922
+201638891
+201638890
+201638889
+201635921
+201638888
+201635920
+201638887
+201635060
+201635919
+201635059
+201635058
+201635057
+201635056
+201638886
+201638885
+201635918
+201638884
+201635055
+201638010
+201635054
+201635917
+201635053
+201635052
+201638883
+201635051
+201635050
+201635049
+201635048
+201635916
+201638882
+201635047
+201635046
+201638881
+201638880
+201635045
+201635044
+201635043
+201635042
+201635041
+201638879
+201638878
+201635040
+201635039
+201635038
+201635915
+201638877
+201638876
+201635037
+201635036
+201638875
+201635035
+201635034
+201638874
+201638873
+201638872
+201638871
+201635914
+201638870
+201638869
+201635033
+201635032
+201638868
+201635031
+201635030
+201635029
+201635028
+201638867
+201638866
+201635027
+201635026
+201638864
+201635025
+201635024
+201635023
+201635913
+201635912
+201635911
+201638863
+201638862
+201638861
+201638860
+201638859
+201635022
+201638858
+201635909
+201638857
+201635908
+201635020
+201635019
+201638856
+201635018
+201638855
+201635017
+201635015
+201635907
+201635014
+201638854
+201635013
+201635012
+201635011
+201635010
+201635009
+201638852
+201638851
+201638850
+201635007
+201638849
+201635006
+201638847
+201635906
+201638846
+201635005
+201638845
+201638844
+201635905
+201635004
+201638818
+201635904
+201635903
+201635003
+201635002
+201638817
+201635902
+201638816
+201635901
+201635001
+201638814
+201635900
+201635000
+201635899
+201638813
+201638812
+201638811
+201638810
+201638809
+201635898
+201638808
+201635175
+201638807
+201638806
+201635174
+201635173
+201635172
+201635171
+201635170
+201638805
+201638804
+201635169
+201635897
+201635168
+201638803
+201635896
+201638802
+201635895
+201638801
+201638800
+201635167
+201635894
+201638799
+201638798
+201638797
+201638796
+201638795
+201638794
+201638793
+201638792
+201635166
+201635165
+201638791
+201638790
+201635164
+201638789
+201635893
+201638788
+201635163
+201638787
+201635892
+201635162
+201638786
+201635161
+201635160
+201638785
+201638784
+201635159
+201635158
+201635157
+201638783
+201635156
+201635891
+201638782
+201635155
+201635154
+201635153
+201635152
+201638781
+201638780
+201638779
+201635890
+201638778
+201638777
+201635151
+201635150
+201635149
+201638776
+201635889
+201635148
+201638775
+201638774
+201635147
+201635146
+201638773
+201635145
+201635144
+201635143
+201635888
+201635142
+201638002
+201638772
+201635141
+201635140
+201635139
+201635138
+201638771
+201638770
+201638001
+201638769
+201635137
+201638768
+201638767
+201638766
+201638000
+201638765
+201638764
+201638763
+201638762
+201638761
+201638760
+201638759
+201635887
+201635136
+201635135
+201638758
+201638757
+201638756
+201635134
+201635133
+201635132
+201638755
+201635131
+201635130
+201638754
+201638753
+201638752
+201638751
+201635129
+201635128
+201638750
+201638749
+201635127
+201635886
+201635885
+201635126
+201635125
+201638748
+201635124
+201638747
+201638746
+201635123
+201635122
+201635884
+201638745
+201638744
+201638743
+201638742
+201638741
+201635121
+201638740
+201638739
+201638738
+201635883
+201635120
+201635119
+201635882
+201638737
+201638736
+201638734
+201635881
+201638733
+201635118
+201638732
+201635880
+201635879
+201638731
+201635117
+201638730
+201638729
+201635116
+201635115
+201638728
+201638727
+201638726
+201638725
+201635114
+201635878
+201635113
+201638724
+201635112
+201635877
+201635111
+201635876
+201635110
+201638694
+201635109
+201635108
+201635106
+201638693
+201638692
+201635105
+201635875
+201635874
+201635104
+201638691
+201638690
+201635873
+201638689
+201635103
+201635102
+201635101
+201638688
+201638687
+201635872
+201635871
+201635100
+201635099
+201635098
+201635870
+201635097
+201638686
+201635096
+201638685
+201635305
+201635304
+201638684
+201635869
+201635868
+201635303
+201635867
+201635302
+201635301
+201638683
+201635866
+201635300
+201635299
+201635865
+201638009
+201635297
+201635864
+201635296
+201638682
+201635863
+201635862
+201635295
+201638681
+201638680
+201635294
+201635861
+201635293
+201638679
+201638678
+201638677
+201635292
+201638676
+201635860
+201635859
+201635858
+201635291
+201635857
+201638675
+201635290
+201638674
+201635289
+201638673
+201635288
+201638672
+201638671
+201638008
+201635856
+201638670
+201635855
+201635854
+201635287
+201638669
+201635853
+201638668
+201638667
+201638666
+201638665
+201635286
+201635285
+201635852
+201635851
+201635284
+201635283
+201635850
+201635849
+201635848
+201635847
+201635282
+201635281
+201635846
+201635845
+201635280
+201635279
+201635278
+201635277
+201635275
+201638664
+201638663
+201635844
+201635274
+201635843
+201635273
+201635272
+201635842
+201635271
+201638661
+201635841
+201638004
+201638660
+201635269
+201635268
+201638659
+201635267
+201638658
+201635840
+201635839
+201635266
+201635675
+201638573
+201638572
+201635265
+201635264
+201635263
+201638657
+201638656
+201635262
+201638655
+201638654
+201638571
+201638570
+201635261
+201635260
+201635259
+201638653
+201638569
+201638652
+201638568
+201638567
+201638651
+201638650
+201635258
+201638566
+201638649
+201638565
+201638564
+201635257
+201638563
+201638562
+201638648
+201638561
+201638647
+201635256
+201638646
+201635255
+201638645
+201638644
+201638643
+201638642
+201635254
+201638641
+201638560
+201638559
+201638640
+201638558
+201638557
+201635253
+201638556
+201638639
+201638638
+201638555
+201638554
+201635252
+201638553
+201635673
+201638552
+201638637
+201638551
+201638636
+201635251
+201635250
+201638635
+201635249
+201638550
+201638634
+201635248
+201635247
+201638633
+201638632
+201638549
+201638631
+201638630
+201638548
+201638629
+201638628
+201638547
+201635246
+201635245
+201635244
+201638546
+201635243
+201635242
+201638627
+201635241
+201638626
+201635239
+201638545
+201638544
+201638625
+201638543
+201638542
+201635238
+201638541
+201638540
+201638539
+201638623
+201635237
+201635236
+201635235
+201638622
+201638621
+201635234
+201638538
+201635233
+201635232
+201638620
+201638537
+201638536
+201638619
+201638618
+201635231
+201638535
+201638617
+201638534
+201638616
+201635230
+201638615
+201635229
+201638614
+201638613
+201635228
+201638612
+201638533
+201638532
+201638531
+201638611
+201635227
+201635226
+201638610
+201635225
+201638530
+201638609
+201635224
+201638529
+201638608
+201635223
+201635222
+201638607
+201635221
+201638528
+201635220
+201635219
+201638606
+201635218
+201638527
+201638526
+201635217
+201638605
+201638604
+201638525
+201638603
+201638602
+201638524
+201638523
+201638522
+201638601
+201638600
+201635216
+201638599
+201635215
+201635214
+201638598
+201635213
+201635212
+201635211
+201635210
+201638597
+201638596
+201638521
+201638595
+201635209
+201635208
+201635207
+201635206
+201638520
+201638594
+201635204
+201635203
+201638519
+201638518
+201635202
+201638593
+201635672
+201638592
+201635201
+201638591
+201638590
+201635200
+201638517
+201638516
+201638588
+201638589
+201635199
+201638587
+201638586
+201638515
+201638585
+201638584
+201638514
+201635198
+201635197
+201635196
+201638513
+201638512
+201638511
+201638583
+201638582
+201638581
+201638580
+201635195
+201635194
+201635193
+201635192
+201635191
+201638579
+201638510
+201638509
+201635190
+201635189
+201638578
+201638577
+201635188
+201635187
+201635186
+201635185
+201635184
+201638508
+201638507
+201638506
+201638505
+201638576
+201638575
+201638574
+201635183
+201638825
+201638504
+201635182
+201635181
+201638503
+201635180
+201635179
+201638502
+201635178
+201638824
+201638823
+201638003
+201638822
+201635176
+201638501
+201638821
+201638820
+201638500
+201638819
+201639606
+201639196
+201638197
+201639888
+201639195
+201639604
+201639603
+201639602
+201638196
+201638195
+201639601
+201638194
+201639600
+201638193
+201639194
+201639193
+201638192
+201638191
+201639191
+201639190
+201639189
+201639599
+201639188
+201639187
+201639598
+201639186
+201639185
+201639597
+201639184
+201639183
+201639182
+201639596
+201639595
+201639181
+201639180
+201639594
+201639593
+201639179
+201639669
+201639178
+201639177
+201639592
+201639591
+201639176
+201639589
+201639588
+201639175
+201639174
+201639173
+201639587
+201639172
+201639171
+201639170
+201639169
+201639586
+201639585
+201639168
+201639584
+201639167
+201639166
+201639165
+201639582
+201639583
+201639581
+201639580
+201639164
+201639579
+201639163
+201639162
+201639161
+201638190
+201639160
+201639578
+201639159
+201639158
+201639157
+201639156
+201638189
+201639155
+201639577
+201639576
+201639575
+201639154
+201639574
+201638188
+201638187
+201638186
+201639573
+201639572
+201639571
+201639153
+201639570
+201639569
+201639568
+201639152
+201639668
+201639151
+201639566
+201639150
+201639565
+201638185
+201639149
+201639148
+201639564
+201638184
+201639147
+201639146
+201639145
+201639144
+201639562
+201638183
+201639561
+201639143
+201639559
+201639142
+201638182
+201638181
+201639141
+201639140
+201639558
+201639557
+201639139
+201639556
+201638180
+201638179
+201639138
+201638178
+201639555
+201639137
+201639136
+201639135
+201638177
+201639554
+201639134
+201639553
+201639133
+201638176
+201639552
+201638175
+201638174
+201639131
+201639130
+201638173
+201639551
+201639129
+201639128
+201638172
+201639127
+201639126
+201639550
+201639125
+201639124
+201638171
+201639123
+201639549
+201639548
+201639122
+201639121
+201639547
+201639546
+201639545
+201639544
+201639543
+201639120
+201639119
+201639542
+201639118
+201639117
+201639116
+201638170
+201639115
+201638169
+201639541
+201639114
+201639540
+201638168
+201639539
+201639538
+201639537
+201638167
+201639113
+201639536
+201639112
+201639535
+201639111
+201639110
+201639109
+201638166
+201639533
+201639108
+201639107
+201639106
+201638165
+201638164
+201639532
+201639105
+201639531
+201638163
+201639104
+201639530
+201639103
+201638162
+201639102
+201639101
+201639529
+201639667
+201639528
+201639100
+201639527
+201639099
+201639526
+201639525
+201639524
+201639523
+201639098
+201639522
+201639097
+201638161
+201639521
+201639096
+201639520
+201638160
+201639095
+201638159
+201639519
+201639094
+201639518
+201639517
+201639516
+201638158
+201639515
+201639514
+201638157
+201639513
+201639093
+201639512
+201638156
+201639511
+201639092
+201639510
+201639091
+201638155
+201638154
+201638153
+201639509
+201639090
+201639089
+201639661
+201639660
+201639088
+201639087
+201639086
+201639876
+201639875
+201639085
+201639874
+201639873
+201639872
+201639871
+201639084
+201639880
+201639083
+201638152
+201639879
+201639878
+201639877
+201639082
+201639081
+201638150
+201639365
+201639364
+201639080
+201639363
+201639079
+201639362
+201638149
+201639078
+201639077
+201639076
+201639075
+201639361
+201639074
+201638148
+201639360
+201639073
+201639072
+201639071
+201639359
+201638147
+201639070
+201639358
+201639069
+201639357
+201639068
+201639067
+201639356
+201638146
+201639066
+201639065
+201638145
+201639064
+201639355
+201638144
+201639354
+201639063
+201638143
+201639353
+201639352
+201639351
+201639062
+201638142
+201639666
+201639350
+201639349
+201639348
+201638141
+201638140
+201639061
+201639347
+201639060
+201639059
+201639346
+201639345
+201639344
+201639343
+201639342
+201639057
+201639340
+201638139
+201639339
+201639056
+201639338
+201639055
+201639337
+201639054
+201639053
+201639052
+201639336
+201639335
+201639051
+201639334
+201639333
+201638138
+201639050
+201639049
+201639048
+201639332
+201639331
+201639047
+201639330
+201639046
+201639045
+201639329
+201639328
+201638137
+201639327
+201639326
+201639044
+201639324
+201639325
+201639043
+201639323
+201639322
+201639042
+201639321
+201639320
+201639203
+201638136
+201639319
+201639041
+201639318
+201639040
+201639039
+201639317
+201639316
+201639315
+201639038
+201638135
+201639314
+201638134
+201639313
+201638133
+201639037
+201639312
+201639311
+201639036
+201638132
+201639310
+201639309
+201639308
+201639035
+201639004
+201639003
+201639307
+201639002
+201639001
+201639000
+201639306
+201639305
+201638131
+201639304
+201639007
+201639303
+201639302
+201639006
+201639301
+201639005
+201638130
+201639300
+201639299
+201639298
+201639034
+201639297
+201639033
+201639296
+201639032
+201639031
+201639295
+201639030
+201639029
+201639294
+201638129
+201639028
+201639293
+201639292
+201639291
+201639290
+201638128
+201638127
+201639027
+201639659
+201639026
+201638126
+201639658
+201639657
+201639025
+201639656
+201639024
+201639023
+201638125
+201639655
+201639022
+201639021
+201639654
+201639653
+201639652
+201638124
+201639651
+201638123
+201639650
+201639019
+201639018
+201638122
+201638121
+201639017
+201639016
+201639649
+201639015
+201639014
+201639648
+201639647
+201639646
+201639645
+201639644
+201638120
+201639013
+201639012
+201639643
+201639010
+201638119
+201639642
+201639641
+201638118
+201639009
+201639640
+201639202
+201639639
+201639008
+201638499
+201639638
+201638498
+201638497
+201639887
+201638496
+201638495
+201638494
+201639886
+201639885
+201639884
+201638493
+201638492
+201639883
+201639882
+201639631
+201638491
+201639630
+201639629
+201639628
+201638117
+201638116
+201638490
+201638489
+201638115
+201639627
+201639626
+201639625
+201638114
+201639624
+201639623
+201639622
+201638488
+201638487
+201638486
+201638113
+201639621
+201639620
+201638485
+201638484
+201638483
+201638482
+201639619
+201639618
+201639615
+201639616
+201639614
+201638112
+201639613
+201638111
+201639612
+201639611
+201639610
+201639275
+201638480
+201639274
+201638479
+201638478
+201638477
+201638476
+201638475
+201638474
+201638110
+201638473
+201638109
+201638472
+201639273
+201639474
+201639473
+201638471
+201639472
+201639471
+201639470
+201638108
+201638470
+201638469
+201639469
+201638468
+201639468
+201639467
+201639466
+201639465
+201639464
+201638466
+201639463
+201639462
+201638465
+201638464
+201639461
+201639460
+201639459
+201639458
+201639457
+201638463
+201638107
+201639456
+201639454
+201639453
+201639452
+201638106
+201639451
+201638105
+201638462
+201639450
+201639449
+201639448
+201639447
+201639446
+201638461
+201638104
+201639445
+201639444
+201639443
+201639665
+201639442
+201639441
+201638460
+201639440
+201638459
+201638103
+201639439
+201638102
+201638101
+201639438
+201639437
+201638458
+201638457
+201638456
+201638455
+201639436
+201638454
+201639435
+201639434
+201639433
+201638453
+201639432
+201639431
+201639430
+201639429
+201638452
+201638451
+201639428
+201639427
+201639426
+201638450
+201638449
+201639425
+201639424
+201639423
+201638448
+201639422
+201638447
+201639664
+201638100
+201639421
+201638446
+201639420
+201639419
+201639418
+201639417
+201638445
+201638444
+201639416
+201638099
+201639415
+201639414
+201638443
+201638098
+201638442
+201639413
+201638441
+201639412
+201638440
+201639411
+201638439
+201638438
+201638097
+201638096
+201638437
+201639410
+201639409
+201639408
+201639407
+201639406
+201638436
+201638435
+201638434
+201638433
+201639405
+201638432
+201639404
+201638431
+201638430
+201639403
+201639402
+201639401
+201638095
+201638429
+201639400
+201638428
+201639399
+201639398
+201638094
+201638093
+201638427
+201638426
+201638425
+201638092
+201638424
+201639396
+201638091
+201638422
+201638421
+201639395
+201639394
+201638420
+201639393
+201639392
+201638419
+201639391
+201639390
+201639389
+201638090
+201639508
+201639507
+201638089
+201639506
+201639505
+201638088
+201638087
+201638086
+201638418
+201638417
+201638085
+201639504
+201639503
+201638416
+201639502
+201638415
+201638414
+201639501
+201639500
+201638084
+201638083
+201638082
+201638081
+201638080
+201639673
+201638413
+201639672
+201638412
+201639881
+201638411
+201638079
+201639670
+201639388
+201638078
+201638077
+201639387
+201639386
+201638076
+201638075
+201639385
+201639384
+201638410
+201638409
+201639383
+201638074
+201638408
+201638407
+201638406
+201638073
+201638405
+201638072
+201638071
+201638070
+201638404
+201638069
+201638403
+201638068
+201638402
+201638401
+201639381
+201638400
+201638065
+201638066
+201638399
+201638398
+201638397
+201638064
+201638063
+201639380
+201638396
+201638062
+201638395
+201638061
+201639379
+201638394
+201639378
+201638060
+201638059
+201638058
+201639377
+201638057
+201638056
+201639376
+201638393
+201638392
+201638391
+201638390
+201638389
+201639375
+201639374
+201638388
+201638387
+201638386
+201638053
+201638385
+201638052
+201638384
+201639373
+201638051
+201639372
+201638050
+201638049
+201638383
+201638048
+201639371
+201638047
+201638382
+201638381
+201639370
+201638046
+201638380
+201639369
+201639368
+201639367
+201638045
+201639366
+201638044
+201638379
+201639289
+201638378
+201639288
+201639287
+201638043
+201638377
+201638042
+201638376
+201638375
+201638041
+201638040
+201639286
+201638373
+201638039
+201638372
+201638038
+201638371
+201639285
+201638037
+201639284
+201638036
+201638370
+201638369
+201638368
+201638367
+201638366
+201639283
+201639282
+201638035
+201638365
+201639281
+201639280
+201639279
+201638364
+201638363
+201639278
+201639277
+201639276
+201638362
+201638361
+201638034
+201638360
+201638359
+201638358
+201638357
+201639632
+201639499
+201638033
+201638032
+201639498
+201638356
+201639497
+201638355
+201639496
+201639495
+201638354
+201639494
+201639493
+201639201
+201638353
+201639492
+201638352
+201638351
+201638031
+201638030
+201638350
+201638349
+201638348
+201638029
+201638028
+201638347
+201638027
+201639491
+201638026
+201639490
+201638346
+201639489
+201639488
+201638345
+201639487
+201638025
+201638344
+201638024
+201638343
+201638342
+201638341
+201638340
+201638023
+201639199
+201639486
+201639200
+201638339
+201638338
+201638019
+201638337
+201638336
+201638335
+201639198
+201638334
+201638333
+201639197
+201638332
+201639484
+201638230
+201638229
+201639483
+201639482
+201638228
+201639481
+201639480
+201638018
+201639479
+201638227
+201639663
+201639662
+201639478
+201638017
+201638232
+201639477
+201639476
+201638016
+201680019
+201680297
+201639779
+201680033
+201680256
+201639822
+201680445
+201680475
+201639825
+201639728
+201639697
+201639979
+201639919
+201639850
+201680265
+201680641
+201680642
+201680635
+201680643
+201639852
+201680260
+201680098
+201680261
+201680677
+201680235
+201680465
+201680370
+201680421
+201680325
+201680238
+201639809
+201680264
+201680263
+201680360
+201680100
+201680122
+201639998
+201680434
+201680042
+201680219
+201639858
+201680119
+201639989
+201680368
+201680422
+201680085
+201680234
+201680403
+201680345
+201680233
+201680676
+201639791
+201680228
+201680035
+201639862
+201639988
+201680084
+201680083
+201639961
+201680329
+201680101
+201639824
+201639972
+201680240
+201680483
+201639722
+201639907
+201639996
+201680284
+201680376
+201639853
+201680409
+201639802
+201639924
+201639923
+201680126
+201680413
+201680470
+201680538
+201680339
+201639790
+201680369
+201680424
+201680073
+201639997
+201639833
+201639901
+201639636
+201680080
+201680049
+201680125
+201639635
+201639915
+201680225
+201680239
+201680523
+201680071
+201680227
+201680123
+201639786
+201680389
+201680124
+201680382
+201680106
+201680224
+201680121
+201680258
+201680432
+201680117
+201639798
+201680372
+201680578
+201680375
+201639898
+201680050
+201639801
+201680217
+201680335
+201680622
+201680552
+201680229
+201680423
+201680688
+201680501
+201680418
+201680102
+201639970
+201639800
+201639789
+201639799
+201680387
+201639847
+201639926
+201680437
+201680001
+201680575
+201680687
+201639785
+201639792
+201680120
+201680379
+201639843
+201680048
+201680214
+201680067
+201680385
+201639795
+201680455
+201639794
+201680259
+201680537
+201639837
+201680469
+201680104
+201680386
+201639787
+201680055
+201680244
+201680112
+201680454
+201680232
+201680675
+201680111
+201680336
+201680433
+201639808
+201680378
+201680371
+201639960
+201680118
+201680602
+201639475
+201639995
+201680026
+201680383
+201680576
+201680110
+201639981
+201680557
+201639899
+201680468
+201680072
+201639698
+201680221
+201639797
+201639793
+201639821
+201680108
+201639777
+201639776
+201680109
+201680099
+201680040
+201639987
+201639796
+201680220
+201680377
+201680046
+201639971
+201680507
+201680435
+201639811
+201680689
+201680318
+201680086
+201680243
+201680095
+201680364
+201680053
+201680061
+201680070
+201639846
+201639814
+201680023
+201639900
+201680216
+201639754
+201639775
+201680412
+201680267
+201639932
+201680366
+201680063
+201680486
+201680245
+201680069
+201639633
+201680062
+201680022
+201680550
+201680052
+201639838
+201680417
+201680682
+201680068
+201639897
+201680005
+201680494
+201680533
+201639817
+201680116
+201680408
+201680491
+201680428
+201680058
+201680665
+201680414
+201680323
+201639748
+201680348
+201680495
+201680266
+201639768
+201680342
+201680024
+201680452
+201680254
+201639856
+201680492
+201639896
+201680262
+201680064
+201639948
+201680604
+201680644
+201680060
+201639854
+201680248
+201680545
+201680697
+201639933
+201680059
+201680051
+201680490
+201680613
+201639893
+201639637
+201680554
+201680128
+201680685
+201680309
+201680269
+201639780
+201639774
+201680361
+201639730
+201680535
+201639973
+201680451
+201680539
+201680277
+201639895
+201680526
+201639812
+201680006
+201639753
+201680056
+201639892
+201680362
+201680530
+201680066
+201680279
+201680666
+201680698
+201680065
+201639994
+201680278
+201639999
+201680527
+201680030
+201680311
+201680057
+201680340
+201680282
+201680425
+201639765
+201680009
+201680290
+201680310
+201639986
+201680610
+201639931
+201680532
+201639749
+201680438
+201680328
+201680396
+201680561
+201680242
+201639699
+201680363
+201680456
+201680356
+201680696
+201680548
+201680570
+201680488
+201680253
+201680694
+201680281
+201680556
+201639717
+201680566
+201680563
+201639778
+201680241
+201680044
+201680426
+201680250
+201639804
+201639842
+201680213
+201680565
+201680337
+201639807
+201680528
+201680074
+201680313
+201680512
+201639922
+201680487
+201639991
+201639805
+201680564
+201680547
+201680249
+201639978
+201680330
+201680011
+201680568
+201680567
+201680546
+201680632
+201680280
+201680398
+201680025
+201680562
+201680397
+201680373
+201639840
+201680571
+201639766
+201680416
+201680584
+201680041
+201680082
+201680399
+201680569
+201680580
+201680021
+201680577
+201680555
+201639968
+201680251
+201680014
+201639934
+201680693
+201680581
+201680605
+201680585
+201639859
+201680582
+201680338
+201680020
+201680402
+201680579
+201680701
+201639835
+201639952
+201639708
+201680574
+201680029
+201680672
+201680312
+201680572
+201680404
+201639945
+201680695
+201680113
+201680542
+201680401
+201680473
+201680436
+201680655
+201680395
+201680534
+201639860
+201680394
+201680076
+201639707
+201680010
+201680531
+201680388
+201680002
+201639713
+201639957
+201680078
+201680393
+201680341
+201680129
+201639752
+201680012
+201680075
+201680573
+201680252
+201639861
+201680484
+201639951
+201680472
+201680681
+201680392
+201680273
+201680686
+201639745
+201680587
+201680391
+201680617
+201680517
+201680664
+201680039
+201680631
+201680384
+201680511
+201680127
+201680293
+201680390
+201680516
+201639740
+201680332
+201639977
+201680502
+201639725
+201680505
+201680270
+201639905
+201680510
+201680093
+201639855
+201680283
+201639705
+201639810
+201680314
+201680105
+201639836
+201680586
+201680509
+201639711
+201680518
+201680652
+201680043
+201680520
+201680485
+201680092
+201680603
+201680519
+201680317
+201680274
+201680543
+201639863
+201680440
+201680678
+201680094
+201680357
+201680683
+201680038
+201680544
+201639815
+201680352
+201680322
+201680353
+201680034
+201680684
+201680350
+201680351
+201680079
+201639848
+201680411
+201680521
+201680453
+201680036
+201680292
+201680536
+201680347
+201680271
+201680406
+201680091
+201680349
+201680444
+201680268
+201680077
+201639851
+201680321
+201680549
+201680447
+201680291
+201680320
+201680474
+201680359
+201680087
+201680553
+201680115
+201639857
+201680097
+201680015
+201680032
+201680324
+201639828
+201680308
+201680476
+201639894
+201680255
+201680272
+201680467
+201680334
+201639844
+201639783
+201680400
+201680380
+201680028
+201680003
+201639849
+201680257
+201680464
+201680096
+201680443
+201680466
+201680090
+201680439
+201680231
+201680017
+201680294
+201680089
+201680493
+201680441
+201639827
+201680609
+201680319
+201639829
+201680420
+201680218
+201680275
+201680016
+201680246
+201680462
+201680285
+201639826
+201680288
+201680000
+201680431
+201680365
+201680326
+201680236
+201680230
+201680287
+201680007
+201680430
+201680237
+201680037
+201680407
+201639788
+201680506
+201639841
+201680315
+201680540
+201680410
+201639764
+201680471
+201639763
+201639891
+201639950
+201639820
+201680442
+201680661
+201680081
+201639956
+201680222
+201680611
+201680525
+201680289
+201639823
+201680223
+201639727
+201639741
+201680529
+201639830
+201680658
+201639955
+201680415
+201639993
+201680054
+201680333
+201680646
+201639964
+201680247
+201639890
+201639928
+201639992
+201639982
+201680286
+201680508
+201639715
+201680427
+201639738
+201639696
+201680504
+201680522
+201680638
+201639767
+201639771
+201680700
+201639927
+201639965
+201680671
+201639916
+201680515
+201680583
+201639889
+201680514
+201680637
+201680497
+201639750
+201639943
+201639990
+201680381
+201639920
+201680500
+201639985
+201639980
+201680503
+201639967
+201639984
+201639983
+201639918
+201680343
+201680690
+201639772
+201639714
+201680699
+201680276
+201680630
+201680692
+201680674
+201639736
+201680628
+201639911
+201639735
+201639716
+201639734
+201639963
+201639723
+201639914
+201639974
+201680634
+201639969
+201639770
+201639913
+201639769
+201639975
+201680558
+201639718
+201639912
+201639958
+201639712
+201639976
+201639709
+201639908
+201680107
+201639966
+201680673
+201680551
+201639690
+201680327
+201680691
+201639762
+201639756
+201639726
+201639962
+201680623
+201639761
+201680680
+201639733
+201680463
+201680624
+201639959
+201639910
+201680668
+201680405
+201680679
+201639729
+201680645
+201680654
+201680045
+201639742
+201639782
+201639760
+201639909
+201680621
+201639759
+201680653
+201639813
+201639781
+201639744
+201680660
+201680659
+201639954
+201680226
+201639757
+201639706
+201680295
+201639758
+201680114
+201680662
+201680663
+201639755
+201680619
+201639751
+201680629
+201680670
+201680620
+201639953
+201680419
+201680367
+201680669
+201680667
+201639906
+201639806
+201639732
+201680008
+201680296
+201639949
+201680450
+201639839
+201680618
+201680344
+201639947
+201680640
+201639946
+201639710
+201639747
+201680616
+201639704
+201639944
+201639831
+201639929
+201680004
+201639721
+201639720
+201639925
+201639746
+201680013
+201680639
+201680651
+201639739
+201639743
+201639930
+201639818
+201680615
+201639904
+201680657
+201680650
+201680331
+201639719
+201680355
+201639703
+201639940
+201680656
+201680446
+201639917
+201680448
+201639939
+201680601
+201680636
+201639702
+201680449
+201680606
+201639937
+201680429
+201680627
+201639819
+201639941
+201639701
+201680649
+201680614
+201680489
+201639731
+201639845
+201680648
+201639700
+201680647
+201680316
+201680626
+201680625
+201680559
+201639936
+201680633
+201680354
+201639903
+201639737
+201639938
+201639834
+201639935
+201681407
+201681473
+201681501
+201681500
+201681405
+201681638
+201681495
+201681404
+201680988
+201681403
+201681402
+201681484
+201681401
+201681025
+201680987
+201680985
+201680984
+201681400
+201680986
+201681399
+201680982
+201681455
+201680981
+201681398
+201680907
+201681397
+201680980
+201681396
+201680983
+201680978
+201681637
+201680979
+201680977
+201681525
+201681409
+201681003
+201681465
+201681466
+201680976
+201681636
+201681393
+201680975
+201681392
+201681391
+201681390
+201680869
+201680989
+201681426
+201680889
+201680974
+201680973
+201681388
+201681387
+201681389
+201680972
+201681635
+201680970
+201680969
+201681386
+201681395
+201681385
+201681041
+201681384
+201680968
+201681382
+201681394
+201681379
+201681381
+201681383
+201680865
+201681634
+201681380
+201681038
+201680905
+201680971
+201680966
+201681378
+201681377
+201681376
+201680964
+201680965
+201680963
+201681412
+201681373
+201681375
+201681632
+201680967
+201681370
+201681371
+201680962
+201681363
+201681368
+201680961
+201681362
+201681419
+201681448
+201681543
+201681364
+201681009
+201681029
+201681369
+201681374
+201681366
+201681372
+201681367
+201681365
+201680959
+201681439
+201681360
+201680901
+201681359
+201680874
+201681361
+201681358
+201681497
+201681357
+201680957
+201680958
+201681631
+201681356
+201681353
+201680956
+201681354
+201681630
+201681352
+201681480
+201681351
+201681350
+201681349
+201680898
+201681463
+201680994
+201681348
+201681629
+201681002
+201680872
+201681347
+201681345
+201681344
+201681628
+201680955
+201681544
+201681493
+201681343
+201680953
+201680998
+201681341
+201681346
+201680992
+201681443
+201681338
+201680954
+201681340
+201680861
+201680952
+201681000
+201681337
+201681336
+201681335
+201680950
+201681339
+201680842
+201681546
+201681342
+201681334
+201681434
+201681626
+201681333
+201680947
+201680948
+201681048
+201681627
+201681453
+201680951
+201681332
+201681331
+201680995
+201681550
+201680996
+201680893
+201680945
+201680883
+201681330
+201681460
+201680946
+201681329
+201681625
+201681420
+201681326
+201681327
+201681624
+201680949
+201681325
+201681053
+201681444
+201681415
+201681328
+201680943
+201681324
+201681431
+201681456
+201681436
+201680997
+201681322
+201681323
+201681451
+201680942
+201681321
+201681320
+201680906
+201681536
+201680940
+201680864
+201680886
+201681319
+201681482
+201680938
+201681317
+201680937
+201681411
+201680939
+201681316
+201681489
+201680936
+201681623
+201680935
+201680993
+201681315
+201681622
+201681620
+201681449
+201681621
+201680934
+201681619
+201681312
+201681313
+201681311
+201680931
+201680932
+201681521
+201680933
+201681047
+201680929
+201681618
+201681310
+201680927
+201681528
+201681013
+201681617
+201680926
+201681035
+201680928
+201681309
+201681457
+201680924
+201681308
+201681306
+201681494
+201681307
+201681616
+201680925
+201680866
+201681305
+201681020
+201681505
+201681615
+201680921
+201681059
+201681058
+201681057
+201681056
+201681477
+201681304
+201680923
+201680922
+201681417
+201681303
+201681302
+201681301
+201681300
+201681614
+201681007
+201681006
+201681299
+201680499
+201681039
+201680498
+201680891
+201680999
+201681298
+201680867
+201680919
+201681297
+201681028
+201681027
+201680918
+201681026
+201681471
+201681296
+201681294
+201681293
+201681295
+201681292
+201681050
+201681049
+201680902
+201680916
+201681438
+201681017
+201681613
+201681290
+201681291
+201681612
+201681289
+201681287
+201680915
+201681288
+201680896
+201681611
+201680859
+201681016
+201681045
+201681283
+201681284
+201681609
+201680917
+201681610
+201681286
+201681280
+201681281
+201681051
+201681046
+201681282
+201681054
+201680857
+201681279
+201681278
+201681467
+201680855
+201681462
+201681608
+201680920
+201680858
+201681052
+201680904
+201681607
+201681454
+201680854
+201681277
+201681606
+201681015
+201681276
+201680856
+201680852
+201681275
+201681429
+201681492
+201681605
+201680851
+201680850
+201681604
+201681481
+201680895
+201680909
+201680849
+201681274
+201681421
+201681603
+201680848
+201681314
+201681273
+201680853
+201680847
+201681537
+201681602
+201681601
+201681427
+201680839
+201681272
+201681001
+201680840
+201681510
+201681040
+201681486
+201681270
+201681271
+201680838
+201681597
+201681268
+201681599
+201681531
+201680910
+201680930
+201681596
+201680837
+201681514
+201681598
+201680836
+201680835
+201681269
+201681267
+201680870
+201681425
+201680834
+201681522
+201680833
+201681474
+201681265
+201681595
+201681266
+201681458
+201680832
+201681264
+201681263
+201680991
+201681261
+201681260
+201681594
+201681259
+201681258
+201681257
+201681262
+201680877
+201681593
+201680830
+201680879
+201680831
+201681470
+201681256
+201681255
+201681254
+201680829
+201681592
+201681591
+201681590
+201681253
+201681022
+201681252
+201680826
+201680827
+201681503
+201681523
+201681437
+201681433
+201680941
+201681251
+201681250
+201681414
+201680903
+201681249
+201680863
+201681248
+201681589
+201681475
+201680825
+201681246
+201681247
+201681588
+201681244
+201680824
+201681245
+201681587
+201681243
+201681242
+201681586
+201681033
+201681538
+201681526
+201681032
+201681031
+201681030
+201680822
+201681241
+201680823
+201681446
+201680820
+201681044
+201681240
+201680819
+201680821
+201681585
+201681239
+201680817
+201680816
+201681043
+201681237
+201680990
+201681584
+201681042
+201681238
+201681236
+201681037
+201681464
+201680828
+201681541
+201681509
+201681023
+201680890
+201681235
+201680882
+201680887
+201681233
+201680814
+201680813
+201680810
+201680811
+201681583
+201681490
+201681499
+201681447
+201680809
+201680812
+201680808
+201681539
+201680818
+201680807
+201681231
+201681232
+201681517
+201681418
+201681422
+201681060
+201680806
+201681516
+201681515
+201681533
+201681230
+201681423
+201681524
+201681519
+201681229
+201681488
+201680805
+201681227
+201681581
+201681228
+201681580
+201681578
+201681579
+201681226
+201680815
+201680862
+201681225
+201680803
+201681224
+201681577
+201680802
+201681440
+201681576
+201680799
+201680801
+201681575
+201681055
+201681012
+201681222
+201681221
+201681459
+201680800
+201681223
+201681220
+201681219
+201681216
+201681574
+201680899
+201680885
+201681572
+201681441
+201681215
+201680798
+201681217
+201681214
+201681571
+201681461
+201681218
+201681213
+201681212
+201680878
+201681548
+201681573
+201681504
+201681211
+201681011
+201681570
+201681210
+201681450
+201680797
+201681502
+201681569
+201681413
+201680796
+201681021
+201681534
+201681209
+201681442
+201681034
+201681520
+201681568
+201680793
+201681207
+201680794
+201680792
+201681424
+201680843
+201681208
+201680787
+201680790
+201681567
+201680788
+201681566
+201681206
+201680791
+201680786
+201681564
+201681563
+201681562
+201681452
+201680784
+201680789
+201681561
+201681203
+201681204
+201681205
+201680795
+201681202
+201681560
+201680868
+201681558
+201681559
+201681201
+201681200
+201681557
+201681518
+201681005
+201681199
+201680884
+201681198
+201680781
+201681485
+201681197
+201680785
+201680782
+201681556
+201680779
+201681483
+201680777
+201681554
+201681555
+201681196
+201681194
+201681195
+201681553
+201681193
+201681192
+201681547
+201680775
+201680778
+201680773
+201681410
+201680774
+201680780
+201681508
+201681549
+201680776
+201681552
+201681535
+201681190
+201680772
+201681430
+201681189
+201680892
+201681551
+201680720
+201681188
+201681416
+201680770
+201680719
+201681187
+201681186
+201681731
+201680771
+201680873
+201681185
+201681428
+201681184
+201680783
+201680944
+201681182
+201681183
+201680718
+201680717
+201681181
+201681729
+201681014
+201681728
+201681542
+201681726
+201681727
+201681179
+201680716
+201681540
+201681725
+201681507
+201680804
+201680900
+201681687
+201681018
+201681511
+201681178
+201681506
+201681491
+201680715
+201681469
+201681177
+201681180
+201681724
+201681408
+201681723
+201680712
+201680714
+201681173
+201681175
+201680897
+201681174
+201680713
+201681176
+201680960
+201681010
+201680710
+201681172
+201680711
+201681008
+201681722
+201680708
+201680707
+201681721
+201680908
+201681171
+201680709
+201681720
+201681170
+201681169
+201680705
+201681530
+201680706
+201680703
+201680704
+201681167
+201681512
+201681166
+201681168
+201681165
+201680731
+201681164
+201681432
+201680730
+201681527
+201681719
+201680729
+201680702
+201681163
+201680732
+201680728
+201681718
+201680727
+201681717
+201681472
+201681162
+201681161
+201680726
+201681716
+201681036
+201681529
+201680725
+201681160
+201681685
+201681478
+201681479
+201680724
+201680723
+201680722
+201681159
+201681019
+201680721
+201681004
+201681487
+201681715
+201681158
+201681156
+201680880
+201681157
+201681532
+201681688
+201681155
+201681476
+201681684
+201681445
+201681154
+201681714
+201680844
+201680881
+201680875
+201680845
+201681713
+201680846
+201680876
+201681153
+201682339
+201682334
+201682115
+201681940
+201681939
+201682114
+201681938
+201681937
+201682246
+201681936
+201682333
+201682113
+201681935
+201681950
+201681934
+201682218
+201681933
+201682112
+201681988
+201681932
+201681990
+201681931
+201682335
+201681930
+201682111
+201682194
+201681929
+201682933
+201681964
+201681928
+201681926
+201681927
+201681925
+201682332
+201681924
+201681923
+201681922
+201681921
+201682110
+201682341
+201682116
+201682330
+201682228
+201681920
+201682331
+201681919
+201681984
+201681918
+201682329
+201681917
+201681916
+201682108
+201682109
+201681915
+201681914
+201681913
+201681982
+201681912
+201681911
+201681910
+201682107
+201682252
+201682328
+201682327
+201682106
+201681908
+201681909
+201681906
+201681907
+201681905
+201681904
+201682240
+201682105
+201681902
+201681900
+201682326
+201682184
+201681903
+201682325
+201682254
+201681898
+201682204
+201681899
+201682323
+201681897
+201682102
+201682337
+201681901
+201682324
+201682364
+201682103
+201681896
+201681983
+201681895
+201682220
+201681949
+201681971
+201681941
+201682101
+201682100
+201681894
+201681893
+201682104
+201682099
+201682338
+201681892
+201681891
+201682098
+201681998
+201681890
+201681977
+201682322
+201681888
+201681886
+201681887
+201682321
+201682134
+201682095
+201681885
+201681889
+201682094
+201681883
+201682367
+201682097
+201681882
+201681881
+201681879
+201682092
+201682093
+201681878
+201682231
+201681880
+201682320
+201681985
+201682091
+201682172
+201682236
+201682096
+201681876
+201681875
+201682090
+201682089
+201681874
+201681872
+201681873
+201681871
+201681870
+201681867
+201681868
+201681865
+201682086
+201681863
+201682319
+201681864
+201682082
+201682085
+201681866
+201682087
+201682248
+201682376
+201681862
+201681859
+201682084
+201681861
+201681857
+201681858
+201682118
+201682389
+201682080
+201681855
+201682122
+201681856
+201681860
+201681854
+201681853
+201681852
+201682079
+201681850
+201681851
+201682088
+201681848
+201682078
+201682081
+201682318
+201682187
+201681846
+201681847
+201682083
+201681845
+201681844
+201682384
+201682077
+201681843
+201682242
+201682931
+201681842
+201682356
+201681970
+201682076
+201682383
+201681841
+201682213
+201681840
+201681838
+201682317
+201681839
+201682355
+201682235
+201681836
+201682257
+201681835
+201682351
+201682073
+201682074
+201682072
+201681834
+201682239
+201681833
+201681837
+201681832
+201682075
+201681831
+201682211
+201681830
+201681829
+201682365
+201681827
+201681828
+201682363
+201682388
+201682929
+201681826
+201681825
+201682314
+201681822
+201681824
+201682069
+201682316
+201681823
+201682070
+201682181
+201681821
+201682180
+201681976
+201682066
+201682179
+201681961
+201681820
+201682171
+201682067
+201682199
+201682068
+201682312
+201682071
+201682313
+201681819
+201682315
+201682223
+201682358
+201681816
+201681818
+201682222
+201681817
+201682177
+201682065
+201682251
+201681814
+201682133
+201681815
+201682132
+201682131
+201681812
+201682130
+201681811
+201681799
+201681813
+201682186
+201682185
+201682382
+201681798
+201682063
+201682212
+201682064
+201682060
+201681797
+201682310
+201681796
+201681795
+201682182
+201681794
+201682129
+201682128
+201682170
+201681793
+201682127
+201682126
+201682309
+201681791
+201681792
+201682174
+201682203
+201681790
+201681788
+201682062
+201682124
+201682058
+201681787
+201682123
+201682379
+201682059
+201682057
+201681786
+201682238
+201681789
+201682245
+201682169
+201682168
+201682167
+201682166
+201682165
+201682164
+201682163
+201682162
+201682161
+201682160
+201682056
+201682159
+201682158
+201682157
+201682156
+201682155
+201682154
+201682153
+201682152
+201681785
+201682151
+201681784
+201682150
+201682202
+201682149
+201681783
+201682148
+201682201
+201682147
+201682146
+201681780
+201682145
+201682200
+201682340
+201681781
+201682144
+201681779
+201682143
+201682336
+201682308
+201681782
+201681986
+201682219
+201681777
+201682253
+201682061
+201681993
+201681981
+201682054
+201682142
+201682217
+201682141
+201681778
+201682140
+201682139
+201682138
+201682137
+201682136
+201682135
+201681776
+201682227
+201682053
+201682049
+201682226
+201682307
+201681775
+201682214
+201682050
+201682048
+201681774
+201682055
+201681975
+201682047
+201682046
+201682173
+201681771
+201681772
+201681954
+201682234
+201682390
+201682051
+201682229
+201681773
+201682206
+201681770
+201682045
+201681963
+201681769
+201681946
+201681999
+201681966
+201682052
+201682209
+201681767
+201681768
+201682305
+201682342
+201682225
+201682044
+201681951
+201681766
+201681987
+201681765
+201682255
+201682306
+201682304
+201682189
+201682230
+201682360
+201682041
+201681764
+201681763
+201682043
+201681955
+201681972
+201681952
+201682302
+201682303
+201681761
+201682040
+201681762
+201682039
+201681760
+201682038
+201682930
+201681757
+201682037
+201681758
+201681953
+201681756
+201681759
+201682191
+201681969
+201682036
+201681753
+201681754
+201681755
+201681973
+201681752
+201682366
+201681751
+201682042
+201681750
+201681962
+201682300
+201682033
+201681960
+201682034
+201681978
+201681968
+201681749
+201682301
+201681748
+201682237
+201682031
+201681979
+201682299
+201682032
+201682216
+201682298
+201682035
+201681989
+201681747
+201681746
+201681948
+201681974
+201682373
+201681745
+201682297
+201682030
+201682350
+201681744
+201682029
+201682353
+201682028
+201682027
+201681741
+201681739
+201682183
+201681740
+201681742
+201681997
+201681738
+201682357
+201682295
+201681737
+201682296
+201681736
+201682025
+201682932
+201681735
+201682026
+201682371
+201682119
+201681967
+201682250
+201682294
+201682378
+201682359
+201682346
+201682024
+201682292
+201682293
+201681734
+201682023
+201682386
+201681943
+201682022
+201682021
+201682207
+201682197
+201682256
+201681945
+201682208
+201681733
+201681743
+201682198
+201681732
+201682497
+201682496
+201682499
+201681944
+201681959
+201682188
+201682291
+201682020
+201682498
+201682018
+201681942
+201682369
+201682927
+201682017
+201681947
+201682311
+201682495
+201682347
+201682290
+201682493
+201682015
+201682492
+201682381
+201682215
+201682491
+201682019
+201682387
+201682490
+201682489
+201682361
+201682289
+201682488
+201682196
+201682210
+201682288
+201682232
+201682286
+201682175
+201682193
+201682487
+201682287
+201682233
+201682385
+201682125
+201681965
+201682345
+201682372
+201682494
+201681956
+201682243
+201682486
+201682244
+201682012
+201682013
+201681991
+201682285
+201682485
+201682481
+201682483
+201682482
+201682195
+201681996
+201682377
+201682011
+201682192
+201682178
+201682249
+201682368
+201682480
+201682484
+201682010
+201682284
+201682283
+201682479
+201682352
+201682370
+201682478
+201682009
+201682120
+201682477
+201682474
+201682475
+201682205
+201682008
+201682282
+201682281
+201682473
+201682006
+201682005
+201682117
+201682280
+201682007
+201682279
+201682472
+201682362
+201682278
+201682004
+201682471
+201682002
+201682470
+201682003
+201682277
+201682375
+201682000
+201682374
+201682001
+201682468
+201682190
+201682467
+201682354
+201682344
+201681995
+201682465
+201682348
+201682999
+201682466
+201682380
+201682276
+201682998
+201681958
+201682997
+201682275
+201682349
+201682476
+201682176
+201682274
+201682464
+201682463
+201682996
+201682995
+201682994
+201682273
+201682247
+201682241
+201682993
+201682579
+201682923
+201682763
+201682924
+201682738
+201682590
+201682618
+201682926
+201682588
+201682582
+201682672
+201682581
+201682671
+201682681
+201682517
+201682925
+201682580
+201682819
+201682670
+201682818
+201682817
+201682816
+201682922
+201682815
+201682803
+201682810
+201682809
+201682921
+201682811
+201682920
+201682919
+201682812
+201682578
+201682813
+201682918
+201682917
+201682669
+201682577
+201682576
+201682814
+201682916
+201682600
+201682915
+201682591
+201682584
+201682575
+201683092
+201682829
+201682914
+201682913
+201682601
+201682912
+201682599
+201682911
+201682910
+201682668
+201682807
+201682820
+201682832
+201682574
+201683109
+201682821
+201682573
+201682844
+201682909
+201682686
+201682572
+201682824
+201682571
+201682687
+201682908
+201682823
+201682508
+201682514
+201682822
+201682570
+201682569
+201682667
+201682607
+201682619
+201682907
+201682906
+201682905
+201682568
+201682501
+201682842
+201682567
+201682566
+201682509
+201682666
+201682904
+201682606
+201682903
+201682586
+201682902
+201682901
+201682665
+201682565
+201682826
+201682564
+201682797
+201682900
+201682664
+201683103
+201682899
+201682663
+201682502
+201682662
+201682593
+201682611
+201682661
+201682833
+201682592
+201682660
+201682898
+201682563
+201682801
+201682562
+201682825
+201682806
+201682561
+201682659
+201682504
+201682560
+201682897
+201682896
+201682658
+201683102
+201682895
+201682608
+201682840
+201682519
+201682839
+201682559
+201682657
+201682558
+201682656
+201682678
+201682894
+201682680
+201682679
+201682682
+201682557
+201682893
+201682892
+201682506
+201682503
+201682556
+201682555
+201683100
+201682891
+201682515
+201682890
+201682889
+201682888
+201682554
+201682887
+201682500
+201682886
+201682654
+201682885
+201682653
+201682553
+201682652
+201682884
+201682798
+201682808
+201682615
+201682883
+201682552
+201682551
+201682882
+201682651
+201682881
+201682880
+201682879
+201682878
+201682877
+201682650
+201682609
+201682649
+201682876
+201683098
+201682875
+201682550
+201682595
+201682827
+201682549
+201682548
+201682547
+201682546
+201682648
+201682873
+201682837
+201682545
+201682843
+201682647
+201682872
+201682646
+201682544
+201682543
+201682645
+201682644
+201682510
+201682870
+201682805
+201682871
+201682542
+201682643
+201682642
+201682507
+201682541
+201682869
+201683107
+201682603
+201682540
+201682539
+201682684
+201682616
+201682538
+201682598
+201683104
+201683106
+201682868
+201682505
+201682596
+201683095
+201682641
+201682804
+201682537
+201682867
+201682620
+201682866
+201682605
+201682640
+201682828
+201682865
+201682864
+201682536
+201682863
+201682535
+201682518
+201682612
+201682513
+201682534
+201682799
+201682533
+201682639
+201682862
+201682585
+201682861
+201682638
+201683105
+201682860
+201682859
+201682532
+201682858
+201682637
+201682597
+201682636
+201682511
+201682635
+201683101
+201682634
+201682683
+201682857
+201682530
+201682529
+201682587
+201682614
+201682633
+201683099
+201682604
+201682856
+201682855
+201682528
+201682583
+201682836
+201682854
+201682632
+201682527
+201682610
+201682831
+201682617
+201682853
+201682526
+201682802
+201683096
+201682631
+201682630
+201683094
+201682852
+201683093
+201682629
+201682800
+201682589
+201682851
+201682838
+201682850
+201682835
+201682762
+201682628
+201682520
+201682525
+201682602
+201682627
+201682524
+201682594
+201682626
+201682848
+201682830
+201682625
+201682841
+201682613
+201682834
+201682624
+201682847
+201682685
+201682757
+201682846
+201682623
+201682523
+201682522
+201682622
+201682845
+201683108
+201682512
+201682521
+201682621
+201683132
+201683208
+201683607
+201683091
+201683090
+201683489
+201683730
+201683597
+201683687
+201683486
+201683609
+201683623
+201683089
+201683358
+201683488
+201683487
+201683088
+201683087
+201683086
+201683596
+201683316
+201683179
+201683162
+201683085
+201683595
+201683594
+201683727
+201683485
+201683617
+201683593
+201683712
+201683592
+201683713
+201683591
+201683590
+201683714
+201683084
+201683484
+201683083
+201683697
+201683080
+201683733
+201683174
+201683082
+201683081
+201683589
+201683588
+201683587
+201683186
+201683172
+201683483
+201683586
+201683728
+201683077
+201683079
+201683078
+201683482
+201683173
+201683630
+201683177
+201683481
+201683585
+201683584
+201683621
+201683076
+201683583
+201683376
+201683582
+201683581
+201683480
+201683580
+201683479
+201683722
+201683579
+201683478
+201683380
+201683205
+201683160
+201683477
+201683371
+201683476
+201683367
+201683692
+201683698
+201683690
+201683475
+201683474
+201683578
+201683577
+201683075
+201683600
+201683576
+201683575
+201683606
+201683164
+201683574
+201683074
+201683573
+201683572
+201683073
+201683721
+201683072
+201683473
+201683699
+201683171
+201683472
+201683471
+201683696
+201683071
+201683070
+201683668
+201683615
+201683571
+201683669
+201683470
+201683069
+201683142
+201683068
+201683067
+201683670
+201683066
+201683671
+201683570
+201683569
+201683149
+201683469
+201683568
+201683065
+201683468
+201683141
+201683185
+201683064
+201683567
+201683063
+201683364
+201683599
+201683622
+201683365
+201683695
+201683667
+201683062
+201683370
+201683061
+201683060
+201683170
+201683467
+201683059
+201683566
+201683565
+201683564
+201683563
+201683743
+201683058
+201683057
+201683466
+201683624
+201683562
+201683056
+201683140
+201683465
+201683666
+201683464
+201683561
+201683463
+201683461
+201683665
+201683055
+201683377
+201683378
+201683151
+201683139
+201683560
+201683664
+201683683
+201683693
+201683138
+201683054
+201683746
+201683152
+201683663
+201683460
+201683749
+201683135
+201683736
+201683559
+201683686
+201683136
+201683685
+201683053
+201683459
+201683183
+201683169
+201683182
+201683660
+201683052
+201683458
+201683457
+201683604
+201683128
+201683735
+201683661
+201683558
+201683694
+201683557
+201683137
+201683168
+201683556
+201683662
+201683555
+201683051
+201683456
+201683146
+201683739
+201683050
+201683679
+201683554
+201683049
+201683553
+201683455
+201683731
+201683454
+201683742
+201683194
+201683356
+201683678
+201683048
+201683047
+201683552
+201683680
+201683718
+201683740
+201683681
+201683131
+201683703
+201683147
+201683551
+201683550
+201683738
+201683682
+201683701
+201683148
+201683549
+201683453
+201683548
+201683046
+201683210
+201683724
+201683684
+201683737
+201683452
+201683451
+201683450
+201683547
+201683175
+201683449
+201683448
+201683700
+201683157
+201683546
+201683447
+201683545
+201683446
+201683145
+201683314
+201683702
+201683045
+201683044
+201683043
+201683042
+201683676
+201683041
+201683715
+201683154
+201683732
+201683379
+201683677
+201683153
+201683544
+201683675
+201683202
+201683040
+201683674
+201683543
+201683612
+201683542
+201683705
+201683611
+201683719
+201683704
+201683039
+201683038
+201683144
+201683445
+201683444
+201683443
+201683143
+201683541
+201683540
+201683037
+201683706
+201683748
+201683036
+201683672
+201683442
+201683441
+201683673
+201683539
+201683035
+201683538
+201683176
+201683034
+201683155
+201683729
+201683537
+201683744
+201683033
+201683166
+201683032
+201683536
+201683180
+201683535
+201683603
+201683614
+201683534
+201683440
+201683031
+201683190
+201683438
+201683620
+201683533
+201683357
+201683030
+201683029
+201683028
+201683181
+201683027
+201683026
+201683532
+201683025
+201683439
+201683734
+201683161
+201683741
+201683024
+201683531
+201683184
+201683133
+201683723
+201683530
+201683159
+201683529
+201683437
+201683197
+201683167
+201683528
+201683527
+201683436
+201683435
+201683023
+201683187
+201683022
+201683616
+201683434
+201683021
+201683020
+201683526
+201683019
+201683018
+201683017
+201683524
+201683016
+201683015
+201683525
+201683014
+201683601
+201683433
+201683523
+201683689
+201683432
+201683013
+201683522
+201683431
+201683178
+201683130
+201683011
+201683010
+201683521
+201683375
+201683206
+201683005
+201683519
+201683725
+201683430
+201683008
+201683429
+201683007
+201683520
+201683006
+201683004
+201683003
+201683518
+201683428
+201683427
+201683517
+201683002
+201683426
+201683425
+201683424
+201683001
+201683423
+201683000
+201683422
+201683198
+201683602
+201683250
+201683368
+201683516
+201683373
+201683515
+201683618
+201683514
+201683195
+201683513
+201683249
+201683512
+201683248
+201683199
+201683691
+201683245
+201683508
+201683711
+201683421
+201683511
+201683420
+201683419
+201683150
+201683510
+201683247
+201683509
+201683418
+201683417
+201683246
+201683244
+201683366
+201683745
+201683505
+201683414
+201683374
+201683416
+201683415
+201683243
+201683507
+201683627
+201683506
+201683127
+201683383
+201683710
+201683196
+201683504
+201683242
+201683241
+201683413
+201683709
+201683503
+201683502
+201683412
+201683240
+201683501
+201683411
+201683708
+201683239
+201683238
+201683410
+201683237
+201683409
+201683188
+201683500
+201683408
+201683236
+201683369
+201683771
+201683776
+201683235
+201683775
+201683774
+201683313
+201683407
+201683773
+201683772
+201683234
+201683233
+201683629
+201683232
+201683165
+201683231
+201683158
+201683406
+201683163
+201683405
+201683770
+201683404
+201683372
+201683765
+201683631
+201683403
+201683605
+201683769
+201683402
+201683768
+201683767
+201683401
+201683726
+201683400
+201683230
+201683766
+201683156
+201683764
+201683399
+201683398
+201683384
+201683763
+201683397
+201683229
+201683396
+201683192
+201683228
+201683227
+201683762
+201683386
+201683226
+201683225
+201683191
+201683224
+201683223
+201683395
+201683222
+201683220
+201683315
+201683221
+201683628
+201683720
+201683761
+201683394
+201683632
+201683716
+201683219
+201683760
+201683759
+201683218
+201683217
+201683189
+201683758
+201683385
+201683393
+201683757
+201683619
+201683215
+201683381
+201683392
+201683391
+201683747
+201683608
+201683216
+201683756
+201683707
+201683610
+201683755
+201683193
+201683203
+201683214
+201683134
+201683209
+201683201
+201683658
+201683754
+201683390
+201683626
+201683126
+201683389
+201683213
+201683753
+201683388
+201683659
+201683752
+201683200
+201683382
+201683387
+201683207
+201683598
+201683212
+201683751
+201683688
+201683613
+201683717
+201683625
+201683211
+201683750
+201684186
+201683813
+201683812
+201683985
+201683811
+201685132
+201683945
+201683810
+201683977
+201684189
+201684184
+201683809
+201685131
+201684350
+201683807
+201685130
+201684183
+201684182
+201685129
+201684179
+201683805
+201684257
+201684180
+201684262
+201684178
+201684177
+201684176
+201683986
+201684175
+201683803
+201684212
+201684174
+201684172
+201684173
+201684171
+201683818
+201684169
+201684170
+201683801
+201685128
+201683806
+201684168
+201684166
+201684167
+201683802
+201684163
+201684165
+201683799
+201684162
+201684164
+201683993
+201684193
+201685127
+201684161
+201684160
+201684159
+201684157
+201684158
+201683798
+201684155
+201684154
+201684156
+201683961
+201683834
+201684260
+201685139
+201685176
+201684153
+201683919
+201684152
+201684150
+201684151
+201683797
+201685174
+201683972
+201683964
+201683821
+201683657
+201684148
+201685126
+201684149
+201683656
+201685145
+201684146
+201684145
+201683652
+201683914
+201684144
+201684143
+201683655
+201683651
+201684141
+201683654
+201684142
+201684139
+201685339
+201684147
+201684138
+201684137
+201683990
+201684136
+201683649
+201684140
+201685125
+201683647
+201684135
+201685136
+201684244
+201683648
+201683948
+201683650
+201683911
+201683645
+201685135
+201683646
+201684133
+201683804
+201684134
+201683643
+201684234
+201683642
+201684129
+201683988
+201684254
+201683640
+201684131
+201684128
+201683843
+201683641
+201684201
+201685141
+201685178
+201684127
+201683989
+201683638
+201683639
+201683635
+201684125
+201684126
+201683636
+201683634
+201683981
+201684348
+201685123
+201683637
+201684124
+201685124
+201684123
+201684198
+201684121
+201685121
+201685024
+201683633
+201683796
+201685188
+201684120
+201683794
+201684119
+201683952
+201684122
+201685187
+201683795
+201684118
+201684218
+201685120
+201684116
+201684113
+201684115
+201684112
+201684114
+201685119
+201684111
+201684117
+201684110
+201684238
+201684109
+201683793
+201684108
+201684105
+201684107
+201684106
+201684104
+201683791
+201684270
+201683790
+201684103
+201684102
+201684100
+201683792
+201684241
+201683935
+201684099
+201685118
+201684098
+201684097
+201683789
+201684096
+201683944
+201683788
+201683966
+201683979
+201684101
+201684263
+201684095
+201685117
+201684093
+201684094
+201683816
+201684092
+201684091
+201684251
+201683785
+201683787
+201685116
+201684089
+201684087
+201684242
+201684086
+201685115
+201684084
+201684090
+201684085
+201684252
+201684083
+201684213
+201684208
+201683783
+201684082
+201683782
+201683781
+201684081
+201684088
+201684203
+201685020
+201683943
+201683786
+201684079
+201684078
+201684080
+201683959
+201683780
+201683822
+201683778
+201683779
+201683976
+201684249
+201684076
+201684075
+201683896
+201685022
+201684077
+201684499
+201685164
+201683912
+201684074
+201683973
+201683942
+201684072
+201685180
+201685021
+201684073
+201683784
+201684267
+201683963
+201684070
+201684067
+201684068
+201683902
+201684071
+201684065
+201684498
+201685111
+201684066
+201683954
+201684497
+201684064
+201685110
+201684063
+201685109
+201684496
+201684069
+201684495
+201684062
+201684494
+201685154
+201684061
+201685185
+201684493
+201683841
+201685143
+201685338
+201684492
+201683916
+201685149
+201684269
+201684060
+201684059
+201683971
+201685171
+201684264
+201683837
+201684491
+201684058
+201684057
+201683947
+201685108
+201684056
+201685107
+201685150
+201684489
+201685106
+201683941
+201684054
+201684055
+201684053
+201684488
+201684487
+201684052
+201683974
+201684231
+201683953
+201684049
+201684051
+201685105
+201684485
+201684050
+201684048
+201684486
+201684206
+201685153
+201685104
+201685152
+201684046
+201684047
+201684235
+201684211
+201684483
+201685103
+201683923
+201684044
+201684043
+201684042
+201684041
+201684040
+201684045
+201685182
+201684490
+201684039
+201684038
+201684482
+201684036
+201684034
+201684037
+201684481
+201683920
+201685181
+201684035
+201684480
+201684033
+201684236
+201683922
+201683970
+201684197
+201684478
+201683815
+201684477
+201684031
+201685172
+201683965
+201684029
+201685101
+201684028
+201685102
+201684027
+201685099
+201684026
+201684268
+201683899
+201685100
+201684024
+201684025
+201683838
+201684475
+201684022
+201683928
+201684021
+201684020
+201684032
+201684190
+201684019
+201684484
+201684030
+201684191
+201684018
+201684017
+201685098
+201684015
+201684016
+201683877
+201684013
+201684473
+201684011
+201684476
+201684209
+201684008
+201685133
+201684009
+201685168
+201684010
+201683653
+201684012
+201684471
+201684014
+201684472
+201685096
+201684005
+201684188
+201684006
+201685184
+201683833
+201684004
+201684003
+201685097
+201684470
+201683901
+201685151
+201684007
+201685095
+201684467
+201684002
+201684466
+201684465
+201684001
+201683949
+201685196
+201684000
+201685499
+201684468
+201684464
+201684463
+201685195
+201685497
+201684459
+201684461
+201684199
+201685496
+201684457
+201684456
+201683892
+201685495
+201685198
+201684455
+201685194
+201685498
+201685494
+201683958
+201683999
+201683962
+201685093
+201684469
+201684451
+201684196
+201685094
+201684454
+201685493
+201685179
+201684462
+201685492
+201684479
+201684449
+201685491
+201684453
+201685490
+201684452
+201685489
+201684222
+201685487
+201685488
+201685486
+201683975
+201684450
+201683910
+201683909
+201685484
+201684446
+201683908
+201685483
+201685137
+201685485
+201684445
+201684444
+201683906
+201685482
+201685481
+201683887
+201683886
+201684448
+201684443
+201683885
+201684447
+201684441
+201685480
+201684442
+201683884
+201685479
+201683883
+201685478
+201685134
+201684239
+201683897
+201683882
+201683881
+201685092
+201683880
+201685091
+201683879
+201685477
+201685157
+201683937
+201683878
+201683991
+201685475
+201684440
+201685476
+201685474
+201683894
+201683893
+201685473
+201684439
+201683890
+201684253
+201683889
+201685472
+201684266
+201683982
+201684437
+201683987
+201685470
+201685471
+201684460
+201685175
+201683842
+201684245
+201683862
+201683861
+201684435
+201683869
+201684438
+201685469
+201683868
+201685468
+201683867
+201683866
+201684434
+201685467
+201684433
+201685466
+201683860
+201683859
+201685148
+201685465
+201683858
+201684436
+201683857
+201683856
+201684432
+201683855
+201685464
+201683854
+201683853
+201684225
+201685462
+201683940
+201683852
+201685161
+201685090
+201683851
+201685460
+201683850
+201684200
+201683895
+201683849
+201685459
+201683848
+201683996
+201685458
+201683847
+201683846
+201685089
+201684430
+201685463
+201685454
+201685457
+201685455
+201683921
+201683951
+201685177
+201684258
+201684428
+201685453
+201685461
+201683917
+201684431
+201685452
+201684425
+201685456
+201685451
+201683918
+201685450
+201684427
+201685088
+201685449
+201685448
+201684426
+201685087
+201683960
+201684223
+201683927
+201684422
+201683926
+201683925
+201685447
+201684247
+201683924
+201684424
+201685446
+201684250
+201684429
+201685444
+201685443
+201683876
+201685442
+201685445
+201683929
+201683875
+201683874
+201683873
+201685441
+201685086
+201683872
+201685440
+201685084
+201684421
+201685085
+201685186
+201683955
+201683904
+201683819
+201683903
+201683900
+201683888
+201685438
+201685083
+201684423
+201684181
+201683931
+201685173
+201683930
+201685436
+201683956
+201685437
+201685433
+201684224
+201684420
+201685082
+201685435
+201685348
+201685432
+201683936
+201684419
+201685431
+201684232
+201685429
+201685081
+201685430
+201685428
+201685192
+201684417
+201685427
+201684255
+201683983
+201684415
+201684416
+201685080
+201684259
+201684418
+201683835
+201685426
+201684217
+201683871
+201683836
+201684226
+201683870
+201685079
+201684214
+201685425
+201685424
+201684207
+201683832
+201683831
+201683830
+201685165
+201683829
+201683828
+201683827
+201683826
+201685423
+201685140
+201683825
+201683824
+201684414
+201685183
+201683823
+201685421
+201685420
+201683950
+201683957
+201684413
+201685419
+201685078
+201683891
+201684412
+201684411
+201685337
+201683865
+201683864
+201683863
+201685416
+201685077
+201683968
+201685422
+201685076
+201685414
+201685413
+201685415
+201685074
+201685412
+201684410
+201685411
+201685410
+201685073
+201685075
+201684228
+201685408
+201685071
+201684221
+201683946
+201685070
+201684408
+201684202
+201685407
+201684409
+201683998
+201685409
+201683845
+201683992
+201685146
+201685406
+201684407
+201685405
+201685404
+201683978
+201684406
+201685403
+201684405
+201685072
+201685069
+201684404
+201685402
+201684403
+201685401
+201685167
+201684402
+201685400
+201685068
+201684401
+201685399
+201684397
+201684398
+201685398
+201685067
+201684256
+201685142
+201685066
+201685397
+201684399
+201685159
+201685396
+201685395
+201685394
+201685065
+201684248
+201685064
+201684396
+201685393
+201683839
+201685063
+201684400
+201685391
+201685062
+201684395
+201684394
+201684393
+201684392
+201685390
+201683840
+201685060
+201685061
+201685059
+201685158
+201684389
+201684233
+201685058
+201685387
+201685057
+201685389
+201684387
+201685386
+201685385
+201685056
+201684391
+201684246
+201683844
+201685384
+201685055
+201685054
+201684388
+201683905
+201684347
+201685383
+201685170
+201684385
+201685382
+201685381
+201684390
+201685378
+201685053
+201684240
+201683915
+201685051
+201685052
+201685380
+201685379
+201684386
+201685376
+201683938
+201684383
+201684380
+201684381
+201685050
+201685049
+201685169
+201684378
+201685375
+201685162
+201685388
+201685048
+201684376
+201684382
+201685047
+201684373
+201685138
+201684374
+201683820
+201685374
+201685046
+201685377
+201684205
+201684377
+201685373
+201684379
+201683997
+201685372
+201683814
+201683817
+201685147
+201684375
+201685044
+201684371
+201685043
+201684372
+201685371
+201685045
+201685042
+201683995
+201684370
+201684261
+201685370
+201685368
+201685369
+201685041
+201684220
+201684368
+201685366
+201685040
+201685039
+201685364
+201684384
+201685365
+201684367
+201683939
+201685363
+201685367
+201685038
+201683994
+201684346
+201685037
+201684187
+201685361
+201684366
+201685144
+201684345
+201684237
+201684365
+201684349
+201683967
+201685360
+201684243
+201684369
+201684192
+201684363
+201684364
+201683933
+201684361
+201684362
+201685359
+201685166
+201684359
+201685035
+201685036
+201685034
+201685033
+201685032
+201685358
+201685357
+201684360
+201684358
+201685356
+201684357
+201683980
+201685355
+201684215
+201685354
+201685031
+201684355
+201685353
+201685030
+201683932
+201685029
+201684356
+201685156
+201685155
+201684210
+201685028
+201683800
+201685163
+201684204
+201683969
+201685352
+201684354
+201684353
+201684352
+201683907
+201685027
+201685351
+201685026
+201685025
+201685350
+201684344
+201684351
+201685160
+201685349
+201685511
+201685757
+201685758
+201685756
+201684523
+201685522
+201685531
+201685639
+201684884
+201685542
+201685755
+201685507
+201685762
+201684530
+201685754
+201685753
+201685752
+201685638
+201684891
+201684848
+201685751
+201684654
+201685750
+201685749
+201685748
+201685761
+201685747
+201685745
+201684903
+201685746
+201685744
+201684653
+201685637
+201685742
+201684681
+201684680
+201685636
+201685743
+201684679
+201684678
+201684677
+201685741
+201684676
+201684675
+201685501
+201684674
+201684860
+201684704
+201684513
+201684673
+201684672
+201685739
+201685502
+201684652
+201685737
+201685738
+201684688
+201684651
+201685525
+201684543
+201684895
+201684655
+201684649
+201684650
+201684854
+201685736
+201685517
+201685735
+201684647
+201684509
+201684538
+201684646
+201684648
+201684645
+201685734
+201684661
+201684644
+201685733
+201684504
+201685732
+201684656
+201685731
+201684642
+201684643
+201685535
+201684861
+201684639
+201685729
+201685635
+201684640
+201685773
+201684641
+201684551
+201684698
+201685524
+201684501
+201685504
+201685727
+201684870
+201685722
+201685723
+201685724
+201684520
+201685726
+201684689
+201685719
+201685720
+201685725
+201685718
+201685721
+201684638
+201685633
+201684695
+201685716
+201684636
+201685717
+201685714
+201684634
+201685715
+201685712
+201685711
+201685713
+201684541
+201685709
+201685710
+201685632
+201685706
+201684662
+201685708
+201685631
+201685705
+201684633
+201684505
+201684630
+201684632
+201684631
+201685704
+201684637
+201685707
+201684900
+201685634
+201685702
+201685703
+201685701
+201685630
+201684709
+201685700
+201685698
+201685699
+201684627
+201684901
+201684628
+201685696
+201685697
+201685694
+201685629
+201685692
+201684626
+201685693
+201685540
+201685691
+201685688
+201684625
+201685695
+201685628
+201684623
+201684868
+201684550
+201684712
+201685523
+201685686
+201684534
+201685687
+201685683
+201685685
+201684622
+201685681
+201685682
+201684880
+201684621
+201684619
+201685627
+201685680
+201684859
+201685678
+201685677
+201685675
+201684620
+201684511
+201685676
+201685679
+201685626
+201685508
+201684521
+201685673
+201685674
+201684617
+201684502
+201684875
+201685509
+201685672
+201685625
+201684503
+201685669
+201684616
+201684614
+201685670
+201685668
+201684529
+201685667
+201685671
+201685666
+201684705
+201684940
+201684613
+201685520
+201685624
+201684533
+201685018
+201684876
+201684612
+201684615
+201684869
+201684525
+201685664
+201685663
+201685505
+201685662
+201684710
+201684629
+201685533
+201685684
+201685661
+201685660
+201684905
+201684611
+201684902
+201684863
+201684519
+201684682
+201685500
+201685665
+201684609
+201684608
+201685513
+201684693
+201685659
+201684610
+201685772
+201684857
+201684553
+201684664
+201684607
+201685658
+201684894
+201685657
+201684943
+201684606
+201685656
+201685655
+201685515
+201685623
+201684605
+201684549
+201685622
+201685763
+201684694
+201685620
+201684604
+201684602
+201685654
+201684548
+201685653
+201685526
+201685619
+201685651
+201684882
+201685652
+201684843
+201684546
+201684844
+201685650
+201685189
+201684845
+201685649
+201685618
+201684510
+201684842
+201685648
+201685647
+201684601
+201684527
+201685740
+201685617
+201685645
+201685616
+201685646
+201684841
+201684877
+201685612
+201684846
+201684535
+201684840
+201684665
+201685611
+201685112
+201685644
+201685610
+201685759
+201685113
+201685114
+201685615
+201685613
+201685614
+201685643
+201685640
+201684514
+201685911
+201685641
+201685642
+201684862
+201685910
+201685776
+201685609
+201685908
+201685909
+201684838
+201684516
+201685907
+201684839
+201684937
+201685906
+201685607
+201685606
+201684702
+201685621
+201685605
+201685905
+201684837
+201684936
+201684858
+201684898
+201685903
+201685902
+201684897
+201685904
+201685603
+201685604
+201685901
+201685900
+201684697
+201684545
+201685899
+201685768
+201685601
+201685608
+201685602
+201685503
+201685898
+201684836
+201684671
+201685600
+201685897
+201685896
+201684878
+201684515
+201685894
+201685895
+201684833
+201684832
+201685892
+201684834
+201684830
+201685891
+201684835
+201684829
+201684831
+201685890
+201684603
+201685889
+201685518
+201684887
+201685888
+201684828
+201685598
+201685893
+201685885
+201685886
+201685596
+201684827
+201684826
+201685884
+201684669
+201685594
+201685597
+201685887
+201685592
+201684825
+201684711
+201685883
+201685521
+201685593
+201684823
+201684824
+201684822
+201685882
+201685599
+201684722
+201684696
+201684522
+201685527
+201685881
+201684700
+201684660
+201684820
+201684659
+201684658
+201684821
+201685880
+201684657
+201685591
+201685879
+201684707
+201684819
+201685777
+201685590
+201685023
+201684713
+201685689
+201685589
+201685878
+201684890
+201685876
+201685875
+201685529
+201685877
+201685874
+201684817
+201685541
+201685873
+201685872
+201684864
+201685765
+201684816
+201685588
+201685587
+201684818
+201684542
+201685766
+201685869
+201685585
+201685868
+201685867
+201684813
+201685582
+201684811
+201685584
+201684812
+201685774
+201684815
+201684847
+201684810
+201685583
+201684552
+201685866
+201685580
+201685581
+201685864
+201685865
+201684809
+201684692
+201684532
+201684807
+201684618
+201685544
+201685516
+201685863
+201685862
+201684808
+201684547
+201685861
+201684814
+201684879
+201684938
+201684885
+201685860
+201685512
+201684804
+201684806
+201685859
+201685579
+201684687
+201684805
+201684686
+201684685
+201684942
+201684801
+201684684
+201684944
+201684683
+201684690
+201684803
+201685855
+201685854
+201685858
+201685857
+201685852
+201685853
+201685578
+201684798
+201684799
+201684802
+201685851
+201684794
+201684795
+201685586
+201684797
+201684792
+201685850
+201685849
+201684793
+201685848
+201685847
+201685846
+201684701
+201685845
+201684871
+201684904
+201685577
+201685576
+201685844
+201684796
+201684790
+201684850
+201684800
+201684668
+201684789
+201685843
+201684791
+201684855
+201685841
+201685842
+201685870
+201685856
+201685840
+201684787
+201685839
+201685771
+201684786
+201684785
+201684788
+201685575
+201685574
+201684784
+201684624
+201684783
+201685573
+201685536
+201684781
+201684867
+201684780
+201684849
+201684518
+201685572
+201685571
+201685838
+201685570
+201684526
+201685770
+201685760
+201685519
+201685568
+201685514
+201684852
+201685569
+201684782
+201684508
+201684892
+201684874
+201685837
+201685567
+201685836
+201685835
+201685565
+201685566
+201684865
+201685564
+201684699
+201684703
+201685015
+201685832
+201684539
+201685833
+201684873
+201685016
+201685831
+201684528
+201685563
+201685830
+201684779
+201685829
+201684896
+201685828
+201685827
+201684778
+201684537
+201685530
+201684500
+201685826
+201684872
+201684776
+201685825
+201685824
+201685823
+201684775
+201684774
+201685538
+201685562
+201685822
+201684506
+201685821
+201684531
+201685532
+201684667
+201685820
+201684889
+201685764
+201685819
+201685775
+201685818
+201684772
+201684899
+201684670
+201685816
+201685817
+201685561
+201685815
+201685560
+201685559
+201685558
+201685814
+201684856
+201685557
+201685813
+201685812
+201684767
+201684769
+201684770
+201685555
+201685556
+201685554
+201685810
+201685553
+201685811
+201684766
+201684935
+201684764
+201685809
+201685539
+201685807
+201684691
+201685808
+201684507
+201685552
+201685805
+201684768
+201685806
+201685013
+201685804
+201684765
+201685012
+201685767
+201684762
+201684866
+201685803
+201685014
+201684886
+201684883
+201685769
+201684851
+201685802
+201684761
+201685800
+201684939
+201685801
+201685799
+201684760
+201684663
+201684763
+201685798
+201684773
+201685551
+201684512
+201684757
+201685550
+201685797
+201684758
+201684759
+201684888
+201685549
+201684756
+201685548
+201685528
+201684753
+201684755
+201685534
+201685547
+201684752
+201685796
+201684540
+201685546
+201684751
+201684750
+201685795
+201684754
+201684749
+201684748
+201685793
+201685794
+201684708
+201684941
+201684747
+201685792
+201684635
+201684746
+201685791
+201684706
+201685510
+201685790
+201685545
+201686340
+201686339
+201686338
+201686087
+201686337
+201686086
+201685999
+201686085
+201686336
+201686084
+201686083
+201686082
+201686081
+201686335
+201686080
+201685998
+201686079
+201685997
+201686334
+201686093
+201686077
+201685996
+201686075
+201686074
+201685995
+201685994
+201686073
+201686072
+201685993
+201686071
+201686070
+201686069
+201686068
+201686067
+201686332
+201686066
+201686065
+201686064
+201686063
+201686062
+201686061
+201685992
+201686060
+201686059
+201686058
+201686057
+201686056
+201685991
+201686055
+201686054
+201685990
+201686053
+201686052
+201686051
+201686050
+201685989
+201685988
+201686049
+201686048
+201686047
+201686046
+201686045
+201686331
+201686044
+201685987
+201686245
+201685986
+201686043
+201686042
+201686041
+201686244
+201686040
+201686039
+201685985
+201686038
+201685984
+201686037
+201686036
+201685983
+201686330
+201686329
+201686328
+201685981
+201686327
+201686035
+201686034
+201686033
+201685979
+201686326
+201686325
+201686032
+201686031
+201686030
+201685978
+201686029
+201686028
+201686027
+201685977
+201685976
+201686026
+201686025
+201686024
+201685975
+201686023
+201685974
+201685973
+201686324
+201686022
+201685972
+201685971
+201686021
+201686323
+201685970
+201686020
+201686322
+201686321
+201685969
+201685968
+201686019
+201685967
+201685966
+201685965
+201685964
+201686320
+201686018
+201685963
+201685962
+201685961
+201685960
+201685959
+201685958
+201685957
+201685956
+201685955
+201685954
+201685953
+201685952
+201685951
+201685950
+201686404
+201686403
+201686402
+201685946
+201685945
+201685944
+201685943
+201685942
+201685941
+201686319
+201686318
+201685940
+201685939
+201686317
+201685938
+201685937
+201686316
+201685936
+201685935
+201685934
+201685933
+201685932
+201686017
+201685931
+201686016
+201685930
+201685929
+201685928
+201685927
+201685926
+201685925
+201685924
+201685923
+201685922
+201685921
+201685920
+201685919
+201686015
+201686014
+201685918
+201686013
+201685917
+201685916
+201685915
+201685914
+201685913
+201686315
+201686314
+201686313
+201685912
+201686312
+201686012
+201685789
+201685788
+201685787
+201686011
+201685786
+201685785
+201685784
+201685783
+201685782
+201685781
+201685780
+201685779
+201685778
+201686499
+201686498
+201686311
+201686497
+201686496
+201686495
+201686494
+201686493
+201686492
+201686092
+201686010
+201686310
+201686491
+201686009
+201686490
+201686008
+201686007
+201686489
+201686309
+201686006
+201686488
+201686487
+201686308
+201686005
+201686307
+201686004
+201686485
+201686306
+201686305
+201686003
+201686002
+201686484
+201686001
+201686304
+201686000
+201686174
+201686173
+201686303
+201686171
+201686172
+201686302
+201686170
+201686169
+201686301
+201686168
+201686483
+201686482
+201685948
+201685949
+201685947
+201686166
+201686165
+201686481
+201686164
+201686163
+201686300
+201686162
+201686480
+201686161
+201686299
+201686160
+201686159
+201686157
+201686298
+201686479
+201686156
+201686478
+201686297
+201686477
+201686476
+201686296
+201686155
+201686154
+201686475
+201686474
+201686295
+201686473
+201686294
+201686153
+201686472
+201686471
+201686293
+201686151
+201686150
+201686149
+201686148
+201686363
+201686147
+201686292
+201686348
+201686291
+201686146
+201686145
+201686144
+201686143
+201686470
+201686142
+201686290
+201686469
+201686141
+201686289
+201686288
+201686468
+201686140
+201686347
+201686139
+201686287
+201686138
+201686137
+201686136
+201686467
+201686135
+201686134
+201686286
+201686133
+201686132
+201686285
+201686131
+201686130
+201686129
+201686464
+201686463
+201686462
+201686461
+201686284
+201686346
+201686128
+201686460
+201686459
+201686458
+201686457
+201686345
+201686456
+201686127
+201686283
+201686455
+201686454
+201686126
+201686125
+201686124
+201686123
+201686122
+201686453
+201686282
+201686121
+201686120
+201686452
+201686451
+201686450
+201686449
+201686281
+201686448
+201686447
+201686119
+201686280
+201686446
+201686118
+201686445
+201686117
+201686444
+201686443
+201686279
+201686116
+201686344
+201686115
+201686441
+201686114
+201686440
+201686278
+201686439
+201686438
+201686437
+201686436
+201686113
+201686435
+201686434
+201686433
+201686112
+201686432
+201686431
+201686111
+201686277
+201686276
+201686275
+201686274
+201686430
+201686429
+201686428
+201686110
+201686427
+201686109
+201686108
+201686107
+201686273
+201686426
+201686106
+201686105
+201686425
+201686104
+201686272
+201686424
+201686103
+201686271
+201686423
+201686270
+201686102
+201686269
+201686422
+201686421
+201686420
+201686268
+201686267
+201686419
+201686343
+201686266
+201686101
+201686100
+201686418
+201686417
+201686416
+201686415
+201686414
+201686413
+201686099
+201686412
+201686098
+201686097
+201686265
+201686411
+201686096
+201686264
+201686410
+201686342
+201686095
+201686409
+201686408
+201686263
+201686407
+201686406
+201686094
+201686405
+201687207
+201686925
+201687206
+201686924
+201686847
+201686923
+201686922
+201686921
+201686846
+201686845
+201687205
+201687204
+201686920
+201686844
+201686843
+201687203
+201686842
+201687202
+201686919
+201687201
+201687200
+201686918
+201686841
+201686917
+201686916
+201686915
+201686914
+201686840
+201686913
+201686839
+201686838
+201686837
+201686912
+201686836
+201686835
+201686834
+201686911
+201686910
+201686909
+201686833
+201686908
+201686907
+201686992
+201686832
+201686906
+201686991
+201686905
+201686904
+201686831
+201686830
+201686903
+201686829
+201686828
+201686902
+201686827
+201686826
+201686825
+201686824
+201687199
+201686823
+201686822
+201686821
+201686820
+201687198
+201686819
+201686989
+201686818
+201687197
+201686817
+201686816
+201687196
+201687195
+201686988
+201687194
+201686815
+201687193
+201686814
+201687191
+201686813
+201686812
+201686811
+201687190
+201687189
+201686810
+201687188
+201686809
+201686808
+201686987
+201686807
+201686806
+201686805
+201686986
+201686804
+201686803
+201686802
+201686801
+201686800
+201687186
+201687187
+201687185
+201686985
+201686799
+201687184
+201687183
+201686798
+201687182
+201686797
+201686796
+201687181
+201686795
+201686794
+201686793
+201687180
+201686792
+201686791
+201687179
+201687178
+201687177
+201686790
+201686789
+201687176
+201686788
+201686787
+201686786
+201687175
+201687174
+201686785
+201687173
+201686783
+201686782
+201686781
+201686780
+201686984
+201687172
+201687171
+201687170
+201686779
+201687169
+201687168
+201686778
+201687167
+201686777
+201686983
+201686982
+201686981
+201686776
+201686980
+201687166
+201686775
+201686979
+201686774
+201687165
+201686773
+201686772
+201686635
+201686978
+201686634
+201686633
+201686682
+201686681
+201686888
+201686887
+201686886
+201686885
+201686977
+201686976
+201687164
+201686884
+201686975
+201686974
+201686883
+201686973
+201686972
+201686882
+201687163
+201687162
+201686881
+201686880
+201687161
+201686971
+201687160
+201687158
+201686879
+201686970
+201686969
+201686878
+201686968
+201687157
+201686877
+201686876
+201686967
+201687153
+201687154
+201686875
+201686966
+201686874
+201687152
+201686873
+201686872
+201686871
+201687150
+201686965
+201686870
+201687127
+201687126
+201686680
+201687125
+201687146
+201687145
+201686964
+201687144
+201686679
+201687143
+201687142
+201686678
+201687141
+201687140
+201687139
+201687138
+201687137
+201687136
+201687135
+201686677
+201686676
+201686675
+201686674
+201687134
+201686673
+201686672
+201686671
+201686670
+201687133
+201686669
+201686667
+201686666
+201686665
+201687132
+201687131
+201686664
+201686663
+201686771
+201686770
+201686769
+201687130
+201686768
+201687129
+201686767
+201686963
+201686766
+201686765
+201686764
+201687128
+201687147
+201686763
+201686762
+201686761
+201686760
+201686759
+201687148
+201687149
+201686758
+201686757
+201686756
+201687124
+201686755
+201687123
+201686627
+201686754
+201686753
+201687122
+201687121
+201687120
+201686752
+201686751
+201687119
+201686750
+201686961
+201686749
+201687118
+201687117
+201686960
+201687116
+201686748
+201687115
+201687114
+201686747
+201686746
+201686959
+201686745
+201686744
+201687215
+201686743
+201686742
+201686625
+201687112
+201686741
+201687214
+201687213
+201686740
+201687111
+201686739
+201687110
+201686738
+201686737
+201687109
+201686736
+201686735
+201686734
+201687212
+201686733
+201687108
+201686732
+201686731
+201687107
+201687106
+201686730
+201686729
+201686728
+201686727
+201686726
+201687105
+201686725
+201687104
+201686724
+201686723
+201687103
+201686722
+201687102
+201687211
+201686721
+201687101
+201687100
+201686720
+201687099
+201687098
+201687097
+201686719
+201687096
+201687095
+201687210
+201686718
+201686717
+201687209
+201686716
+201686715
+201687208
+201686714
+201686713
+201686712
+201687264
+201687094
+201687093
+201686710
+201687092
+201686709
+201686708
+201686707
+201687091
+201687090
+201687263
+201686706
+201687262
+201686705
+201686704
+201686703
+201687261
+201687260
+201687089
+201686702
+201686701
+201687088
+201687087
+201687086
+201687085
+201686700
+201686699
+201686698
+201687084
+201687259
+201687083
+201686697
+201686696
+201687258
+201686694
+201686695
+201686693
+201686662
+201687082
+201686661
+201686660
+201686659
+201686658
+201687081
+201687080
+201687079
+201687078
+201686657
+201686656
+201686655
+201687076
+201687257
+201686654
+201687075
+201686653
+201686652
+201686651
+201687074
+201687256
+201687255
+201687073
+201686650
+201687254
+201687072
+201687071
+201686649
+201686648
+201686647
+201687070
+201687069
+201686646
+201687068
+201686645
+201687253
+201687067
+201687066
+201687065
+201686644
+201686643
+201687252
+201687064
+201687063
+201686642
+201687251
+201686641
+201687249
+201687062
+201686640
+201686639
+201687061
+201687060
+201686638
+201686637
+201687248
+201687059
+201687058
+201687057
+201687056
+201687247
+201687054
+201687055
+201686636
+201687053
+201687052
+201686692
+201687246
+201687245
+201687244
+201686691
+201687243
+201687051
+201686690
+201686689
+201686688
+201687050
+201687049
+201686687
+201687048
+201687047
+201687242
+201686685
+201687241
+201686684
+201686683
+201687240
+201687046
+201687239
+201687045
+201687238
+201686869
+201687044
+201687237
+201687236
+201686868
+201687043
+201687042
+201686867
+201686866
+201687235
+201686865
+201687041
+201687040
+201687039
+201687234
+201687233
+201687232
+201687231
+201687230
+201687229
+201687038
+201687037
+201687228
+201687227
+201686864
+201687226
+201687225
+201686863
+201687036
+201686862
+201686861
+201687224
+201687035
+201687034
+201687033
+201687032
+201687223
+201687031
+201687222
+201687221
+201687030
+201687029
+201686860
+201687220
+201687219
+201686859
+201686858
+201686857
+201686626
+201687028
+201686856
+201687027
+201687218
+201686855
+201687026
+201686854
+201687217
+201687025
+201687024
+201687216
+201687023
+201687250
+201686853
+201687022
+201687021
+201687020
+201686852
+201686851
+201686850
+201687019
+201686849
+201687278
+201687018
+201687277
+201687276
+201686848
+201687017
+201686901
+201687275
+201686900
+201687274
+201687273
+201686899
+201686898
+201686897
+201686896
+201687016
+201687015
+201686895
+201686894
+201686893
+201686892
+201686891
+201687013
+201686890
+201687012
+201686889
+201686936
+201687271
+201686935
+201686934
+201687011
+201686933
+201686932
+201686931
+201687010
+201687009
+201686930
+201686929
+201687270
+201686928
+201687269
+201687008
+201686927
+201687007
+201687006
+201686926
+201687005
+201687268
+201687004
+201687267
+201687003
+201686937
+201687002
+201687266
+201687001
+201687000
+201687977
+201687471
+201687976
+201687975
+201687974
+201687973
+201687595
+201687972
+201687971
+201687470
+201687594
+201687593
+201687469
+201687970
+201687969
+201687968
+201687468
+201687967
+201687966
+201687965
+201687467
+201687964
+201687466
+201687963
+201687962
+201687465
+201687464
+201687960
+201687959
+201687958
+201687592
+201687463
+201687957
+201687956
+201687955
+201687954
+201687462
+201687953
+201687952
+201687951
+201687950
+201687461
+201687591
+201687534
+201687460
+201687533
+201687459
+201687949
+201687458
+201687457
+201687948
+201687456
+201687532
+201687455
+201687947
+201687946
+201687945
+201687531
+201687944
+201687943
+201687942
+201687941
+201687454
+201687453
+201687940
+201687939
+201687938
+201687530
+201687452
+201687937
+201687451
+201687450
+201687936
+201687449
+201687935
+201687448
+201687934
+201688219
+201688218
+201687447
+201687529
+201688217
+201687446
+201687445
+201688216
+201687444
+201687443
+201687442
+201688215
+201687441
+201688214
+201688213
+201688212
+201688211
+201687528
+201688210
+201687527
+201687439
+201688209
+201688208
+201688207
+201687438
+201688206
+201687437
+201687436
+201687435
+201688205
+201688204
+201687434
+201688203
+201688202
+201687758
+201687433
+201688201
+201688200
+201687432
+201688199
+201688198
+201688197
+201687757
+201687431
+201688196
+201688195
+201687430
+201688194
+201687429
+201688193
+201687428
+201687756
+201688192
+201688191
+201687427
+201687755
+201688190
+201687426
+201688189
+201687425
+201688188
+201688187
+201687754
+201688186
+201688185
+201688184
+201688183
+201688181
+201688180
+201688179
+201688178
+201688177
+201687424
+201687423
+201688176
+201688175
+201688174
+201688173
+201688172
+201687422
+201688171
+201687421
+201687420
+201687419
+201687418
+201687417
+201688170
+201687522
+201688169
+201688167
+201688166
+201687521
+201688165
+201688164
+201687519
+201687518
+201688163
+201688162
+201687517
+201688161
+201687753
+201687752
+201687751
+201688160
+201687750
+201687749
+201688159
+201688158
+201688157
+201687516
+201687515
+201688154
+201687514
+201687748
+201688153
+201688152
+201688150
+201688149
+201687513
+201687747
+201688148
+201687512
+201687511
+201687746
+201687745
+201688147
+201687526
+201687404
+201688146
+201687744
+201688145
+201687403
+201688144
+201688143
+201687510
+201688142
+201687401
+201688141
+201688140
+201688139
+201688138
+201688137
+201687400
+201687399
+201688136
+201688135
+201687398
+201687397
+201688134
+201687743
+201687509
+201687508
+201688133
+201688132
+201687507
+201688131
+201687506
+201688130
+201687742
+201688129
+201688128
+201687391
+201688127
+201687741
+201687740
+201687739
+201687505
+201688125
+201688124
+201688123
+201687504
+201688122
+201687503
+201687502
+201687501
+201687385
+201687738
+201688121
+201688120
+201687384
+201687383
+201687382
+201688119
+201688118
+201687381
+201687380
+201688117
+201688116
+201687379
+201687378
+201688115
+201687377
+201688114
+201687376
+201687375
+201688113
+201687374
+201688112
+201688111
+201687373
+201687372
+201687371
+201687369
+201688110
+201687368
+201687367
+201687366
+201688109
+201687737
+201687365
+201688108
+201687364
+201687363
+201688107
+201687362
+201687361
+201687360
+201687359
+201688106
+201687358
+201688105
+201687357
+201687356
+201687355
+201687354
+201687353
+201687352
+201688104
+201687351
+201687350
+201688103
+201687349
+201687348
+201687347
+201687346
+201687345
+201687344
+201688102
+201687343
+201688101
+201687342
+201688100
+201687341
+201687340
+201688099
+201688098
+201687339
+201687338
+201687337
+201687336
+201687335
+201687736
+201687735
+201687334
+201687734
+201687333
+201688097
+201687525
+201687332
+201687733
+201688096
+201687331
+201687330
+201687329
+201687328
+201687327
+201688095
+201687326
+201688094
+201687325
+201687324
+201687323
+201687322
+201688093
+201687321
+201687732
+201688092
+201687731
+201687320
+201688091
+201688090
+201687319
+201687318
+201687317
+201687316
+201688089
+201688088
+201687315
+201688087
+201687314
+201687313
+201687312
+201688086
+201687311
+201687310
+201687309
+201687729
+201687728
+201687308
+201687727
+201688085
+201687726
+201687307
+201687306
+201687725
+201688084
+201688083
+201688082
+201687305
+201687304
+201687724
+201687303
+201688081
+201688080
+201688079
+201687302
+201687301
+201688078
+201688077
+201687300
+201687723
+201687299
+201688076
+201688075
+201687722
+201688074
+201687298
+201687297
+201687296
+201687295
+201687294
+201688073
+201687293
+201687292
+201688072
+201688071
+201688069
+201687524
+201688068
+201688067
+201687291
+201687290
+201687289
+201687288
+201688066
+201687720
+201687287
+201688065
+201688064
+201687286
+201687285
+201687719
+201687284
+201687283
+201687282
+201688063
+201687499
+201688062
+201688061
+201688060
+201687498
+201687718
+201687497
+201687717
+201688059
+201687496
+201687495
+201687494
+201688058
+201688057
+201687493
+201687492
+201688056
+201688055
+201688054
+201687491
+201687489
+201687488
+201687716
+201687487
+201687486
+201688053
+201687715
+201688052
+201687485
+201687484
+201688051
+201687483
+201688049
+201687482
+201687481
+201688048
+201687480
+201687479
+201687478
+201688047
+201688046
+201687477
+201687476
+201687475
+201687474
+201687473
+201687472
+201688045
+201687590
+201688044
+201688043
+201687589
+201687714
+201688042
+201687713
+201687712
+201687588
+201687587
+201688039
+201687711
+201687586
+201688040
+201687585
+201688041
+201687584
+201687710
+201687583
+201687582
+201687581
+201687580
+201687579
+201687578
+201688038
+201688037
+201688036
+201687577
+201687709
+201687576
+201688035
+201687575
+201687574
+201687708
+201687573
+201687572
+201687571
+201688033
+201687570
+201688032
+201687569
+201688031
+201688030
+201687568
+201687707
+201687706
+201688029
+201688028
+201687705
+201687567
+201687566
+201687565
+201688027
+201687564
+201688026
+201687563
+201688025
+201687704
+201687703
+201687562
+201687561
+201687560
+201687559
+201687702
+201688024
+201687558
+201687557
+201688023
+201687701
+201688022
+201688021
+201687700
+201687556
+201687864
+201687699
+201687555
+201688020
+201687698
+201687554
+201687553
+201687697
+201688019
+201687552
+201687696
+201687551
+201688018
+201687550
+201687281
+201687549
+201687548
+201687695
+201687547
+201687546
+201687545
+201687694
+201688017
+201687544
+201688016
+201687543
+201687693
+201687692
+201688015
+201687280
+201687691
+201687690
+201687689
+201687542
+201687541
+201687540
+201688014
+201687539
+201687688
+201687538
+201688013
+201687500
+201688618
+201688800
+201688674
+201688673
+201688286
+201688336
+201688479
+201688292
+201688486
+201688294
+201688293
+201688802
+201688492
+201688284
+201688490
+201688672
+201688309
+201688491
+201688307
+201688012
+201688628
+201688619
+201688011
+201688807
+201688299
+201688339
+201688493
+201688283
+201688010
+201688282
+201688482
+201688281
+201688009
+201687932
+201688338
+201688634
+201688008
+201688801
+201688287
+201688487
+201688007
+201688671
+201688280
+201688279
+201688006
+201688670
+201688669
+201688278
+201688277
+201688620
+201688483
+201688005
+201688668
+201688276
+201688667
+201688302
+201688291
+201688275
+201688274
+201688273
+201688666
+201688004
+201688272
+201688271
+201688665
+201688290
+201688334
+201688288
+201688495
+201688664
+201688663
+201688003
+201688662
+201688002
+201688001
+201688808
+201688661
+201688660
+201688000
+201688236
+201688269
+201688659
+201688235
+201688234
+201688658
+201688629
+201688621
+201688268
+201688267
+201688266
+201688265
+201688657
+201688311
+201688233
+201688232
+201688624
+201688485
+201688656
+201688231
+201688655
+201688264
+201688263
+201688297
+201688230
+201688654
+201688295
+201688262
+201688261
+201688229
+201688296
+201688228
+201688227
+201688489
+201688653
+201688652
+201688806
+201688259
+201688625
+201688333
+201688630
+201688484
+201688651
+201688650
+201688258
+201688632
+201688226
+201688257
+201688256
+201688499
+201688255
+201688649
+201688648
+201688254
+201688225
+201688253
+201688252
+201688251
+201688250
+201688224
+201688249
+201688289
+201688494
+201688223
+201688805
+201688247
+201688312
+201688248
+201688647
+201688246
+201688222
+201688314
+201688241
+201688221
+201688631
+201688245
+201688244
+201688243
+201688242
+201688220
+201688626
+201688308
+201688627
+201688240
+201688332
+201688239
+201688331
+201688646
+201688238
+201688615
+201688330
+201688496
+201688313
+201688237
+201688329
+201688328
+201688361
+201687599
+201688360
+201688645
+201688480
+201688358
+201687775
+201688304
+201688357
+201688300
+201688644
+201688643
+201688327
+201688488
+201688356
+201688617
+201688355
+201688354
+201688353
+201688305
+201688642
+201688310
+201687920
+201688326
+201688325
+201688352
+201688349
+201688348
+201688803
+201688641
+201688640
+201688324
+201688323
+201688351
+201688639
+201688322
+201688321
+201688638
+201688350
+201688637
+201688804
+201688347
+201688636
+201688798
+201688633
+201688497
+201688346
+201688345
+201688320
+201688616
+201688344
+201688623
+201688613
+201688319
+201688318
+201688337
+201688343
+201688301
+201688317
+201688342
+201688341
+201688316
+201688622
+201688635
+201688498
+201688340
+201688303
+201688315
+201688335
+201688478
+201688374
+201688373
+201688508
+201688477
+201688691
+201688689
+201688549
+201688528
+201688476
+201688392
+201688527
+201688543
+201688531
+201688530
+201688372
+201688529
+201688381
+201688475
+201687908
+201688504
+201688380
+201688474
+201688507
+201688506
+201688505
+201688371
+201688473
+201688503
+201688540
+201688389
+201688385
+201688383
+201688472
+201688502
+201688501
+201688685
+201688384
+201688471
+201688512
+201688755
+201688500
+201688754
+201688753
+201688370
+201688752
+201688751
+201688526
+201688378
+201688401
+201688750
+201688705
+201688369
+201688368
+201688749
+201688551
+201688367
+201688470
+201688366
+201688550
+201688365
+201688387
+201688699
+201688748
+201688364
+201688747
+201688746
+201688388
+201688391
+201688745
+201688363
+201688362
+201688744
+201688612
+201688469
+201688680
+201688468
+201688516
+201688467
+201688402
+201688510
+201688610
+201688683
+201688386
+201688743
+201688466
+201688521
+201688702
+201688546
+201688545
+201688465
+201688706
+201688742
+201688608
+201688464
+201688741
+201688609
+201688390
+201688607
+201688740
+201688698
+201688606
+201688605
+201688604
+201688693
+201688532
+201688412
+201688603
+201688739
+201688463
+201688533
+201688738
+201688602
+201688737
+201688601
+201688462
+201688600
+201688518
+201688679
+201688547
+201688509
+201688598
+201688393
+201688736
+201688522
+201688459
+201688735
+201688537
+201688597
+201688461
+201688460
+201688734
+201688394
+201688596
+201688595
+201688594
+201688593
+201688513
+201688592
+201688591
+201688399
+201688675
+201688458
+201687596
+201688590
+201688589
+201688535
+201688588
+201687907
+201688733
+201688587
+201688457
+201688732
+201688586
+201687597
+201688536
+201688682
+201688692
+201688731
+201688730
+201688729
+201688456
+201688455
+201688728
+201688548
+201688727
+201688704
+201688454
+201688453
+201688452
+201688451
+201688539
+201688585
+201688538
+201688584
+201688450
+201688449
+201688411
+201688448
+201688726
+201688583
+201688375
+201688447
+201688446
+201688582
+201688445
+201688443
+201688725
+201688697
+201688581
+201688580
+201688579
+201688578
+201688444
+201688577
+201688576
+201688534
+201688572
+201688703
+201688442
+201688523
+201688575
+201688724
+201688574
+201688441
+201688440
+201688573
+201688723
+201688439
+201688438
+201688722
+201688694
+201688571
+201688511
+201688569
+201688396
+201688570
+201688437
+201688436
+201688688
+201688435
+201688434
+201688721
+201688433
+201688568
+201688720
+201688432
+201688700
+201688431
+201688719
+201688718
+201688430
+201688429
+201688428
+201688717
+201688398
+201688520
+201688400
+201688567
+201688410
+201688716
+201688715
+201688427
+201688407
+201688517
+201688565
+201688519
+201688678
+201688426
+201688425
+201688714
+201688566
+201688424
+201688564
+201688701
+201688423
+201688422
+201688713
+201688421
+201688696
+201688409
+201688563
+201688676
+201688542
+201688562
+201688712
+201688515
+201688524
+201688420
+201688419
+201688541
+201688514
+201688561
+201688560
+201688690
+201688559
+201688418
+201688408
+201688404
+201688558
+201688403
+201688711
+201688677
+201688525
+201688405
+201688710
+201688557
+201688417
+201688681
+201688416
+201688555
+201688687
+201688556
+201688695
+201688686
+201688554
+201688709
+201688415
+201688552
+201688553
+201688414
+201688413
+201688406
+201688708
+201688684
+201688544
+201688707
+201688376
+201688377
+201689311
+201689309
+201689308
+201688902
+201688951
+201688950
+201689307
+201689306
+201688949
+201689305
+201689303
+201688900
+201689302
+201689301
+201689300
+201689299
+201688948
+201689298
+201689296
+201688946
+201689295
+201688944
+201689294
+201689293
+201689292
+201688899
+201689291
+201689290
+201689289
+201689288
+201688943
+201688941
+201689287
+201689286
+201689285
+201689284
+201689283
+201689282
+201688940
+201688939
+201689281
+201688938
+201689279
+201689278
+201688937
+201688936
+201688935
+201689277
+201689276
+201689275
+201689274
+201688934
+201689273
+201688933
+201689272
+201688932
+201688931
+201688930
+201689271
+201689270
+201688929
+201688928
+201688927
+201688898
+201688926
+201688924
+201688923
+201689269
+201688922
+201688921
+201688920
+201688919
+201688918
+201688917
+201688916
+201689268
+201688897
+201688957
+201689267
+201689265
+201689264
+201689263
+201688956
+201688914
+201688913
+201688912
+201688911
+201689261
+201688910
+201688909
+201689260
+201688955
+201689259
+201688908
+201689258
+201688907
+201689257
+201689256
+201688906
+201689255
+201689253
+201689252
+201689251
+201689250
+201688905
+201689499
+201688904
+201688903
+201689498
+201688895
+201689497
+201689496
+201689495
+201689494
+201689493
+201689492
+201689491
+201689490
+201689489
+201688896
+201688893
+201688774
+201689488
+201689486
+201688892
+201689090
+201688891
+201689485
+201689089
+201689484
+201688890
+201689483
+201689482
+201689088
+201689087
+201689480
+201689479
+201689478
+201689477
+201689476
+201688889
+201689474
+201689473
+201689084
+201688888
+201689472
+201689471
+201689470
+201689469
+201689083
+201689468
+201689082
+201689466
+201689465
+201689079
+201689078
+201689077
+201689463
+201689462
+201689076
+201689461
+201689075
+201688886
+201689074
+201689460
+201689459
+201689073
+201689458
+201689457
+201689456
+201689072
+201689455
+201689071
+201688885
+201689070
+201689454
+201689453
+201688884
+201688883
+201689452
+201688882
+201689451
+201689450
+201688881
+201689069
+201689068
+201689449
+201689448
+201689447
+201689067
+201689445
+201688879
+201689444
+201689066
+201689443
+201689442
+201688878
+201689064
+201689441
+201689440
+201689439
+201688877
+201689063
+201689438
+201688876
+201689062
+201689437
+201689436
+201689060
+201689435
+201689434
+201688875
+201689433
+201689432
+201689431
+201688874
+201689429
+201689428
+201689056
+201688872
+201689427
+201688871
+201689055
+201689426
+201689054
+201688870
+201689053
+201689424
+201689423
+201689422
+201689052
+201689421
+201689051
+201689420
+201689050
+201689418
+201689415
+201689414
+201688867
+201689047
+201689413
+201689412
+201689411
+201689410
+201689409
+201689046
+201689408
+201689045
+201689044
+201689043
+201689042
+201689041
+201689040
+201689039
+201689038
+201689406
+201689037
+201689036
+201689404
+201689403
+201689035
+201689034
+201689032
+201689401
+201689400
+201689031
+201689030
+201689029
+201689028
+201689027
+201689397
+201689026
+201689025
+201688865
+201689396
+201689024
+201689022
+201689021
+201689020
+201689395
+201689393
+201689392
+201689391
+201689017
+201689388
+201688863
+201689387
+201689016
+201689386
+201689015
+201689014
+201689384
+201689383
+201689013
+201689012
+201689382
+201689011
+201689010
+201689381
+201688862
+201689009
+201688861
+201689380
+201689008
+201689379
+201689378
+201689376
+201689005
+201688860
+201689004
+201689373
+201689003
+201689001
+201689000
+201689372
+201688858
+201689168
+201689371
+201689167
+201688857
+201689370
+201689369
+201689367
+201688856
+201689366
+201689365
+201689364
+201688855
+201688854
+201688853
+201688852
+201689361
+201689165
+201689164
+201688851
+201689360
+201689163
+201689162
+201689160
+201689159
+201689359
+201689158
+201688850
+201689157
+201689156
+201689155
+201689154
+201689153
+201689357
+201689152
+201689151
+201689150
+201689149
+201689355
+201689354
+201689148
+201689146
+201689145
+201689144
+201688849
+201689353
+201689143
+201689352
+201689142
+201689141
+201688797
+201689351
+201688796
+201689140
+201689139
+201689138
+201689137
+201689136
+201689614
+201689135
+201689613
+201689134
+201689612
+201689133
+201689611
+201689130
+201688795
+201689129
+201689127
+201689126
+201689125
+201689124
+201689607
+201689123
+201689122
+201689121
+201689120
+201689119
+201689605
+201689118
+201689117
+201689604
+201689116
+201689115
+201688793
+201689114
+201689603
+201689113
+201689602
+201689112
+201689601
+201689600
+201689111
+201689110
+201689599
+201689598
+201689108
+201689107
+201689597
+201689106
+201689105
+201688792
+201689104
+201689594
+201689593
+201689592
+201689103
+201689102
+201689590
+201689589
+201689588
+201689101
+201689587
+201688791
+201689100
+201689099
+201689098
+201689097
+201689586
+201689096
+201689095
+201689584
+201689094
+201689093
+201689583
+201688789
+201689582
+201689581
+201689091
+201689248
+201689579
+201688788
+201689247
+201689578
+201689246
+201689245
+201688787
+201689244
+201689577
+201689243
+201689576
+201689242
+201689575
+201689241
+201689574
+201689240
+201689239
+201689238
+201689237
+201689573
+201689572
+201688786
+201689571
+201689570
+201689236
+201688785
+201689569
+201689234
+201689568
+201689233
+201689567
+201689232
+201689566
+201689231
+201689565
+201688784
+201689563
+201689562
+201688783
+201689230
+201689561
+201689229
+201689560
+201689558
+201689557
+201689228
+201688781
+201688780
+201689556
+201689227
+201688778
+201689553
+201688777
+201689552
+201689551
+201689226
+201689225
+201688954
+201689549
+201689548
+201689224
+201689547
+201689546
+201689545
+201689544
+201689543
+201689542
+201689541
+201689221
+201689540
+201689539
+201689219
+201688952
+201689218
+201689538
+201689537
+201689217
+201688773
+201688772
+201688771
+201689536
+201689535
+201689534
+201689532
+201689531
+201689530
+201688770
+201688769
+201689529
+201689528
+201689527
+201689213
+201689525
+201689524
+201689523
+201689211
+201689210
+201689522
+201688768
+201689209
+201689520
+201689519
+201689518
+201688767
+201689207
+201689206
+201689204
+201689203
+201689202
+201689515
+201688765
+201689514
+201689199
+201689513
+201689512
+201689509
+201689507
+201689197
+201689505
+201689196
+201688763
+201688762
+201688761
+201689195
+201689194
+201688760
+201689503
+201689191
+201689190
+201689502
+201688759
+201689500
+201688758
+201688757
+201689188
+201689681
+201689678
+201689677
+201689630
+201688756
+201689186
+201689185
+201689674
+201689673
+201689184
+201688998
+201688997
+201689183
+201688996
+201689182
+201688995
+201688993
+201688992
+201689668
+201689667
+201689181
+201688991
+201688990
+201688989
+201688988
+201689180
+201689179
+201689178
+201689176
+201689665
+201688987
+201689664
+201688986
+201688985
+201688984
+201689663
+201689175
+201688983
+201689174
+201688982
+201689173
+201689172
+201689170
+201688981
+201689350
+201689349
+201688980
+201689348
+201689659
+201688978
+201689658
+201689657
+201689347
+201689346
+201689656
+201689345
+201689344
+201689343
+201689341
+201689653
+201689340
+201689339
+201689338
+201689337
+201688976
+201688975
+201688974
+201689335
+201688973
+201688972
+201689334
+201688971
+201689333
+201689332
+201689651
+201689650
+201689331
+201689649
+201688970
+201689647
+201689330
+201689646
+201689329
+201689645
+201689328
+201688969
+201688968
+201689643
+201688967
+201689642
+201689641
+201689326
+201689325
+201689324
+201688966
+201688965
+201689640
+201689639
+201689638
+201689320
+201688964
+201689637
+201688963
+201689319
+201688962
+201689318
+201689317
+201688961
+201689316
+201688960
+201689315
+201688959
+201688958
+201689634
+201689633
+201689632
+201689313
+201689312
+201689789
+201690156
+201689788
+201690155
+201690153
+201689787
+201689896
+201689786
+201689873
+201689894
+201689893
+201690151
+201690150
+201689872
+201689871
+201690147
+201689890
+201690146
+201690145
+201690144
+201690143
+201690142
+201689889
+201690141
+201689870
+201689869
+201690140
+201689886
+201690138
+201690137
+201690136
+201690135
+201690134
+201689885
+201690133
+201690132
+201690131
+201689782
+201689881
+201690130
+201690129
+201689781
+201689866
+201689865
+201690128
+201689780
+201689779
+201690127
+201689778
+201690126
+201690320
+201690319
+201690318
+201690317
+201689777
+201690316
+201689877
+201690314
+201690313
+201690312
+201690311
+201689776
+201690309
+201690310
+201689863
+201689874
+201690308
+201689773
+201689862
+201689772
+201689860
+201690306
+201690305
+201690304
+201689770
+201690303
+201689858
+201690302
+201690301
+201690300
+201690299
+201689857
+201690298
+201690297
+201690296
+201690295
+201689855
+201690294
+201689854
+201689853
+201690291
+201689852
+201689851
+201689850
+201690289
+201690288
+201690286
+201690285
+201690284
+201689849
+201690283
+201690282
+201690281
+201690280
+201689848
+201689847
+201690279
+201690278
+201689846
+201689769
+201690277
+201689845
+201689844
+201690276
+201689768
+201690275
+201689842
+201689841
+201689840
+201689837
+201689838
+201690274
+201689766
+201690273
+201690272
+201690271
+201689836
+201689835
+201690270
+201689765
+201690017
+201690269
+201690268
+201689839
+201690267
+201690266
+201690265
+201689832
+201689763
+201689831
+201690264
+201689762
+201689761
+201690261
+201690260
+201690259
+201690258
+201690257
+201689830
+201689829
+201690256
+201689828
+201689827
+201689826
+201690255
+201689825
+201689824
+201689823
+201690253
+201690252
+201690251
+201689822
+201689821
+201689820
+201689758
+201690250
+201689819
+201690249
+201689818
+201690245
+201689817
+201689756
+201689816
+201689814
+201689813
+201690243
+201689812
+201689811
+201690242
+201690241
+201690240
+201689754
+201689809
+201689808
+201689807
+201690239
+201689806
+201690237
+201689805
+201689751
+201690235
+201689804
+201689803
+201689802
+201690233
+201689801
+201690231
+201690229
+201689750
+201690228
+201690226
+201690224
+201689748
+201690406
+201689799
+201690221
+201690220
+201690219
+201689796
+201690218
+201689795
+201689794
+201690217
+201689793
+201690216
+201690215
+201689792
+201689747
+201689746
+201690214
+201689791
+201690212
+201690211
+201689790
+201689999
+201690210
+201690209
+201690207
+201689998
+201690206
+201690205
+201689744
+201690204
+201690203
+201689742
+201690202
+201689741
+201690201
+201689995
+201689994
+201690199
+201689992
+201689991
+201689990
+201689988
+201690197
+201690196
+201690195
+201690194
+201690193
+201690192
+201690190
+201689986
+201690188
+201689739
+201689985
+201689738
+201690187
+201690186
+201689737
+201690185
+201690184
+201689982
+201689980
+201690182
+201690181
+201690180
+201690179
+201689977
+201690177
+201690386
+201689976
+201690385
+201689975
+201689735
+201689974
+201690382
+201689973
+201690381
+201689971
+201689734
+201689970
+201689733
+201689968
+201690378
+201689967
+201690376
+201690375
+201690374
+201689965
+201689964
+201690369
+201690368
+201689963
+201690367
+201689962
+201690366
+201690365
+201689961
+201689960
+201689959
+201689958
+201690361
+201689957
+201690359
+201690358
+201689956
+201689955
+201689954
+201690355
+201689953
+201689952
+201689950
+201689949
+201689731
+201689948
+201689947
+201689946
+201689945
+201689944
+201690354
+201689943
+201689942
+201689941
+201689940
+201689939
+201690353
+201690352
+201689937
+201689730
+201689936
+201690351
+201689935
+201690350
+201689934
+201689933
+201689932
+201690349
+201689930
+201689929
+201689729
+201689928
+201689905
+201689904
+201689902
+201689901
+201689900
+201689899
+201689898
+201689897
+201689895
+201689892
+201690347
+201689728
+201689891
+201689727
+201689888
+201689887
+201689884
+201689883
+201689880
+201689879
+201689876
+201689725
+201690125
+201690124
+201690123
+201690122
+201690121
+201690344
+201690118
+201690117
+201690341
+201690340
+201690339
+201690338
+201690111
+201690337
+201690109
+201690108
+201690106
+201690335
+201690105
+201690334
+201690333
+201689722
+201690104
+201690331
+201690330
+201690102
+201690329
+201690101
+201690100
+201690099
+201690098
+201690096
+201690095
+201689720
+201690325
+201690094
+201689719
+201690093
+201690092
+201690091
+201690090
+201690322
+201690089
+201689718
+201690443
+201690086
+201690084
+201690441
+201690440
+201690439
+201690438
+201690083
+201690081
+201690437
+201689717
+201690078
+201690076
+201690075
+201690074
+201690433
+201690431
+201690073
+201690430
+201690429
+201690072
+201690069
+201690428
+201690427
+201690068
+201690426
+201690424
+201689715
+201690067
+201690066
+201690421
+201690065
+201689714
+201690064
+201690063
+201690420
+201690419
+201690061
+201690060
+201690418
+201689712
+201689711
+201689710
+201689709
+201690417
+201690415
+201690059
+201689708
+201690413
+201690058
+201689706
+201690410
+201690409
+201690054
+201689705
+201690053
+201689704
+201690408
+201689703
+201690052
+201690051
+201690050
+201689702
+201690049
+201689701
+201689700
+201690468
+201690048
+201690047
+201689699
+201690467
+201689698
+201690046
+201690405
+201689697
+201690404
+201690045
+201690044
+201690403
+201690043
+201689696
+201689695
+201689694
+201690402
+201690042
+201689693
+201690401
+201689692
+201689691
+201690400
+201689690
+201690399
+201690398
+201689688
+201690038
+201690036
+201690394
+201689687
+201689686
+201690035
+201690033
+201689684
+201689683
+201689629
+201690032
+201690390
+201689627
+201690031
+201689625
+201690028
+201690387
+201689623
+201690499
+201690026
+201689622
+201689620
+201690025
+201690024
+201690023
+201689619
+201690022
+201690497
+201689618
+201690021
+201690020
+201689617
+201689927
+201690495
+201689926
+201690494
+201690019
+201690492
+201690018
+201689834
+201690491
+201689833
+201690490
+201690489
+201690014
+201689924
+201690013
+201689923
+201690488
+201690011
+201690010
+201689922
+201690009
+201690008
+201690486
+201690007
+201690006
+201690485
+201690004
+201690003
+201689920
+201689919
+201689918
+201689916
+201690482
+201689915
+201690481
+201690176
+201689914
+201690175
+201690479
+201690174
+201690173
+201690478
+201690172
+201690171
+201690170
+201690168
+201689913
+201689912
+201690166
+201689911
+201690164
+201689910
+201690475
+201690163
+201689909
+201690162
+201690474
+201690161
+201690473
+201690472
+201690160
+201690159
+201689908
+201689907
+201690471
+201690470
+201690469
+201690560
+201690558
+201690223
+201690590
+201690222
+201690466
+201690556
+201690465
+201690555
+201690462
+201690461
+201690551
+201690550
+201690457
+201690456
+201690455
+201690453
+201690452
+201690549
+201690451
+201690548
+201690450
+201690449
+201690448
+201690447
+201690589
+201690546
+201690446
+201690445
+201690544
+201690637
+201690636
+201690543
+201690587
+201690542
+201690541
+201690586
+201690634
+201690538
+201690537
+201690633
+201690632
+201690536
+201690585
+201690535
+201690584
+201690583
+201690533
+201690631
+201690630
+201690530
+201690629
+201690628
+201690527
+201690582
+201690626
+201690625
+201690624
+201690581
+201690580
+201690526
+201690621
+201690620
+201690619
+201690579
+201690618
+201690617
+201690520
+201690576
+201690519
+201690518
+201690516
+201690513
+201690575
+201690512
+201690615
+201690574
+201690573
+201690572
+201690509
+201690508
+201690507
+201690613
+201690612
+201690611
+201690610
+201690571
+201690609
+201690608
+201690605
+201690569
+201690568
+201690502
+201690567
+201690566
+201690604
+201690603
+201690602
+201690601
+201690600
+201690599
+201690565
+201690598
+201690564
+201690500
+201690727
+201690726
+201690597
+201690725
+201690596
+201690724
+201690723
+201690595
+201690722
+201690721
+201690563
+201690594
+201690719
+201690718
+201690562
+201690593
+201690561
+201690592
+201690715
+201690799
+201690798
+201690655
+201690651
+201690797
+201690650
+201690713
+201690649
+201690648
+201690647
+201690646
+201690645
+201690644
+201690712
+201690711
+201690643
+201690642
+201690641
+201690640
+201690796
+201690795
+201690710
+201690639
+201690708
+201690788
+201690787
+201690706
+201690794
+201690786
+201690785
+201690702
+201690701
+201690793
+201690700
+201690792
+201690784
+201690699
+201690783
+201690698
+201690697
+201690695
+201690782
+201690780
+201690790
+201690694
+201690789
+201690775
+201690692
+201690691
+201690690
+201690896
+201690689
+201690688
+201690774
+201690773
+201690772
+201690897
+201690898
+201690999
+201690770
+201690769
+201690768
+201690684
+201690682
+201690998
+201690997
+201690681
+201690680
+201690996
+201690766
+201690679
+201690678
+201690677
+201690676
+201690675
+201690674
+201690765
+201690673
+201690763
+201690761
+201690994
+201690760
+201690759
+201690758
+201690671
+201690668
+201690667
+201690755
+201690993
+201690992
+201690666
+201690665
+201690753
+201690752
+201690750
+201690664
+201690748
+201690747
+201690746
+201690991
+201690990
+201690989
+201690662
+201690661
+201690660
+201690659
+201690745
+201690842
+201690658
+201690988
+201690987
+201690841
+201690986
+201690840
+201690741
+201690985
+201690984
+201690839
+201690739
+201690738
+201690982
+201690981
+201690736
+201690980
+201690838
+201690979
+201690977
+201690735
+201690734
+201690733
+201690974
+201690973
+201690837
+201690972
+201690971
+201690970
+201690730
+201690836
+201690969
+201690968
+201690965
+201690834
+201690964
+201690963
+201690961
+201690833
+201690728
+201690742
+201690960
+201690959
+201690958
+201690743
+201690957
+201690956
+201690744
+201690955
+201690954
+201690953
+201690909
+201690908
+201690952
+201690907
+201690951
+201690831
+201690906
+201690905
+201690950
+201690904
+201690949
+201690829
+201690828
+201690947
+201690946
+201690945
+201690944
+201690903
+201690941
+201690940
+201690939
+201690827
+201690938
+201690937
+201690902
+201690936
+201690825
+201690935
+201690824
+201690899
+201690934
+201690845
+201690844
+201690823
+201690895
+201690933
+201690932
+201690931
+201690930
+201690929
+201690928
+201690894
+201690927
+201690926
+201690893
+201690925
+201690892
+201690891
+201690888
+201690924
+201690887
+201690923
+201690922
+201690886
+201690885
+201690920
+201690884
+201690919
+201690822
+201690918
+201690917
+201690821
+201690820
+201690881
+201690915
+201690914
+201690913
+201690876
+201690912
+201690819
+201690875
+201690873
+201690911
+201690910
+201691128
+201690818
+201690817
+201691127
+201691126
+201690871
+201691125
+201691124
+201690816
+201690815
+201691123
+201690869
+201691120
+201691119
+201690814
+201691118
+201691116
+201690867
+201690813
+201690812
+201690865
+201691115
+201691114
+201690864
+201690863
+201690811
+201691112
+201690810
+201690809
+201690862
+201691111
+201691110
+201690861
+201690860
+201690859
+201690808
+201690858
+201691108
+201691107
+201690857
+201691106
+201691105
+201690855
+201690854
+201690807
+201690852
+201691103
+201691102
+201691101
+201690806
+201691100
+201690851
+201690805
+201690804
+201690850
+201691098
+201690803
+201690802
+201691097
+201690801
+201690847
+201690846
+201691555
+201691275
+201691274
+201691458
+201691485
+201691484
+201691457
+201691700
+201691456
+201691273
+201691272
+201691271
+201691367
+201691270
+201691269
+201691711
+201691268
+201691690
+201691267
+201691455
+201691454
+201691266
+201691265
+201691716
+201691453
+201691491
+201691452
+201691264
+201691523
+201691522
+201691263
+201691529
+201691692
+201691262
+201691704
+201691261
+201691713
+201691526
+201691465
+201691451
+201691533
+201691378
+201691462
+201691260
+201691259
+201691371
+201691258
+201691257
+201691437
+201691373
+201691521
+201691693
+201691436
+201691450
+201691691
+201691435
+201691489
+201691434
+201691498
+201691433
+201691488
+201691520
+201691703
+201691697
+201691546
+201691449
+201691708
+201691369
+201691432
+201691431
+201691539
+201691430
+201691366
+201691698
+201691429
+201691376
+201691448
+201691447
+201691459
+201691695
+201691428
+201691427
+201691426
+201691519
+201691518
+201691425
+201691542
+201691424
+201691517
+201691423
+201691554
+201691422
+201691446
+201691445
+201691707
+201691486
+201691444
+201691525
+201691419
+201691443
+201691421
+201691516
+201691515
+201691420
+201691706
+201691492
+201691487
+201691479
+201691418
+201691417
+201691499
+201691718
+201691514
+201691513
+201691438
+201691416
+201691595
+201691415
+201691490
+201691481
+201691442
+201691414
+201691441
+201691413
+201691440
+201691464
+201691372
+201691594
+201691412
+201691512
+201691439
+201691411
+201691468
+201691511
+201691410
+201691538
+201691409
+201691408
+201691471
+201691593
+201691510
+201691592
+201691407
+201691406
+201691509
+201691544
+201691709
+201691590
+201691532
+201691591
+201691405
+201691404
+201691403
+201691370
+201691531
+201691508
+201691402
+201691401
+201691400
+201691482
+201691589
+201691588
+201691399
+201691587
+201691586
+201691694
+201691702
+201691585
+201691584
+201691398
+201691689
+201691461
+201691583
+201691507
+201691551
+201691396
+201691556
+201691506
+201691379
+201691395
+201691543
+201691466
+201691550
+201691505
+201691504
+201691527
+201691503
+201691502
+201691394
+201691501
+201691393
+201691497
+201691375
+201691582
+201691392
+201691581
+201691714
+201691580
+201691391
+201691390
+201691541
+201691389
+201691368
+201691575
+201691500
+201691388
+201691724
+201691723
+201691579
+201691715
+201691701
+201691387
+201691578
+201691577
+201691386
+201691722
+201691385
+201691576
+201691721
+201691696
+201691384
+201691574
+201691573
+201691720
+201691528
+201691572
+201691687
+201691601
+201691219
+201691598
+201691220
+201691290
+201691208
+201691184
+201691183
+201691296
+201691686
+201691228
+201691182
+201691615
+201691685
+201691096
+201691600
+201691181
+201691180
+201691179
+201691178
+201691095
+201691683
+201691177
+201691831
+201691324
+201691682
+201691094
+201691313
+201691093
+201691092
+201691300
+201691230
+201691243
+201691681
+201691176
+201691091
+201691175
+201691003
+201691333
+201691195
+201691680
+201691832
+201691174
+201691245
+201691679
+201691830
+201691221
+201691090
+201691173
+201691616
+201691678
+201691288
+201691599
+201691089
+201691172
+201691088
+201691171
+201691248
+201691170
+201691169
+201691244
+201691336
+201691625
+201691209
+201691677
+201691280
+201691087
+201691604
+201691231
+201691617
+201691086
+201691301
+201691302
+201691676
+201691085
+201691675
+201691084
+201691083
+201691603
+201691674
+201691168
+201691082
+201691673
+201691297
+201691189
+201691623
+201691167
+201691672
+201691081
+201691080
+201691605
+201691079
+201691078
+201691166
+201691077
+201691624
+201691007
+201691611
+201691076
+201691165
+201691607
+201691075
+201691671
+201691164
+201691162
+201691161
+201691074
+201691218
+201691159
+201691670
+201691073
+201691072
+201691071
+201691160
+201691669
+201691070
+201691277
+201691829
+201691158
+201691210
+201691069
+201691284
+201691223
+201691323
+201691597
+201691157
+201691292
+201691068
+201691239
+201691156
+201691006
+201691602
+201691294
+201691155
+201691325
+201691291
+201691668
+201691238
+201691067
+201691154
+201691153
+201691667
+201691012
+201691307
+201691666
+201691619
+201691312
+201691665
+201691293
+201691152
+201691151
+201691285
+201691226
+201691066
+201691065
+201691064
+201691610
+201691664
+201691609
+201691062
+201691295
+201691061
+201691663
+201691150
+201691227
+201691060
+201691149
+201691148
+201691059
+201691214
+201691058
+201691057
+201691338
+201691143
+201691662
+201691661
+201691056
+201691241
+201691145
+201691144
+201691207
+201691055
+201691054
+201691658
+201691279
+201691660
+201691052
+201691659
+201691657
+201691235
+201691234
+201691044
+201691655
+201691287
+201691051
+201691050
+201691049
+201691327
+201691048
+201691047
+201691142
+201691656
+201691045
+201691185
+201691646
+201691242
+201691654
+201691043
+201691042
+201691281
+201691041
+201691141
+201691653
+201691319
+201691652
+201691651
+201691039
+201691650
+201691140
+201691038
+201691037
+201691649
+201691211
+201691186
+201691648
+201691139
+201691138
+201691647
+201691036
+201691035
+201691645
+201691644
+201691137
+201691034
+201691246
+201691136
+201691033
+201691606
+201691135
+201691204
+201691321
+201691134
+201691032
+201691643
+201691133
+201691031
+201691030
+201691029
+201691620
+201691310
+201691304
+201691132
+201691255
+201691131
+201691642
+201691028
+201691641
+201691005
+201691640
+201691326
+201691027
+201691026
+201691282
+201691237
+201691002
+201691639
+201691365
+201691130
+201691025
+201691129
+201691233
+201691622
+201691024
+201691023
+201691022
+201691021
+201691020
+201691019
+201691362
+201691361
+201691364
+201691638
+201691637
+201691363
+201691018
+201691188
+201691316
+201691194
+201691618
+201691636
+201691192
+201691276
+201691017
+201691635
+201691634
+201691360
+201691633
+201691357
+201691596
+201691359
+201691358
+201691016
+201691632
+201691202
+201691631
+201691355
+201691828
+201691356
+201691015
+201691254
+201692348
+201691967
+201691966
+201691882
+201692228
+201691965
+201692229
+201691964
+201691827
+201691871
+201691875
+201691963
+201691826
+201691872
+201692166
+201691876
+201691873
+201692172
+201691825
+201691824
+201691834
+201691823
+201692226
+201692137
+201692328
+201692138
+201692225
+201692136
+201692135
+201692224
+201691833
+201692223
+201692275
+201691822
+201692269
+201692222
+201691962
+201692274
+201692271
+201692221
+201692270
+201692369
+201692272
+201691961
+201692273
+201691960
+201692268
+201691959
+201692267
+201691896
+201692220
+201691821
+201691820
+201692265
+201692264
+201692171
+201691997
+201691958
+201692242
+201692379
+201691998
+201691819
+201692356
+201691957
+201692266
+201692219
+201692337
+201691984
+201692218
+201692217
+201692349
+201692216
+201691999
+201692215
+201692214
+201692364
+201691917
+201692213
+201691869
+201691818
+201691956
+201692347
+201691955
+201691994
+201691923
+201691954
+201692212
+201692262
+201691817
+201691816
+201691993
+201691996
+201692384
+201691814
+201692263
+201691891
+201692241
+201691953
+201692230
+201691910
+201691813
+201691812
+201691811
+201691810
+201691809
+201691808
+201692165
+201692249
+201692151
+201691952
+201692147
+201691951
+201692178
+201691950
+201691838
+201692211
+201691949
+201691807
+201692209
+201691946
+201691864
+201691948
+201692210
+201691947
+201692248
+201692360
+201692007
+201691972
+201691806
+201691893
+201691915
+201691805
+201692043
+201691945
+201692325
+201692355
+201692207
+201692340
+201691839
+201692208
+201691804
+201691803
+201692150
+201692013
+201691944
+201692152
+201691802
+201691943
+201692206
+201692148
+201691979
+201692149
+201691801
+201692339
+201692232
+201691862
+201691942
+201691941
+201692335
+201692133
+201692143
+201692134
+201691800
+201691799
+201691798
+201692205
+201691863
+201692132
+201692131
+201692144
+201692338
+201691978
+201692130
+201691895
+201692163
+201692145
+201691859
+201691843
+201692141
+201692129
+201692204
+201692128
+201692127
+201692146
+201692203
+201691797
+201692361
+201692202
+201692239
+201691796
+201691837
+201691925
+201692201
+201692333
+201691903
+201692126
+201692162
+201692125
+201692142
+201692124
+201691921
+201692123
+201692140
+201692200
+201691858
+201692353
+201692139
+201691970
+201692373
+201691905
+201691795
+201692354
+201691835
+201691794
+201692375
+201691861
+201692374
+201692122
+201691860
+201691981
+201691926
+201692376
+201692199
+201691793
+201691898
+201691836
+201691792
+201692121
+201691791
+201692198
+201691878
+201692120
+201691787
+201692153
+201691790
+201691789
+201692119
+201691788
+201691989
+201692154
+201692118
+201691890
+201692117
+201691786
+201692195
+201692197
+201692196
+201691785
+201691900
+201692194
+201692368
+201691841
+201691784
+201692116
+201691783
+201691782
+201692155
+201691919
+201691781
+201692193
+201692115
+201692114
+201692357
+201692192
+201692113
+201692191
+201692112
+201692190
+201692352
+201692176
+201692156
+201691916
+201691779
+201691780
+201691990
+201692111
+201692110
+201692109
+201692017
+201691778
+201692041
+201692174
+201691777
+201692015
+201692173
+201692189
+201692108
+201691845
+201692188
+201692358
+201692107
+201691776
+201692159
+201692359
+201691853
+201692106
+201691883
+201691987
+201692160
+201692105
+201692104
+201691775
+201691888
+201692102
+201691852
+201691976
+201691851
+201691973
+201691774
+201692371
+201691850
+201692101
+201691844
+201691773
+201692187
+201692231
+201691772
+201691854
+201691766
+201691855
+201692186
+201691771
+201692417
+201691770
+201692100
+201692099
+201691769
+201692416
+201691768
+201692098
+201691765
+201691986
+201691764
+201691884
+201692415
+201691763
+201692097
+201692414
+201691856
+201692377
+201691762
+201692170
+201691857
+201691974
+201692341
+201692182
+201691761
+201692038
+201692413
+201691889
+201692019
+201692096
+201692346
+201692161
+201691760
+201691758
+201691757
+201691756
+201692412
+201691755
+201692336
+201692410
+201692331
+201692409
+201692234
+201692408
+201692407
+201691754
+201691753
+201692095
+201692094
+201691887
+201691752
+201692406
+201692372
+201691751
+201692005
+201692093
+201692092
+201691750
+201692004
+201692378
+201692091
+201692090
+201692009
+201692002
+201692089
+201692088
+201692087
+201692086
+201692405
+201692085
+201691983
+201691975
+201692366
+201692001
+201691749
+201692404
+201691748
+201691747
+201691746
+201692332
+201692326
+201692084
+201691745
+201692403
+201692402
+201692083
+201691744
+201691743
+201692327
+201691739
+201692082
+201692018
+201692401
+201691742
+201691741
+201691740
+201692251
+201691738
+201692081
+201692164
+201692037
+201692400
+201691737
+201692080
+201691736
+201691735
+201691892
+201692399
+201692183
+201692074
+201692240
+201692079
+201691734
+201692078
+201692077
+201692076
+201692398
+201691733
+201692329
+201691880
+201692075
+201691732
+201691731
+201692397
+201691730
+201692236
+201691729
+201692370
+201692036
+201692073
+201691728
+201692072
+201691727
+201692071
+201692028
+201692362
+201691726
+201692396
+201691988
+201692250
+201692334
+201692070
+201692042
+201692069
+201692068
+201692067
+201692066
+201691985
+201692350
+201691897
+201692024
+201692034
+201692351
+201692395
+201692065
+201691725
+201691940
+201691918
+201692394
+201692064
+201691867
+201692233
+201692063
+201691939
+201692062
+201692061
+201691977
+201691866
+201692999
+201692496
+201692499
+201692998
+201692498
+201692497
+201692996
+201692809
+201692808
+201693398
+201693414
+201692810
+201693417
+201693371
+201692854
+201692824
+201693206
+201692495
+201692995
+201692494
+201692493
+201693370
+201692994
+201692739
+201692992
+201693209
+201692991
+201692492
+201692486
+201693264
+201692990
+201692491
+201693369
+201693368
+201692758
+201692986
+201692488
+201692985
+201692490
+201693367
+201692989
+201693366
+201692988
+201692987
+201692489
+201692487
+201692984
+201693261
+201692983
+201692982
+201692981
+201693365
+201692811
+201692485
+201693363
+201692774
+201692980
+201693364
+201692872
+201693249
+201692979
+201693379
+201692761
+201693423
+201693254
+201692978
+201693278
+201692812
+201692484
+201692483
+201692482
+201692751
+201692801
+201693413
+201692977
+201692976
+201692481
+201692975
+201693253
+201692974
+201693229
+201692973
+201692972
+201692480
+201692479
+201692478
+201692971
+201692477
+201692476
+201693362
+201692970
+201693443
+201692969
+201693361
+201692968
+201693259
+201693360
+201692750
+201692967
+201693429
+201693245
+201692772
+201693359
+201692475
+201693358
+201692966
+201692474
+201692965
+201692473
+201693238
+201692472
+201693357
+201692963
+201692962
+201692961
+201692471
+201693474
+201692806
+201693356
+201692845
+201692743
+201692958
+201692469
+201693270
+201693355
+201692470
+201692960
+201692959
+201692468
+201693262
+201693354
+201692957
+201692956
+201692955
+201693353
+201693210
+201692950
+201692949
+201692847
+201692954
+201693352
+201693227
+201693205
+201692953
+201692952
+201693351
+201692951
+201692948
+201693350
+201692467
+201692835
+201692947
+201693257
+201693279
+201693349
+201692837
+201692466
+201693348
+201692873
+201693432
+201692464
+201692465
+201692946
+201692945
+201692757
+201693347
+201693444
+201692463
+201693437
+201692462
+201692944
+201692943
+201692461
+201692942
+201692752
+201692941
+201693346
+201692940
+201693345
+201693486
+201693386
+201692460
+201692459
+201692939
+201693208
+201692458
+201692457
+201692846
+201692814
+201692455
+201692456
+201693344
+201692938
+201692937
+201692748
+201693431
+201692454
+201693221
+201692453
+201693343
+201692822
+201693342
+201693422
+201693428
+201692936
+201693420
+201693415
+201692452
+201692935
+201693341
+201692871
+201693240
+201693340
+201692934
+201693339
+201693231
+201693338
+201693244
+201693454
+201692451
+201692933
+201692762
+201692821
+201693337
+201692450
+201692877
+201693217
+201693336
+201692449
+201692932
+201692448
+201692447
+201692446
+201692931
+201692445
+201692930
+201693424
+201692853
+201692929
+201692928
+201693335
+201693223
+201693334
+201693333
+201692848
+201692849
+201692769
+201693220
+201692444
+201693332
+201692850
+201693331
+201693419
+201693445
+201692443
+201692442
+201692441
+201692440
+201692925
+201693446
+201693255
+201692927
+201692926
+201692781
+201693433
+201693481
+201692851
+201693258
+201692852
+201692439
+201692924
+201692923
+201692876
+201693383
+201692922
+201692827
+201692747
+201692921
+201692786
+201692438
+201693207
+201692770
+201692437
+201692436
+201693330
+201693246
+201692435
+201693374
+201692920
+201692434
+201693329
+201693328
+201692433
+201693327
+201693212
+201692763
+201692766
+201692432
+201692919
+201693326
+201693251
+201692765
+201692804
+201692431
+201692918
+201693325
+201692430
+201692745
+201692917
+201693233
+201692916
+201693385
+201692912
+201693388
+201692429
+201693396
+201692874
+201692913
+201692819
+201692428
+201692915
+201693324
+201693323
+201692427
+201692426
+201692914
+201692867
+201693322
+201693247
+201693250
+201692425
+201693235
+201692910
+201692862
+201692424
+201692911
+201692423
+201692767
+201692776
+201692422
+201692909
+201692908
+201692906
+201692905
+201692421
+201692904
+201693320
+201693216
+201693321
+201692907
+201692903
+201692902
+201692901
+201693218
+201692900
+201692899
+201692875
+201693460
+201692420
+201692419
+201693430
+201693211
+201692418
+201692898
+201693319
+201693318
+201693438
+201692324
+201692741
+201693390
+201693317
+201693384
+201693316
+201693409
+201692323
+201692322
+201692897
+201693248
+201693473
+201693464
+201692321
+201692320
+201693315
+201693380
+201693241
+201692319
+201692815
+201693314
+201692896
+201693232
+201692742
+201692895
+201692894
+201692764
+201692318
+201693215
+201693426
+201693313
+201692893
+201693312
+201692317
+201692749
+201693230
+201692316
+201693387
+201693311
+201693467
+201693466
+201692315
+201693465
+201692314
+201692780
+201692866
+201693237
+201692311
+201693310
+201692892
+201692313
+201692312
+201692891
+201692773
+201693479
+201693309
+201693308
+201693252
+201692798
+201692310
+201692800
+201692309
+201693267
+201692860
+201692863
+201693307
+201693306
+201693488
+201692816
+201692308
+201693434
+201693305
+201693470
+201692890
+201693225
+201693266
+201693239
+201692746
+201692832
+201693304
+201693303
+201693302
+201693301
+201693300
+201692889
+201692888
+201692887
+201693373
+201693490
+201693299
+201692307
+201693418
+201693298
+201693214
+201693224
+201692796
+201693297
+201693296
+201692306
+201693295
+201692744
+201693294
+201692840
+201693435
+201693204
+201693256
+201692305
+201692304
+201692771
+201692759
+201693292
+201692885
+201693293
+201692303
+201692886
+201693226
+201692755
+201693291
+201693290
+201693404
+201692302
+201693234
+201692301
+201692884
+201692883
+201693289
+201692864
+201693372
+201692300
+201692754
+201692882
+201693389
+201693376
+201692299
+201693288
+201692753
+201692298
+201693287
+201692857
+201693377
+201693243
+201693952
+201692628
+201692668
+201692621
+201692612
+201692611
+201693130
+201692528
+201692663
+201692687
+201693577
+201693029
+201692610
+201693575
+201692662
+201692661
+201693006
+201693129
+201693580
+201692609
+201692616
+201693128
+201692608
+201693127
+201693583
+201692637
+201692675
+201692673
+201692607
+201692623
+201693126
+201692667
+201692679
+201693011
+201693034
+201692660
+201692678
+201693022
+201692666
+201692665
+201692606
+201692624
+201692605
+201692604
+201692680
+201693122
+201693121
+201693579
+201692659
+201692706
+201693124
+201692603
+201693123
+201692602
+201692658
+201692657
+201692619
+201692601
+201693589
+201692642
+201692676
+201692656
+201692513
+201692620
+201692600
+201693593
+201692655
+201692732
+201692677
+201692685
+201692615
+201693120
+201693119
+201692654
+201693594
+201693116
+201693118
+201692522
+201693585
+201692653
+201693117
+201693115
+201693586
+201693019
+201692599
+201692652
+201693114
+201692598
+201692597
+201692596
+201693113
+201692508
+201693001
+201692511
+201693042
+201693574
+201692651
+201692595
+201692594
+201693039
+201692691
+201692593
+201692650
+201692546
+201692649
+201693112
+201692632
+201693111
+201692512
+201692542
+201692592
+201692591
+201692647
+201692640
+201693203
+201693202
+201692719
+201692613
+201692590
+201693026
+201693201
+201693012
+201693041
+201692694
+201693200
+201693110
+201693199
+201693109
+201692726
+201692544
+201693108
+201693107
+201693106
+201693013
+201693198
+201692710
+201692681
+201693105
+201693104
+201693195
+201693102
+201693032
+201693197
+201693196
+201693103
+201692589
+201692618
+201693044
+201692588
+201693049
+201692630
+201693194
+201693588
+201693014
+201693101
+201692587
+201693018
+201692586
+201692585
+201693100
+201692532
+201693587
+201692584
+201693193
+201693192
+201692519
+201693191
+201692583
+201693190
+201692674
+201692709
+201692696
+201693189
+201692535
+201692712
+201692717
+201692582
+201692581
+201692711
+201693188
+201693005
+201692506
+201692625
+201692537
+201692580
+201692579
+201693572
+201692626
+201692682
+201692700
+201693099
+201693096
+201692549
+201693098
+201693097
+201693573
+201692547
+201692734
+201692731
+201693095
+201693094
+201692578
+201693186
+201692577
+201692576
+201693185
+201692699
+201692529
+201693184
+201693093
+201692575
+201693183
+201692721
+201692574
+201693092
+201693031
+201692573
+201693182
+201693181
+201692692
+201692690
+201693578
+201692686
+201692631
+201692627
+201692572
+201692571
+201692718
+201693180
+201693091
+201692534
+201693090
+201693089
+201693088
+201692570
+201693179
+201692543
+201693087
+201693178
+201693086
+201692698
+201693085
+201692716
+201693021
+201692671
+201693581
+201693175
+201693084
+201693177
+201692569
+201693176
+201693083
+201693082
+201692568
+201693174
+201693081
+201693008
+201692567
+201692531
+201693173
+201692503
+201693080
+201692566
+201693079
+201693040
+201692565
+201692672
+201693172
+201693078
+201693576
+201693043
+201692505
+201693077
+201693072
+201693016
+201693171
+201693076
+201693075
+201693074
+201692564
+201693073
+201692563
+201693170
+201693169
+201693168
+201692695
+201693167
+201693070
+201693069
+201693068
+201693067
+201692639
+201692730
+201693065
+201692689
+201693064
+201692729
+201693584
+201693035
+201693166
+201692562
+201692737
+201693063
+201692527
+201693165
+201692561
+201692645
+201693061
+201693164
+201693163
+201692560
+201692559
+201693062
+201692517
+201692688
+201693162
+201692539
+201693002
+201693161
+201692558
+201692617
+201692684
+201692524
+201692557
+201693159
+201693036
+201692556
+201693160
+201692520
+201693582
+201693007
+201693060
+201693158
+201692707
+201692540
+201693156
+201692526
+201692536
+201693057
+201693155
+201692541
+201693157
+201693059
+201692555
+201693058
+201692634
+201693056
+201693055
+201692548
+201692554
+201693027
+201692530
+201693154
+201693153
+201692636
+201693152
+201692502
+201694067
+201694066
+201693511
+201693945
+201694065
+201693502
+201694064
+201694019
+201693701
+201695025
+201694021
+201694020
+201695024
+201693507
+201694063
+201695023
+201693519
+201695026
+201694499
+201693570
+201694486
+201694058
+201693702
+201694490
+201694062
+201694061
+201695022
+201694060
+201694059
+201693525
+201693569
+201695021
+201694034
+201693504
+201693565
+201693700
+201693699
+201693698
+201693503
+201694015
+201694057
+201695020
+201693505
+201695019
+201693564
+201695018
+201693506
+201693561
+201693705
+201693563
+201693562
+201693521
+201695016
+201694056
+201694055
+201694054
+201694006
+201694053
+201694002
+201693560
+201695015
+201694052
+201695014
+201693559
+201693522
+201694004
+201693523
+201693558
+201695013
+201694051
+201695012
+201694050
+201693708
+201693500
+201694023
+201693557
+201693508
+201695010
+201695002
+201695011
+201693556
+201693555
+201693554
+201693553
+201694024
+201694495
+201694047
+201693512
+201694049
+201693552
+201694048
+201693513
+201693518
+201693551
+201694488
+201693550
+201694046
+201693549
+201693548
+201694494
+201693517
+201694492
+201695001
+201693709
+201693547
+201693716
+201693544
+201695009
+201693710
+201694491
+201693546
+201694045
+201693545
+201694000
+201694044
+201694001
+201693543
+201693542
+201693541
+201694043
+201694027
+201693713
+201695008
+201694017
+201694042
+201693514
+201693540
+201693539
+201693538
+201695007
+201693704
+201693537
+201694005
+201693951
+201694014
+201693533
+201693536
+201693535
+201693950
+201693534
+201695006
+201693532
+201693711
+201693949
+201694033
+201693948
+201695005
+201694032
+201694487
+201694003
+201693703
+201693947
+201693531
+201695004
+201693530
+201693529
+201693528
+201693946
+201694493
+201693515
+201693819
+201694205
+201695097
+201694087
+201695091
+201695090
+201693603
+201695089
+201694206
+201695088
+201694074
+201693697
+201695087
+201695086
+201695028
+201693696
+201694203
+201694077
+201695085
+201695084
+201695083
+201694204
+201695093
+201694202
+201693826
+201695080
+201693695
+201695082
+201693694
+201695081
+201695096
+201693829
+201693693
+201694201
+201695078
+201694200
+201693692
+201695077
+201694068
+201695076
+201693814
+201694199
+201694198
+201693691
+201693690
+201694140
+201694085
+201694076
+201693689
+201693688
+201694196
+201694195
+201693687
+201693686
+201695040
+201693685
+201694194
+201693684
+201694193
+201694192
+201693683
+201694191
+201695075
+201693682
+201693681
+201694190
+201693830
+201693680
+201695092
+201693597
+201693605
+201693827
+201695041
+201694189
+201693679
+201693678
+201695074
+201694089
+201694183
+201694182
+201694181
+201694180
+201693675
+201693606
+201694179
+201694070
+201694188
+201695073
+201693677
+201694187
+201694186
+201694185
+201693676
+201694184
+201694083
+201693674
+201693673
+201694178
+201693672
+201693671
+201694177
+201694176
+201693670
+201693669
+201693668
+201694170
+201693666
+201695070
+201695069
+201693661
+201694082
+201694080
+201694175
+201695072
+201693667
+201695071
+201694174
+201694173
+201694172
+201694171
+201693816
+201693665
+201693664
+201694169
+201693663
+201693662
+201694168
+201694092
+201695068
+201693660
+201694167
+201694166
+201693659
+201695030
+201694165
+201694164
+201694163
+201695033
+201695094
+201695067
+201693658
+201694162
+201693657
+201693656
+201694088
+201693652
+201693651
+201693650
+201695065
+201695027
+201693655
+201694161
+201694160
+201695066
+201694158
+201693654
+201693653
+201694157
+201695042
+201693649
+201693648
+201694156
+201695064
+201695063
+201694086
+201693647
+201693646
+201695032
+201693645
+201693644
+201694090
+201693642
+201695062
+201694155
+201693643
+201694154
+201695036
+201694153
+201695061
+201693825
+201695060
+201694152
+201693641
+201693640
+201694075
+201693639
+201694081
+201694151
+201694150
+201694072
+201694149
+201695059
+201694148
+201694147
+201694146
+201693598
+201694145
+201695058
+201693638
+201693637
+201693636
+201695031
+201694143
+201694096
+201695057
+201693824
+201693635
+201695056
+201693634
+201693633
+201694073
+201693632
+201695035
+201694139
+201693631
+201693630
+201693629
+201694141
+201693628
+201695037
+201694137
+201695055
+201693627
+201693815
+201694136
+201695054
+201694084
+201693626
+201695053
+201693625
+201693624
+201694138
+201694102
+201694197
+201693623
+201693622
+201693621
+201693620
+201695052
+201694142
+201693619
+201694106
+201694135
+201693618
+201693828
+201695034
+201694134
+201694133
+201695051
+201694132
+201694131
+201695050
+201693831
+201695049
+201694130
+201693617
+201693616
+201695048
+201695047
+201694129
+201695095
+201694128
+201693615
+201693614
+201694246
+201694306
+201693806
+201694276
+201693784
+201694279
+201695174
+201694361
+201695193
+201694250
+201695175
+201693778
+201693800
+201695148
+201694411
+201695173
+201694236
+201694380
+201693759
+201693731
+201694223
+201694271
+201695179
+201693801
+201693719
+201695163
+201695267
+201694275
+201694299
+201694282
+201694238
+201694281
+201695185
+201694280
+201693753
+201694398
+201693897
+201695159
+201694289
+201694305
+201694213
+201695118
+201695263
+201694304
+201695177
+201694237
+201694274
+201695191
+201693783
+201695134
+201694288
+201693758
+201693811
+201694230
+201695139
+201693766
+201695150
+201693777
+201693751
+201694287
+201693925
+201694252
+201694235
+201694215
+201695101
+201694239
+201693742
+201694425
+201695136
+201695140
+201694259
+201693917
+201694342
+201693896
+201694388
+201695149
+201693909
+201693792
+201694214
+201694402
+201693915
+201695133
+201695266
+201694401
+201693961
+201694400
+201693781
+201695116
+201694210
+201694375
+201693926
+201695115
+201693739
+201695099
+201693923
+201693887
+201694234
+201694209
+201693786
+201693958
+201693748
+201693726
+201694384
+201695098
+201695114
+201693921
+201695113
+201694399
+201693922
+201694228
+201694254
+201694394
+201694220
+201694369
+201693942
+201693916
+201694219
+201694372
+201694368
+201694367
+201693940
+201695131
+201693734
+201694208
+201693779
+201695262
+201695265
+201693884
+201694415
+201693920
+201694268
+201695105
+201695269
+201694371
+201695124
+201695154
+201695123
+201695103
+201693898
+201695171
+201694408
+201694393
+201695102
+201693765
+201695167
+201693906
+201694370
+201694348
+201693891
+201694340
+201695192
+201694355
+201693877
+201694293
+201694338
+201693903
+201694358
+201694374
+201693911
+201693908
+201693886
+201694382
+201694376
+201694333
+201694269
+201695247
+201693939
+201693910
+201693907
+201695128
+201694339
+201694373
+201693885
+201694354
+201694420
+201694366
+201695166
+201693773
+201695195
+201695109
+201694337
+201694211
+201695261
+201693905
+201695253
+201694345
+201695237
+201694353
+201695260
+201695259
+201695258
+201695255
+201693807
+201694352
+201694396
+201693876
+201693962
+201693756
+201694326
+201695152
+201694327
+201694351
+201693881
+201694350
+201694317
+201693882
+201694245
+201695252
+201693893
+201694332
+201694390
+201694335
+201695119
+201693864
+201694334
+201693955
+201694316
+201695129
+201694322
+201693872
+201694330
+201693568
+201694321
+201694212
+201695197
+201694331
+201693871
+201693935
+201694314
+201693733
+201694244
+201693875
+201694315
+201694328
+201695251
+201694329
+201695264
+201694295
+201693874
+201693890
+201695235
+201694324
+201695248
+201693727
+201695249
+201694320
+201695241
+201695120
+201693870
+201693863
+201695240
+201695108
+201695246
+201695244
+201693879
+201693869
+201693856
+201693785
+201695245
+201693868
+201694319
+201695138
+201693878
+201694344
+201694309
+201694283
+201693867
+201693860
+201693931
+201695243
+201694308
+201694307
+201695226
+201693725
+201695238
+201694313
+201693755
+201695242
+201694343
+201694312
+201693862
+201694311
+201695239
+201694310
+201695194
+201695236
+201693956
+201695233
+201693861
+201693851
+201695232
+201693859
+201694484
+201694452
+201694485
+201694474
+201694482
+201695234
+201693858
+201693855
+201693849
+201695229
+201695137
+201693854
+201694477
+201694481
+201693848
+201693718
+201694460
+201695228
+201693842
+201694459
+201694462
+201693853
+201695231
+201693843
+201693850
+201695227
+201693847
+201693841
+201694456
+201694278
+201695110
+201693993
+201694406
+201695112
+201694445
+201693899
+201695155
+201693992
+201694378
+201693833
+201693840
+201694476
+201694473
+201693804
+201694483
+201695225
+201694472
+201693738
+201694469
+201694480
+201695224
+201695161
+201694479
+201693846
+201693845
+201695160
+201693852
+201694475
+201695122
+201694461
+201695221
+201694465
+201695230
+201694467
+201695257
+201694468
+201693844
+201694471
+201693999
+201695223
+201694470
+201694464
+201694478
+201694463
+201693998
+201693839
+201695222
+201694457
+201693838
+201694458
+201693837
+201693835
+201693735
+201693730
+201693834
+201693832
+201694417
+201693953
+201694455
+201694466
+201695146
+201694441
+201693836
+201693994
+201695219
+201693997
+201693754
+201693768
+201695220
+201694454
+201693971
+201694453
+201693995
+201695111
+201694377
+201694444
+201693996
+201694451
+201693934
+201693924
+201693977
+201695216
+201695107
+201694391
+201694218
+201695213
+201693989
+201693988
+201695215
+201694434
+201694450
+201693991
+201693960
+201695183
+201693774
+201693972
+201693745
+201695204
+201693797
+201694431
+201695199
+201693973
+201694261
+201693967
+201694423
+201695202
+201695151
+201695203
+201693776
+201693966
+201695201
+201694432
+201693737
+201693904
+201694448
+201694447
+201695210
+201693965
+201695200
+201693983
+201693982
+201695218
+201694435
+201694449
+201693927
+201695207
+201694255
+201693795
+201693990
+201695214
+201693764
+201693981
+201695130
+201694427
+201695217
+201693985
+201693984
+201693964
+201693802
+201693976
+201694336
+201695212
+201693987
+201693566
+201694446
+201694443
+201695165
+201694397
+201693979
+201695206
+201694430
+201693986
+201694433
+201695209
+201693978
+201695205
+201693963
+201693975
+201694440
+201693970
+201694439
+201695208
+201693723
+201693974
+201694442
+201694421
+201694438
+201693968
+201695170
+201695211
+201694225
+201693782
+201694437
+201694429
+201694360
+201693763
+201694428
+201694227
+201695143
+201694229
+201694216
+201693957
+201695254
+201694300
+201695181
+201694270
+201695190
+201693746
+201695178
+201693809
+201695144
+201695180
+201693744
+201695126
+201695187
+201695142
+201693750
+201693743
+201695135
+201693752
+201695169
+201695141
+201693724
+201694418
+201693740
+201693888
+201693918
+201695100
+201695125
+201693749
+201695189
+201695156
+201693936
+201695117
+201694364
+201694392
+201694363
+201693894
+201695104
+201694251
+201695106
+201693761
+201694226
+201695147
+201693880
+201694341
+201693901
+201694357
+201694386
+201694359
+201693913
+201695132
+201693902
+201693919
+201693769
+201695268
+201694248
+201693866
+201693865
+201694217
+201693895
+201693912
+201693900
+201694318
+201693937
+201693914
+201694222
+201694412
+201694385
+201694999
+201694689
+201694998
+201695390
+201695389
+201695388
+201694688
+201694687
+201695387
+201694685
+201694684
+201694995
+201694994
+201695386
+201694993
+201694682
+201695385
+201694681
+201694992
+201694991
+201695384
+201695383
+201695382
+201695381
+201695380
+201694989
+201694678
+201694677
+201694675
+201694674
+201695378
+201694986
+201694671
+201694670
+201695377
+201695376
+201694985
+201695375
+201694984
+201695373
+201695372
+201695371
+201694666
+201694982
+201694981
+201694665
+201695370
+201694980
+201694663
+201695369
+201695368
+201695367
+201694662
+201694978
+201695366
+201694977
+201694661
+201694660
+201694659
+201695365
+201694658
+201694657
+201694976
+201694656
+201694975
+201695363
+201694655
+201695362
+201694654
+201695361
+201695360
+201695359
+201694653
+201695358
+201695357
+201695356
+201694974
+201695355
+201694973
+201695354
+201694972
+201694971
+201694970
+201694969
+201694649
+201694968
+201694967
+201694648
+201695353
+201694966
+201694647
+201694965
+201694646
+201694964
+201694963
+201694962
+201694961
+201694959
+201694960
+201694958
+201694957
+201695352
+201694956
+201695351
+201694644
+201695350
+201695349
+201694955
+201694954
+201694953
+201694641
+201695348
+201694952
+201695347
+201694951
+201694640
+201695346
+201695344
+201695345
+201694639
+201694950
+201694638
+201695342
+201695341
+201694637
+201695340
+201694636
+201695339
+201695338
+201695337
+201694948
+201695336
+201695335
+201695334
+201694635
+201695333
+201695332
+201694946
+201694945
+201694944
+201695331
+201694943
+201694942
+201695330
+201694634
+201695329
+201695328
+201694632
+201694631
+201695327
+201695326
+201694629
+201695325
+201695324
+201694939
+201694628
+201694938
+201695323
+201694937
+201694627
+201695322
+201694936
+201695321
+201694934
+201695320
+201694626
+201694625
+201694933
+201694932
+201695319
+201694621
+201694619
+201694618
+201694617
+201694616
+201694931
+201694930
+201694615
+201695317
+201695316
+201694929
+201694928
+201694927
+201694613
+201694612
+201694926
+201694925
+201695315
+201695314
+201694611
+201695313
+201694610
+201695312
+201694924
+201694609
+201694608
+201695311
+201695310
+201695309
+201694923
+201694606
+201694921
+201694920
+201694605
+201695987
+201694918
+201694917
+201694601
+201695308
+201694600
+201694915
+201694599
+201694598
+201694914
+201694597
+201695307
+201694913
+201694911
+201694910
+201694909
+201694908
+201694594
+201695306
+201695305
+201694906
+201694905
+201694590
+201695304
+201694589
+201695303
+201694904
+201694903
+201694902
+201694901
+201694602
+201695302
+201694900
+201694899
+201694604
+201695301
+201694898
+201694897
+201694896
+201694587
+201694895
+201694585
+201694894
+201694893
+201694892
+201694584
+201695299
+201694582
+201695298
+201694891
+201694581
+201694580
+201695297
+201694579
+201694890
+201694889
+201694888
+201694887
+201694578
+201695296
+201694886
+201694885
+201695295
+201694577
+201695294
+201694883
+201695293
+201695292
+201694576
+201694575
+201694882
+201694881
+201694880
+201694574
+201694573
+201695291
+201695289
+201694878
+201694571
+201694570
+201694877
+201695288
+201695287
+201694568
+201694567
+201694875
+201694566
+201694874
+201694873
+201694565
+201695286
+201694564
+201694872
+201694871
+201694870
+201694869
+201695285
+201694563
+201694868
+201694867
+201694562
+201694561
+201694866
+201694865
+201695284
+201695283
+201695282
+201694559
+201694558
+201694864
+201695281
+201695280
+201695279
+201695278
+201694863
+201695277
+201695276
+201695275
+201695274
+201695273
+201694556
+201694862
+201694553
+201695272
+201694860
+201694859
+201695271
+201694552
+201695270
+201694551
+201694858
+201694857
+201694550
+201695499
+201694856
+201694855
+201695498
+201694853
+201694547
+201694546
+201694545
+201694851
+201694544
+201694542
+201694540
+201694538
+201694850
+201694537
+201695497
+201695496
+201695495
+201695494
+201694536
+201694535
+201694849
+201695493
+201695492
+201694534
+201694533
+201694848
+201695491
+201694846
+201694532
+201694531
+201694530
+201695490
+201694844
+201695489
+201695488
+201694843
+201694841
+201694529
+201695999
+201695998
+201694840
+201694839
+201695997
+201694838
+201694837
+201695996
+201695995
+201694836
+201694835
+201695484
+201695483
+201695994
+201695993
+201694834
+201694833
+201695482
+201695991
+201694832
+201695990
+201694831
+201695481
+201695989
+201695988
+201694830
+201695817
+201695480
+201695816
+201694829
+201694828
+201694827
+201695479
+201695478
+201694826
+201694825
+201694824
+201695477
+201694823
+201695983
+201695476
+201694822
+201695475
+201695474
+201694820
+201694819
+201695981
+201695980
+201695979
+201695977
+201695473
+201694818
+201694817
+201695472
+201695976
+201695975
+201695974
+201694816
+201695471
+201695470
+201695469
+201695468
+201695973
+201695972
+201695467
+201695971
+201694814
+201694813
+201695465
+201695968
+201695464
+201695967
+201694812
+201695463
+201695966
+201695965
+201695964
+201694809
+201695963
+201694808
+201695462
+201694807
+201695461
+201695961
+201695460
+201694806
+201695459
+201694805
+201695959
+201695958
+201695957
+201695956
+201694803
+201695456
+201694802
+201694801
+201694800
+201695455
+201694799
+201694798
+201694797
+201695954
+201695953
+201694796
+201694795
+201695454
+201694794
+201695952
+201694793
+201695453
+201694792
+201695951
+201694791
+201695451
+201694790
+201695450
+201694789
+201695948
+201695449
+201695947
+201695946
+201694788
+201695446
+201694787
+201695445
+201694786
+201695444
+201695944
+201695943
+201695942
+201694784
+201695443
+201695442
+201695940
+201695440
+201695439
+201695438
+201694783
+201694782
+201694781
+201694780
+201695437
+201695436
+201695435
+201695434
+201694779
+201694778
+201695938
+201695433
+201694777
+201695937
+201695432
+201694776
+201695936
+201694774
+201695431
+201694773
+201694772
+201695430
+201695429
+201694771
+201694770
+201694769
+201694768
+201694767
+201694766
+201695934
+201695933
+201695428
+201694765
+201695932
+201695931
+201695930
+201695426
+201694764
+201695425
+201695929
+201695928
+201695424
+201695927
+201695423
+201695926
+201695925
+201695422
+201694761
+201695924
+201695923
+201694760
+201695922
+201695421
+201695420
+201695921
+201695419
+201695920
+201695418
+201695919
+201695918
+201694759
+201694758
+201694757
+201694756
+201695417
+201695917
+201695416
+201695916
+201695915
+201694755
+201695914
+201695415
+201695913
+201695912
+201695414
+201695413
+201695910
+201695909
+201695412
+201694753
+201695907
+201695906
+201695905
+201695904
+201695903
+201695410
+201694751
+201695901
+201695900
+201695409
+201694750
+201694749
+201694748
+201694747
+201695898
+201695408
+201694746
+201695897
+201694745
+201694744
+201695896
+201695895
+201695894
+201695407
+201695893
+201695892
+201695891
+201695890
+201695888
+201694742
+201695887
+201695886
+201695885
+201695884
+201695883
+201694741
+201695406
+201694740
+201695882
+201695405
+201695881
+201695880
+201695879
+201695878
+201695877
+201694739
+201695404
+201695403
+201694738
+201694737
+201694736
+201695401
+201695875
+201695400
+201694735
+201695874
+201695399
+201695873
+201695872
+201694734
+201695871
+201695398
+201695870
+201694732
+201694731
+201694730
+201695397
+201695869
+201694729
+201695868
+201695867
+201695866
+201694728
+201694727
+201694726
+201695865
+201695864
+201695396
+201694725
+201695862
+201694724
+201695395
+201694723
+201694722
+201694721
+201694720
+201695860
+201694719
+201695859
+201695394
+201695858
+201694718
+201695857
+201695393
+201695856
+201695392
+201695391
+201695855
+201695854
+201694690
+201694715
+201694527
+201695853
+201695852
+201694526
+201694712
+201695851
+201694525
+201694711
+201695849
+201694524
+201695848
+201694710
+201695847
+201694523
+201695846
+201695845
+201694709
+201694521
+201695843
+201695842
+201695841
+201695839
+201694707
+201695838
+201695837
+201694519
+201695835
+201694518
+201694705
+201694517
+201694516
+201694515
+201694514
+201695833
+201694513
+201695832
+201694704
+201694703
+201695831
+201694512
+201694702
+201694511
+201694701
+201695830
+201694510
+201694700
+201694508
+201694699
+201694507
+201695828
+201694506
+201694505
+201695827
+201694504
+201694503
+201694697
+201694502
+201694696
+201694695
+201694501
+201694693
+201694500
+201695823
+201695822
+201694691
+201695821
+201695820
+201695985
+201695986
+201696102
+201696694
+201695588
+201696100
+201695587
+201696693
+201696099
+201696692
+201695585
+201695584
+201695583
+201696691
+201696690
+201695581
+201695580
+201696688
+201695579
+201695578
+201696096
+201696686
+201696094
+201696093
+201695577
+201696684
+201696683
+201696092
+201696091
+201696682
+201696090
+201696681
+201696089
+201695576
+201696088
+201696087
+201696680
+201695575
+201696086
+201696679
+201696085
+201696678
+201695574
+201696084
+201696677
+201696083
+201696081
+201696675
+201696674
+201696673
+201696672
+201696079
+201696078
+201696671
+201696670
+201695573
+201696669
+201695572
+201696668
+201696077
+201695571
+201696076
+201696667
+201696075
+201696666
+201696665
+201696074
+201696664
+201696663
+201696662
+201696073
+201696072
+201696071
+201696069
+201696068
+201696660
+201696661
+201696637
+201696067
+201695569
+201696066
+201696635
+201696634
+201696633
+201696632
+201696065
+201696631
+201695568
+201696630
+201696644
+201696643
+201696642
+201695567
+201696641
+201696640
+201696063
+201696639
+201696062
+201696638
+201696061
+201696060
+201696058
+201696057
+201696056
+201696055
+201695566
+201696645
+201696892
+201696053
+201696052
+201696051
+201696050
+201696049
+201696048
+201696047
+201696889
+201696046
+201696888
+201696887
+201695565
+201696045
+201696044
+201696886
+201696042
+201696885
+201696884
+201696883
+201696882
+201696881
+201696880
+201695563
+201696041
+201696876
+201696039
+201696875
+201696038
+201696873
+201695562
+201696037
+201695561
+201696872
+201696871
+201696035
+201696034
+201696869
+201696868
+201695560
+201696867
+201696866
+201696865
+201696033
+201696863
+201696032
+201696031
+201696861
+201696860
+201695558
+201696858
+201696857
+201696856
+201696030
+201695557
+201696029
+201696853
+201696852
+201696851
+201695556
+201696850
+201696849
+201696028
+201696848
+201695554
+201696847
+201696027
+201696846
+201696845
+201696844
+201695553
+201695552
+201696025
+201696024
+201696023
+201696022
+201696843
+201695551
+201696842
+201696840
+201696019
+201696839
+201695550
+201696018
+201696837
+201695549
+201696836
+201696834
+201696017
+201696833
+201696832
+201696831
+201696830
+201696015
+201696829
+201696014
+201696828
+201696827
+201696012
+201696824
+201696823
+201696822
+201696011
+201696010
+201695548
+201696820
+201696819
+201696818
+201696009
+201696817
+201696008
+201696007
+201696006
+201696816
+201696815
+201696814
+201696005
+201695547
+201696004
+201696813
+201695545
+201696812
+201696811
+201696810
+201696809
+201695544
+201696808
+201696771
+201696770
+201696002
+201696769
+201696768
+201696767
+201696001
+201696766
+201696251
+201696765
+201696763
+201696762
+201696761
+201696760
+201696248
+201695543
+201696247
+201696758
+201695542
+201696757
+201695540
+201696756
+201696243
+201696755
+201696753
+201696242
+201696241
+201696751
+201696750
+201696748
+201696747
+201696746
+201696240
+201696745
+201695539
+201696239
+201696744
+201696743
+201696742
+201695538
+201695537
+201696741
+201695536
+201696739
+201696238
+201696237
+201696738
+201696737
+201696736
+201696735
+201696734
+201696733
+201695535
+201696732
+201696730
+201696731
+201696235
+201696729
+201696728
+201696234
+201696233
+201695534
+201696726
+201696232
+201696231
+201696725
+201695533
+201696724
+201696723
+201696722
+201696229
+201696720
+201696719
+201696718
+201696228
+201696716
+201696715
+201696714
+201696225
+201696711
+201696224
+201696710
+201696709
+201696708
+201696223
+201696707
+201696222
+201695532
+201696705
+201696706
+201696704
+201696703
+201696702
+201696701
+201696221
+201695531
+201696699
+201696698
+201696697
+201696696
+201695530
+201696695
+201695529
+201696219
+201696218
+201697110
+201696217
+201697109
+201695528
+201697107
+201697106
+201697105
+201697104
+201697103
+201696215
+201697102
+201696214
+201697101
+201696213
+201695527
+201697099
+201696212
+201696211
+201696209
+201696208
+201697098
+201697097
+201697096
+201696207
+201696206
+201696205
+201695525
+201697094
+201695524
+201696204
+201697093
+201697092
+201697091
+201697090
+201696201
+201697089
+201697088
+201697087
+201696200
+201695523
+201696199
+201697085
+201697084
+201696195
+201695522
+201695520
+201696194
+201697083
+201695519
+201695518
+201696193
+201696192
+201695517
+201695516
+201695515
+201696191
+201696190
+201695514
+201697080
+201697079
+201697078
+201696189
+201697076
+201696188
+201697075
+201697074
+201696187
+201696186
+201697073
+201697072
+201695513
+201697071
+201695512
+201697070
+201695511
+201696180
+201696179
+201697069
+201697068
+201697067
+201696177
+201697066
+201697065
+201697064
+201697063
+201696173
+201697061
+201696172
+201697060
+201697059
+201697058
+201697057
+201697056
+201696170
+201697055
+201696169
+201697054
+201697053
+201697052
+201697051
+201697050
+201697049
+201697048
+201695508
+201695507
+201697047
+201695506
+201696168
+201697046
+201697045
+201696166
+201697044
+201696165
+201696164
+201696163
+201695505
+201697041
+201697040
+201696162
+201697039
+201697038
+201697037
+201695504
+201697036
+201697035
+201697034
+201696161
+201696160
+201696159
+201696158
+201697033
+201696157
+201695503
+201697032
+201697031
+201697030
+201697029
+201696156
+201696155
+201697028
+201697026
+201697025
+201696154
+201697024
+201696153
+201696152
+201696151
+201696150
+201695502
+201697023
+201695501
+201696148
+201697022
+201697021
+201697020
+201695500
+201697019
+201696147
+201696146
+201697017
+201697015
+201696145
+201697014
+201697013
+201696144
+201697012
+201697011
+201696143
+201697010
+201695782
+201696142
+201697009
+201697008
+201697007
+201696140
+201697005
+201697499
+201697498
+201696137
+201695780
+201695779
+201697002
+201697001
+201696136
+201695778
+201697000
+201696134
+201696133
+201697244
+201697243
+201696132
+201697242
+201697497
+201696131
+201696130
+201696129
+201697496
+201695776
+201695775
+201695774
+201695773
+201696128
+201697494
+201695772
+201697493
+201695771
+201695770
+201697492
+201697491
+201697490
+201695769
+201697489
+201696127
+201697488
+201697487
+201696125
+201696126
+201697486
+201697485
+201696124
+201695767
+201695766
+201695765
+201696123
+201697484
+201697483
+201697482
+201696122
+201697481
+201697480
+201696121
+201695764
+201697479
+201697478
+201696120
+201697477
+201695763
+201696118
+201696117
+201697476
+201696116
+201697475
+201696115
+201697474
+201696114
+201697473
+201695762
+201696112
+201697471
+201697470
+201695761
+201696111
+201696110
+201697469
+201695759
+201697468
+201696108
+201696107
+201695758
+201697467
+201697466
+201696106
+201695757
+201697464
+201696104
+201697463
+201697462
+201697461
+201696346
+201696345
+201697460
+201696344
+201697459
+201696342
+201695756
+201697458
+201696341
+201697457
+201697456
+201696340
+201697455
+201697454
+201696339
+201697453
+201696338
+201697452
+201695755
+201696336
+201697451
+201695754
+201696335
+201697449
+201697448
+201696334
+201696333
+201696332
+201696331
+201696330
+201697447
+201696329
+201695752
+201695751
+201697446
+201696328
+201695749
+201695748
+201696327
+201695747
+201696326
+201696324
+201697445
+201695746
+201697444
+201696323
+201696322
+201696321
+201697443
+201697442
+201697441
+201696320
+201697440
+201697439
+201695744
+201696319
+201697438
+201697437
+201696318
+201697436
+201695743
+201697435
+201697434
+201697433
+201696317
+201695742
+201697432
+201695741
+201696315
+201697431
+201697430
+201697429
+201695740
+201697428
+201696314
+201697427
+201696313
+201695739
+201697426
+201697425
+201697424
+201697423
+201696312
+201696311
+201697422
+201696309
+201695738
+201696308
+201696307
+201697421
+201696306
+201697420
+201697419
+201696305
+201697417
+201696304
+201697416
+201696300
+201697415
+201696299
+201697413
+201696298
+201696297
+201695737
+201696296
+201697412
+201696295
+201696294
+201696293
+201697411
+201697410
+201696292
+201696291
+201697409
+201696290
+201695736
+201696289
+201697408
+201697407
+201696288
+201695735
+201697406
+201696287
+201696286
+201697405
+201697404
+201695734
+201696283
+201697403
+201696282
+201696280
+201697402
+201695733
+201697401
+201695731
+201695730
+201697400
+201697399
+201697398
+201697397
+201697396
+201697395
+201697394
+201696773
+201696807
+201697391
+201697390
+201695729
+201695728
+201697388
+201695727
+201696277
+201695726
+201697387
+201696276
+201695725
+201697386
+201697385
+201697384
+201696274
+201696273
+201696272
+201696271
+201697383
+201697382
+201697381
+201697380
+201695723
+201695722
+201697379
+201695721
+201697378
+201696269
+201696268
+201697377
+201696267
+201697375
+201697374
+201696266
+201696265
+201696264
+201695720
+201697373
+201696263
+201696260
+201697372
+201696259
+201697371
+201696257
+201697370
+201696256
+201697369
+201697368
+201697367
+201695718
+201696255
+201697365
+201697364
+201697362
+201697361
+201697360
+201697359
+201696253
+201696252
+201697358
+201697357
+201696499
+201695717
+201695716
+201697356
+201695715
+201696498
+201697355
+201696497
+201696496
+201696495
+201697353
+201697351
+201697350
+201697349
+201695714
+201697348
+201695713
+201696493
+201696491
+201697347
+201696490
+201696489
+201697346
+201696488
+201697345
+201696487
+201696486
+201697344
+201697343
+201696485
+201695712
+201697342
+201697341
+201697340
+201696482
+201696481
+201697339
+201695711
+201695710
+201696480
+201697337
+201697336
+201697335
+201697334
+201697333
+201697332
+201696479
+201697331
+201696478
+201695709
+201697330
+201696476
+201697329
+201696475
+201697328
+201695708
+201696474
+201697327
+201696472
+201696471
+201697326
+201695707
+201696469
+201696468
+201697325
+201697324
+201697323
+201696467
+201695706
+201696466
+201697322
+201697320
+201696465
+201696464
+201696463
+201697319
+201696462
+201696461
+201696460
+201697318
+201696459
+201697317
+201695705
+201696457
+201697315
+201696456
+201696455
+201695703
+201695702
+201696454
+201697314
+201695701
+201695700
+201696453
+201695699
+201696452
+201697313
+201697164
+201697165
+201696449
+201695698
+201697163
+201697161
+201697160
+201696447
+201697159
+201695696
+201697158
+201697157
+201697156
+201695695
+201696444
+201696443
+201696442
+201697154
+201696440
+201697153
+201696439
+201696438
+201696437
+201697152
+201695694
+201695693
+201695692
+201696435
+201697150
+201697149
+201695691
+201697147
+201696433
+201697146
+201697145
+201697144
+201696432
+201695689
+201697143
+201697142
+201696431
+201695688
+201697140
+201696430
+201697139
+201695687
+201696429
+201695686
+201697138
+201695685
+201697137
+201697135
+201695684
+201695595
+201696428
+201696427
+201695594
+201697134
+201696426
+201697133
+201697132
+201695593
+201696425
+201695592
+201697131
+201697129
+201696424
+201697127
+201697128
+201695591
+201696423
+201696422
+201697125
+201696421
+201696420
+201697124
+201696419
+201696418
+201695590
+201697123
+201697122
+201695589
+201696417
+201697121
+201696416
+201696415
+201696414
+201697120
+201696629
+201696413
+201696412
+201697119
+201697118
+201696411
+201696628
+201696410
+201697117
+201696627
+201696626
+201696408
+201696625
+201696407
+201696406
+201696624
+201696405
+201696623
+201696622
+201697116
+201697115
+201696404
+201696620
+201696619
+201696402
+201696617
+201696616
+201696401
+201697111
+201696614
+201697311
+201696613
+201697310
+201696398
+201697309
+201696612
+201697308
+201697307
+201696397
+201697306
+201697305
+201696611
+201696609
+201696608
+201696607
+201696605
+201696394
+201696603
+201696393
+201696602
+201697301
+201696391
+201696390
+201696389
+201696388
+201696387
+201697300
+201697299
+201696601
+201696385
+201697298
+201697297
+201696384
+201696383
+201696600
+201697295
+201696382
+201697294
+201696599
+201696381
+201697293
+201697292
+201696378
+201697291
+201696598
+201696597
+201696377
+201696376
+201697289
+201696596
+201697288
+201696375
+201696595
+201696374
+201696373
+201696594
+201696371
+201696370
+201697287
+201697286
+201696593
+201696368
+201697285
+201696366
+201696365
+201697284
+201696591
+201697283
+201696589
+201696587
+201696363
+201696586
+201697282
+201697281
+201696360
+201697280
+201697278
+201696585
+201696584
+201697277
+201697276
+201697275
+201696583
+201697274
+201696358
+201697273
+201696356
+201696581
+201696355
+201696580
+201696354
+201697272
+201696579
+201696578
+201696577
+201697270
+201696576
+201696351
+201696574
+201696350
+201696349
+201696572
+201697267
+201696347
+201696571
+201695596
+201695605
+201696570
+201695604
+201696569
+201696568
+201696567
+201696566
+201697266
+201697265
+201697264
+201695602
+201696565
+201696564
+201697263
+201696563
+201696562
+201695601
+201696561
+201697262
+201696560
+201697261
+201697260
+201696559
+201696558
+201695600
+201696557
+201695599
+201697259
+201697258
+201695598
+201696556
+201695597
+201696555
+201697257
+201697256
+201696554
+201697255
+201695619
+201695618
+201695617
+201696553
+201696551
+201697254
+201696550
+201697253
+201696549
+201695612
+201697252
+201695611
+201697251
+201697249
+201695610
+201697248
+201696548
+201695609
+201697247
+201695608
+201695607
+201695606
+201695646
+201697245
+201695645
+201695644
+201695643
+201695642
+201696546
+201695641
+201697239
+201695640
+201697238
+201697237
+201697236
+201697235
+201696545
+201697234
+201696544
+201697233
+201697232
+201695638
+201696543
+201695637
+201697231
+201695636
+201697230
+201695635
+201696541
+201697229
+201697228
+201695634
+201697227
+201696540
+201696539
+201695633
+201695632
+201697226
+201696538
+201696537
+201695631
+201697225
+201696536
+201697224
+201695629
+201697222
+201697221
+201696535
+201696534
+201696533
+201696532
+201695626
+201695624
+201696531
+201696530
+201697219
+201697218
+201696529
+201696528
+201696527
+201696526
+201696525
+201696524
+201697217
+201696523
+201697216
+201695621
+201696522
+201695620
+201696521
+201697215
+201695683
+201695682
+201697214
+201697213
+201697212
+201695680
+201695679
+201696520
+201695678
+201696519
+201697211
+201695676
+201696518
+201696517
+201696516
+201696515
+201696514
+201697209
+201695674
+201697208
+201695672
+201695671
+201696512
+201697207
+201695667
+201695666
+201696511
+201697206
+201695665
+201697205
+201695663
+201697204
+201696510
+201695662
+201696509
+201695661
+201696508
+201695660
+201696507
+201697203
+201696506
+201697202
+201695658
+201697201
+201695657
+201695656
+201695655
+201697199
+201695654
+201695653
+201697198
+201697197
+201697196
+201697195
+201697194
+201695650
+201697193
+201697192
+201695649
+201697191
+201695648
+201695647
+201697190
+201697189
+201696505
+201695814
+201695813
+201696504
+201697188
+201696503
+201695812
+201695810
+201696502
+201697187
+201695809
+201697185
+201695808
+201697184
+201695807
+201696501
+201695806
+201697183
+201696500
+201696659
+201696658
+201696657
+201697182
+201696656
+201696655
+201697181
+201695805
+201695804
+201697180
+201697179
+201695803
+201696654
+201695802
+201695800
+201695799
+201695797
+201696653
+201696651
+201697175
+201695796
+201695795
+201695794
+201696649
+201696648
+201695793
+201695792
+201695791
+201695790
+201697172
+201695789
+201695788
+201696647
+201696646
+201695787
+201697170
+201695786
+201695785
+201697168
+201697167
+201695784
+201697166
+201696805
+201696898
+201697999
+201698741
+201697998
+201696897
+201698737
+201697997
+201696896
+201696895
+201696894
+201698734
+201698732
+201696804
+201698133
+201698729
+201696803
+201698728
+201698727
+201697996
+201698726
+201698725
+201698724
+201696801
+201697995
+201698723
+201698722
+201697994
+201697993
+201698720
+201698719
+201697992
+201697991
+201698717
+201698716
+201696800
+201698715
+201698714
+201697989
+201698713
+201698712
+201697988
+201697987
+201698711
+201697986
+201698709
+201698708
+201698706
+201697984
+201698705
+201697982
+201698703
+201698702
+201697981
+201698701
+201698700
+201697980
+201698699
+201697979
+201698698
+201697978
+201697977
+201697976
+201698697
+201698696
+201697975
+201696797
+201698695
+201698694
+201698693
+201696796
+201698691
+201696795
+201698690
+201697973
+201697972
+201698689
+201698688
+201697971
+201697970
+201697969
+201698687
+201698686
+201697968
+201698685
+201696794
+201698684
+201696793
+201698683
+201697967
+201698682
+201697966
+201697965
+201698681
+201698680
+201697964
+201698677
+201698676
+201698675
+201698674
+201698673
+201698672
+201696792
+201698671
+201696790
+201698670
+201697960
+201698669
+201698668
+201698667
+201698666
+201697956
+201698665
+201697955
+201697954
+201698664
+201697953
+201696789
+201698663
+201698662
+201697952
+201696788
+201698661
+201697951
+201698659
+201698658
+201698657
+201698656
+201696787
+201698655
+201698654
+201698653
+201698652
+201697949
+201697948
+201697947
+201698651
+201698650
+201698649
+201698648
+201697946
+201698647
+201697945
+201697944
+201697943
+201696786
+201697941
+201697940
+201698645
+201698644
+201697939
+201698643
+201698642
+201697938
+201698641
+201698640
+201696785
+201698639
+201698637
+201697937
+201698636
+201698635
+201696784
+201698634
+201698633
+201696783
+201698632
+201697935
+201698631
+201697934
+201698630
+201698629
+201698952
+201698951
+201697933
+201698950
+201696782
+201697932
+201698949
+201697931
+201698948
+201698947
+201697930
+201698946
+201696781
+201696780
+201696779
+201696778
+201696777
+201696776
+201698945
+201698944
+201698943
+201698942
+201698941
+201698940
+201698939
+201698938
+201698937
+201698936
+201697927
+201698935
+201697926
+201698933
+201697925
+201697924
+201697923
+201698931
+201698930
+201698929
+201697922
+201698928
+201697921
+201696775
+201697920
+201697919
+201698927
+201698926
+201698925
+201696774
+201697918
+201697621
+201698166
+201698922
+201698921
+201698918
+201697620
+201698917
+201697916
+201697914
+201698914
+201697913
+201697619
+201698913
+201697912
+201697911
+201697910
+201697909
+201698911
+201697618
+201698910
+201698909
+201697617
+201698908
+201698907
+201697907
+201697906
+201698906
+201698905
+201698904
+201697905
+201698903
+201697904
+201698902
+201697903
+201697616
+201698240
+201697902
+201697900
+201698238
+201698237
+201697898
+201697896
+201698236
+201698235
+201698234
+201697895
+201697615
+201697614
+201697893
+201697891
+201697889
+201697613
+201698232
+201698231
+201697612
+201697888
+201697887
+201697886
+201697885
+201698228
+201697884
+201697610
+201698227
+201697609
+201697608
+201697882
+201697881
+201697880
+201697879
+201698225
+201697607
+201697878
+201697877
+201697606
+201698224
+201698222
+201698221
+201697604
+201698220
+201697874
+201698219
+201698218
+201697603
+201697873
+201697872
+201698217
+201698216
+201697871
+201697870
+201697869
+201697868
+201698215
+201697602
+201697866
+201697601
+201698213
+201698212
+201697600
+201697599
+201698211
+201698210
+201698208
+201697863
+201697861
+201697862
+201698207
+201698206
+201697860
+201698205
+201697597
+201697859
+201698203
+201697858
+201698202
+201697857
+201698200
+201697856
+201698199
+201698275
+201697855
+201698274
+201698273
+201697854
+201697853
+201697851
+201698272
+201698271
+201698270
+201697649
+201697596
+201698269
+201697595
+201697648
+201697594
+201697647
+201697646
+201697645
+201698268
+201698266
+201697593
+201697644
+201697643
+201698265
+201697592
+201697642
+201697641
+201698264
+201696999
+201698263
+201698262
+201697639
+201698261
+201698260
+201698259
+201696938
+201696937
+201696936
+201697849
+201698257
+201697848
+201698256
+201697847
+201698255
+201696998
+201698254
+201696997
+201696996
+201697846
+201697845
+201697844
+201697843
+201698252
+201697842
+201697841
+201697839
+201698249
+201697838
+201697837
+201698247
+201697836
+201698246
+201698245
+201697835
+201697834
+201698244
+201698243
+201697833
+201697832
+201698835
+201698834
+201697831
+201698833
+201697830
+201697829
+201698832
+201697828
+201698831
+201697827
+201698830
+201698829
+201698828
+201697825
+201697824
+201697823
+201697822
+201698827
+201697820
+201697821
+201697818
+201697819
+201696994
+201697817
+201698826
+201697816
+201698825
+201697815
+201696993
+201696992
+201697814
+201697813
+201697812
+201698824
+201698823
+201696990
+201698822
+201698821
+201698820
+201697811
+201698818
+201697810
+201696989
+201697809
+201696988
+201697808
+201696987
+201697807
+201697806
+201698816
+201697805
+201698815
+201698814
+201697803
+201696986
+201697802
+201697801
+201696985
+201698813
+201696984
+201697800
+201697799
+201698812
+201697798
+201698811
+201696983
+201696982
+201697796
+201698809
+201697795
+201696981
+201697793
+201698808
+201698807
+201698806
+201696978
+201697790
+201697789
+201698804
+201696977
+201696976
+201698802
+201698801
+201698800
+201696975
+201698799
+201697787
+201698798
+201696974
+201697785
+201697784
+201697782
+201697781
+201696973
+201696972
+201696971
+201697779
+201698796
+201698795
+201698793
+201697778
+201696970
+201697777
+201697776
+201698791
+201697775
+201698790
+201698789
+201697773
+201697772
+201697771
+201697770
+201696968
+201698787
+201697768
+201697767
+201697766
+201697765
+201697764
+201697763
+201698784
+201698783
+201698782
+201697762
+201698781
+201697761
+201698780
+201697760
+201697759
+201697758
+201697757
+201697756
+201698778
+201696966
+201698777
+201697755
+201698776
+201697754
+201698775
+201697753
+201697752
+201698774
+201696965
+201698773
+201698772
+201697750
+201696964
+201698770
+201696963
+201698769
+201696962
+201696961
+201698767
+201696960
+201698766
+201697749
+201697748
+201698764
+201696959
+201697747
+201698763
+201698762
+201697746
+201696958
+201698165
+201697743
+201698760
+201697742
+201697741
+201697740
+201698758
+201697739
+201697738
+201697736
+201698757
+201698756
+201696957
+201697735
+201698998
+201697733
+201698997
+201697732
+201698996
+201698995
+201697731
+201697730
+201697729
+201696956
+201697728
+201696955
+201698994
+201698993
+201697725
+201697724
+201697723
+201697722
+201698990
+201697721
+201698989
+201698988
+201696954
+201698987
+201697712
+201698986
+201696953
+201697711
+201698985
+201698984
+201698983
+201698982
+201698980
+201697709
+201698979
+201696952
+201696951
+201698978
+201698976
+201696950
+201697708
+201696949
+201697707
+201698974
+201697706
+201698973
+201698972
+201697703
+201697702
+201697701
+201698971
+201698970
+201698968
+201697700
+201697699
+201697698
+201697697
+201697695
+201698965
+201698964
+201696947
+201697694
+201697693
+201696946
+201697692
+201698963
+201698962
+201698961
+201698960
+201697691
+201698959
+201697689
+201697687
+201698958
+201697685
+201697684
+201697683
+201697682
+201698957
+201697681
+201698956
+201697680
+201697679
+201698955
+201697678
+201698954
+201696945
+201697675
+201698537
+201697674
+201696944
+201696943
+201697673
+201698535
+201697672
+201698534
+201698533
+201698532
+201698531
+201697671
+201698530
+201697670
+201697669
+201698528
+201698527
+201698526
+201698525
+201698524
+201697667
+201696940
+201698523
+201698522
+201698521
+201698520
+201697665
+201698519
+201698517
+201696939
+201697663
+201697662
+201698516
+201697591
+201697661
+201697660
+201697659
+201697658
+201697590
+201698515
+201698514
+201697588
+201697657
+201698513
+201697587
+201698512
+201697656
+201697585
+201697584
+201698511
+201698510
+201698509
+201698508
+201698507
+201698506
+201698505
+201698504
+201698503
+201697583
+201697654
+201698501
+201698500
+201697653
+201698901
+201698900
+201697652
+201697651
+201697580
+201698899
+201697579
+201698898
+201697650
+201697576
+201698121
+201698120
+201697575
+201698119
+201698118
+201698897
+201698117
+201697574
+201698116
+201698896
+201698115
+201697573
+201698114
+201697572
+201698113
+201698895
+201697571
+201698893
+201698112
+201697569
+201697568
+201697567
+201698111
+201697566
+201698110
+201698892
+201698890
+201698889
+201697565
+201698109
+201698107
+201698888
+201698887
+201698125
+201698106
+201697563
+201697562
+201698885
+201698104
+201697561
+201698884
+201698883
+201698103
+201698102
+201697560
+201697559
+201698881
+201697558
+201698880
+201698100
+201697557
+201698099
+201698878
+201698097
+201697556
+201697555
+201697554
+201698096
+201697553
+201698095
+201698094
+201698875
+201698092
+201698091
+201698874
+201698090
+201697552
+201698873
+201698089
+201698088
+201698871
+201698087
+201698085
+201698084
+201698868
+201697551
+201697550
+201698082
+201698081
+201698867
+201698080
+201698079
+201697549
+201698078
+201698077
+201697548
+201698865
+201698076
+201697547
+201698864
+201698863
+201698862
+201698861
+201698075
+201698074
+201697546
+201698073
+201697545
+201697544
+201698072
+201697543
+201697542
+201697541
+201697540
+201698859
+201698070
+201697539
+201698857
+201698855
+201698853
+201697538
+201698068
+201698067
+201697537
+201698852
+201698066
+201698851
+201698850
+201698065
+201698064
+201698063
+201697535
+201697534
+201698848
+201697533
+201697532
+201698847
+201697531
+201697530
+201698062
+201698846
+201698061
+201698060
+201698844
+201697528
+201697527
+201698843
+201698059
+201697526
+201698842
+201697525
+201697524
+201697523
+201698841
+201698840
+201697521
+201698057
+201698839
+201698838
+201698837
+201698303
+201698301
+201698300
+201698299
+201698298
+201697520
+201698297
+201698296
+201697519
+201697518
+201698295
+201698056
+201698293
+201698055
+201697517
+201698054
+201698053
+201698291
+201698052
+201698290
+201698051
+201698050
+201698049
+201697515
+201698289
+201698048
+201698288
+201698047
+201698046
+201698287
+201698286
+201698045
+201698285
+201698044
+201698043
+201697514
+201698042
+201697513
+201698041
+201697512
+201698040
+201698283
+201698282
+201698281
+201698038
+201698037
+201698036
+201698280
+201697511
+201698279
+201698278
+201697510
+201698035
+201698277
+201697509
+201698755
+201697508
+201698753
+201698754
+201698034
+201698752
+201698751
+201698750
+201698749
+201698748
+201698033
+201698746
+201698032
+201697507
+201698745
+201697506
+201698031
+201697505
+201697504
+201697503
+201697502
+201697500
+201698030
+201697638
+201698029
+201698743
+201697637
+201698742
+201697636
+201697635
+201698628
+201697634
+201698624
+201698622
+201698620
+201698621
+201698619
+201697632
+201698027
+201698617
+201698618
+201697631
+201698616
+201698615
+201698026
+201698025
+201698614
+201697630
+201698613
+201697629
+201698612
+201698611
+201698610
+201698609
+201697628
+201698024
+201698023
+201697627
+201697626
+201698022
+201697625
+201698608
+201698607
+201698606
+201698605
+201697624
+201698604
+201698603
+201698602
+201698601
+201698021
+201698020
+201697623
+201697622
+201696935
+201698598
+201696934
+201698018
+201698017
+201696932
+201698597
+201696931
+201698596
+201698595
+201696930
+201698016
+201696929
+201698593
+201696928
+201698015
+201696927
+201698592
+201696926
+201698014
+201696925
+201698013
+201696924
+201698590
+201698589
+201698587
+201698011
+201696923
+201698010
+201696922
+201698586
+201698585
+201698584
+201698009
+201696921
+201698008
+201698007
+201698006
+201698582
+201698581
+201696920
+201698579
+201696919
+201698004
+201698003
+201698002
+201698001
+201696918
+201696917
+201698578
+201698577
+201696916
+201698000
+201698575
+201698574
+201698573
+201698198
+201698572
+201698570
+201698197
+201698196
+201696914
+201698566
+201698194
+201698193
+201698565
+201698564
+201696913
+201698192
+201698562
+201698561
+201696912
+201698191
+201698560
+201698559
+201698558
+201696911
+201698190
+201696910
+201698189
+201698188
+201696909
+201698187
+201698557
+201696908
+201698556
+201698186
+201698555
+201698185
+201696907
+201698554
+201696906
+201698184
+201696905
+201698124
+201698123
+201696904
+201698309
+201698308
+201696903
+201696902
+201696901
+201696900
+201698307
+201698183
+201698182
+201698181
+201698180
+201698306
+201698305
+201696899
+201698179
+201698178
+201698177
+201697718
+201698543
+201698176
+201698175
+201698174
+201697717
+201697716
+201698173
+201698172
+201698171
+201697715
+201698170
+201698540
+201697714
+201698169
+201698168
+201698541
+201698167
+201697713
+201699349
+201699348
+201699592
+201698499
+201699591
+201699590
+201698497
+201699347
+201698496
+201699346
+201699345
+201699588
+201699587
+201699342
+201699586
+201699341
+201698495
+201699340
+201698494
+201698493
+201698491
+201698489
+201699339
+201698488
+201698487
+201698486
+201698485
+201699584
+201699338
+201698484
+201698483
+201699337
+201698482
+201698481
+201698480
+201698479
+201699583
+201699336
+201698478
+201698477
+201698476
+201699335
+201698475
+201699334
+201698474
+201699333
+201699332
+201699331
+201698473
+201699582
+201699330
+201698472
+201699329
+201698471
+201699581
+201698470
+201698469
+201698468
+201698467
+201699328
+201698466
+201699327
+201699326
+201698463
+201698462
+201698461
+201698460
+201699324
+201699323
+201699322
+201698459
+201698458
+201698456
+201698455
+201698454
+201698453
+201698452
+201698451
+201698449
+201698448
+201698447
+201698446
+201698445
+201698444
+201699580
+201699321
+201699579
+201698443
+201698442
+201699320
+201698441
+201698440
+201698439
+201699577
+201698438
+201699319
+201698437
+201699318
+201698436
+201698435
+201698434
+201698432
+201699316
+201699576
+201698431
+201698430
+201698428
+201699315
+201698427
+201699314
+201699313
+201698426
+201699311
+201699310
+201698425
+201699309
+201699575
+201698424
+201699574
+201698423
+201698422
+201698421
+201698420
+201698419
+201698418
+201698415
+201698414
+201698413
+201699572
+201698412
+201698411
+201699308
+201699307
+201698410
+201699306
+201698409
+201698408
+201699305
+201698407
+201699304
+201699302
+201698406
+201699301
+201698405
+201698404
+201698403
+201699299
+201699298
+201698402
+201699571
+201699297
+201699296
+201699570
+201698401
+201698400
+201698399
+201698398
+201698397
+201699295
+201699569
+201699294
+201698395
+201698394
+201699292
+201698393
+201699291
+201699290
+201699568
+201698392
+201698391
+201699289
+201698390
+201699567
+201699288
+201698389
+201698388
+201698387
+201699566
+201699286
+201698386
+201698385
+201698384
+201698383
+201698382
+201698381
+201698380
+201699285
+201699284
+201699283
+201698379
+201698378
+201698376
+201698375
+201699564
+201698374
+201699563
+201699562
+201699282
+201699561
+201698373
+201698372
+201699560
+201698371
+201699280
+201699279
+201698370
+201699559
+201698369
+201699278
+201699276
+201699275
+201698368
+201699274
+201698364
+201699557
+201698363
+201699273
+201698362
+201699272
+201699271
+201698360
+201699270
+201699269
+201699555
+201699554
+201698359
+201699265
+201699264
+201699553
+201699263
+201698358
+201698357
+201699261
+201699260
+201698356
+201699552
+201698355
+201698354
+201698353
+201699551
+201698352
+201698351
+201698350
+201698349
+201698348
+201699257
+201699256
+201698347
+201699550
+201698346
+201699254
+201699253
+201698345
+201698344
+201698343
+201699549
+201699252
+201699251
+201699250
+201699548
+201699248
+201699247
+201699246
+201698342
+201698341
+201699245
+201699242
+201699241
+201699240
+201699546
+201698339
+201698338
+201698337
+201699238
+201699237
+201698336
+201698335
+201699236
+201699545
+201699235
+201698334
+201699234
+201698333
+201699544
+201698331
+201698330
+201699233
+201698329
+201699232
+201699231
+201699230
+201699229
+201699543
+201699228
+201699542
+201699541
+201698328
+201699227
+201699226
+201698326
+201699540
+201698325
+201699539
+201698323
+201699538
+201698322
+201699225
+201698321
+201698320
+201698319
+201698318
+201699223
+201699222
+201699537
+201698317
+201698316
+201699221
+201699220
+201698314
+201698313
+201698312
+201699219
+201699218
+201699217
+201699536
+201698311
+201699535
+201698164
+201698163
+201699534
+201698162
+201699533
+201699215
+201698160
+201698159
+201699532
+201698158
+201699531
+201699530
+201699529
+201699213
+201698157
+201698155
+201699211
+201699210
+201698153
+201699209
+201699528
+201698152
+201698151
+201698150
+201698149
+201699207
+201699205
+201699204
+201699203
+201699202
+201699201
+201699200
+201698148
+201699199
+201698147
+201699198
+201698145
+201698144
+201698143
+201698142
+201698141
+201699197
+201698140
+201699527
+201698139
+201698138
+201699196
+201699195
+201699194
+201699526
+201698137
+201698136
+201699525
+201699192
+201698135
+201699191
+201698134
+201699190
+201698131
+201699189
+201698130
+201698129
+201699188
+201699999
+201699998
+201699187
+201699523
+201699995
+201699994
+201699993
+201699186
+201699992
+201699991
+201699185
+201699184
+201699990
+201699989
+201699988
+201699987
+201699182
+201699181
+201699180
+201699179
+201699178
+201699986
+201699985
+201699984
+201699177
+201699522
+201699983
+201699521
+201699176
+201699982
+201699520
+201699175
+201699980
+201699979
+201699978
+201699518
+201699977
+201699976
+201699174
+201699975
+201699974
+201699517
+201699973
+201699173
+201699172
+201699170
+201699971
+201699970
+201699969
+201699168
+201699968
+201699967
+201699966
+201699167
+201699965
+201699166
+201699964
+201699963
+201699962
+201699961
+201699165
+201699515
+201699960
+201699959
+201699958
+201699957
+201699164
+201699163
+201699162
+201699514
+201699513
+201699161
+201699955
+201699160
+201699159
+201699158
+201699954
+201699157
+201699953
+201699156
+201699952
+201699512
+201699155
+201699154
+201699511
+201699510
+201699950
+201699509
+201699949
+201699153
+201699948
+201699947
+201699152
+201699507
+201699945
+201699151
+201699944
+201699943
+201699942
+201699150
+201699149
+201699941
+201699148
+201699940
+201699939
+201699938
+201699147
+201699146
+201699506
+201699145
+201699937
+201699505
+201699936
+201699935
+201699934
+201699933
+201699144
+201699932
+201699142
+201699931
+201699929
+201699928
+201699140
+201699927
+201699137
+201699925
+201699924
+201699136
+201699923
+201699922
+201699134
+201699920
+201699919
+201699133
+201699132
+201699918
+201699917
+201699916
+201699915
+201699914
+201699130
+201699913
+201699129
+201699912
+201699128
+201699911
+201699910
+201699908
+201699907
+201699127
+201699126
+201699906
+201699905
+201699904
+201699903
+201699124
+201699902
+201699901
+201699123
+201699900
+201699899
+201699121
+201699119
+201699120
+201699503
+201699502
+201699118
+201699898
+201699897
+201699896
+201699117
+201699895
+201699116
+201699115
+201699501
+201699500
+201699894
+201699114
+201699893
+201699892
+201699891
+201699111
+201699499
+201699498
+201699110
+201699108
+201699109
+201699890
+201699889
+201699888
+201699107
+201699105
+201699885
+201699884
+201699883
+201699497
+201699496
+201699882
+201699881
+201699104
+201699495
+201699880
+201699102
+201699494
+201699100
+201699879
+201699878
+201699492
+201699097
+201699877
+201699491
+201699096
+201699876
+201699875
+201699490
+201699095
+201699874
+201699489
+201699094
+201699873
+201699488
+201699871
+201699870
+201699487
+201699093
+201699868
+201699092
+201699091
+201699486
+201699867
+201699866
+201699090
+201699089
+201699865
+201699088
+201699087
+201699864
+201699085
+201699485
+201699084
+201699083
+201699082
+201699081
+201699080
+201699860
+201699859
+201699484
+201699858
+201699857
+201699079
+201699483
+201699856
+201699855
+201699854
+201699482
+201699077
+201699853
+201699852
+201699076
+201699075
+201699851
+201699850
+201699849
+201699074
+201699848
+201699847
+201699846
+201699845
+201699073
+201699844
+201699072
+201699071
+201699843
+201699842
+201699481
+201699841
+201699840
+201699480
+201699839
+201699070
+201699068
+201699838
+201699067
+201699064
+201699062
+201699479
+201699835
+201699061
+201699833
+201699060
+201699832
+201699831
+201699059
+201699478
+201699477
+201699476
+201699475
+201699830
+201699057
+201699829
+201699828
+201699474
+201699056
+201699826
+201699825
+201699055
+201699824
+201699823
+201699822
+201699053
+201699819
+201699052
+201699051
+201699050
+201699048
+201699472
+201699816
+201699815
+201699045
+201699044
+201699471
+201699042
+201699814
+201699041
+201699040
+201699039
+201699038
+201699036
+201699813
+201699812
+201699470
+201699811
+201699810
+201699809
+201699035
+201699808
+201699807
+201699034
+201699032
+201699467
+201699030
+201699804
+201699803
+201699466
+201699801
+201699800
+201699799
+201699028
+201699464
+201699797
+201699796
+201699025
+201699024
+201699794
+201699023
+201699463
+201699022
+201699021
+201699792
+201699462
+201699020
+201699791
+201699019
+201699461
+201699790
+201699789
+201699788
+201699787
+201699786
+201699016
+201699015
+201699014
+201699013
+201699012
+201699011
+201699010
+201699784
+201699783
+201699782
+201699009
+201699781
+201699780
+201699459
+201699008
+201699007
+201699779
+201699778
+201699777
+201699776
+201699458
+201699006
+201699004
+201699003
+201699774
+201699773
+201699772
+201699002
+201699771
+201699457
+201699770
+201699001
+201699768
+201699456
+201699000
+201700499
+201700498
+201699767
+201699455
+201700497
+201700496
+201699765
+201699453
+201700495
+201700494
+201699452
+201699764
+201699451
+201699763
+201699762
+201700492
+201699761
+201700491
+201700490
+201699450
+201700488
+201699449
+201700487
+201699760
+201699758
+201699447
+201700486
+201699446
+201699754
+201700485
+201700484
+201700483
+201699752
+201700482
+201699751
+201699443
+201700480
+201699749
+201699440
+201699439
+201700479
+201699748
+201699747
+201699745
+201699744
+201699438
+201700478
+201700477
+201700476
+201699741
+201700475
+201699740
+201699739
+201699738
+201699737
+201700474
+201699736
+201699735
+201699734
+201699437
+201700472
+201699436
+201699435
+201700471
+201699434
+201700468
+201700467
+201699732
+201700466
+201700465
+201699433
+201699730
+201699729
+201699728
+201699727
+201700464
+201699432
+201699726
+201699724
+201699723
+201699431
+201699430
+201699722
+201700463
+201700462
+201699721
+201699720
+201700461
+201699429
+201699719
+201699718
+201699428
+201699717
+201699427
+201699426
+201699716
+201700459
+201700458
+201700457
+201699425
+201699715
+201699424
+201699714
+201699423
+201699422
+201699713
+201699712
+201700456
+201699421
+201699711
+201700455
+201699710
+201700454
+201699709
+201699708
+201699707
+201699419
+201699705
+201699418
+201700453
+201699704
+201699703
+201699417
+201699416
+201699415
+201699701
+201700452
+201700451
+201699700
+201700450
+201700449
+201699697
+201699414
+201699696
+201699413
+201699695
+201700448
+201699412
+201699692
+201699411
+201699691
+201700445
+201699690
+201699689
+201699410
+201700444
+201700443
+201699409
+201700442
+201700441
+201700440
+201699408
+201699688
+201700439
+201700438
+201699407
+201699687
+201699686
+201699685
+201699684
+201699683
+201699406
+201700437
+201699682
+201700436
+201699405
+201699681
+201699680
+201699679
+201700435
+201700434
+201699678
+201700433
+201699404
+201699403
+201699402
+201700431
+201699401
+201700430
+201699677
+201699676
+201699400
+201700429
+201700428
+201699399
+201700426
+201700427
+201699674
+201700425
+201699398
+201700424
+201699673
+201700423
+201699672
+201699671
+201700422
+201699670
+201699396
+201700421
+201700420
+201700419
+201699665
+201699393
+201699392
+201700418
+201700417
+201699664
+201699663
+201699662
+201699661
+201699660
+201699659
+201700415
+201700414
+201700413
+201699391
+201699390
+201700412
+201699658
+201699657
+201699389
+201699656
+201699655
+201699388
+201699387
+201699654
+201700411
+201699653
+201700410
+201700409
+201699652
+201699651
+201699386
+201699385
+201699649
+201699650
+201699648
+201700408
+201700407
+201699647
+201699646
+201700406
+201700405
+201699645
+201699643
+201699384
+201699383
+201699382
+201699381
+201699642
+201699640
+201700403
+201699379
+201699380
+201699639
+201700402
+201699378
+201699637
+201700401
+201699377
+201699636
+201700400
+201700399
+201700398
+201699635
+201699634
+201699633
+201699376
+201699375
+201700397
+201699374
+201699632
+201700396
+201699630
+201699372
+201700393
+201700392
+201699371
+201699370
+201700391
+201700390
+201700389
+201699369
+201699368
+201699628
+201699627
+201699367
+201700388
+201699626
+201700387
+201699366
+201699625
+201700385
+201699365
+201699624
+201699623
+201699364
+201699363
+201699622
+201699362
+201700384
+201699361
+201699360
+201699621
+201699359
+201699358
+201699357
+201700382
+201699620
+201699619
+201700381
+201699618
+201699356
+201700380
+201699355
+201700379
+201699354
+201699617
+201699616
+201700378
+201700377
+201700376
+201700375
+201700374
+201699614
+201699612
+201699611
+201700371
+201699353
+201699352
+201699610
+201699351
+201699350
+201700369
+201699608
+201699607
+201699606
+201699605
+201699604
+201700366
+201699603
+201699602
+201699600
+201699599
+201700365
+201700364
+201700363
+201700362
+201700361
+201699598
+201700360
+201699597
+201700359
+201699595
+201699593
+201700021
+201700020
+201700352
+201700119
+201700350
+201700117
+201700116
+201700001
+201700002
+201700003
+201700115
+201700348
+201700004
+201700114
+201700005
+201700006
+201700007
+201700008
+201700010
+201700347
+201700011
+201700346
+201700012
+201700013
+201700014
+201700345
+201700015
+201700016
+201700018
+201700344
+201700549
+201700343
+201700548
+201700342
+201700546
+201700340
+201700543
+201700542
+201700541
+201700338
+201700337
+201700336
+201700113
+201700335
+201700539
+201700537
+201700536
+201700334
+201700535
+201700112
+201700534
+201700533
+201700110
+201700108
+201700532
+201700530
+201700529
+201700107
+201700528
+201700332
+201700527
+201700526
+201700523
+201700331
+201700106
+201700521
+201700520
+201700519
+201700518
+201700517
+201700330
+201700328
+201700327
+201700516
+201700515
+201700514
+201700513
+201700511
+201700325
+201700324
+201700323
+201700509
+201700105
+201700508
+201700103
+201700507
+201700102
+201700101
+201700100
+201700321
+201700099
+201700098
+201700320
+201700319
+201700318
+201700505
+201700504
+201700503
+201700502
+201700097
+201700096
+201700316
+201700500
+201700315
+201700633
+201700632
+201700631
+201700630
+201700313
+201700629
+201700628
+201700312
+201700310
+201700309
+201700625
+201700624
+201700308
+201700622
+201700620
+201700619
+201700095
+201700618
+201700307
+201700306
+201700305
+201700617
+201700303
+201700302
+201700094
+201700616
+201700093
+201700092
+201700300
+201700615
+201700613
+201700091
+201700090
+201700612
+201700611
+201700298
+201700297
+201700609
+201700608
+201700089
+201700296
+201700295
+201700606
+201700294
+201700605
+201700604
+201700088
+201700603
+201700602
+201700293
+201700601
+201700600
+201700599
+201700291
+201700598
+201700596
+201700595
+201700593
+201700592
+201700085
+201700289
+201700084
+201700591
+201700288
+201700287
+201700590
+201700589
+201700588
+201700587
+201700585
+201700584
+201700583
+201700285
+201700581
+201700580
+201700284
+201700283
+201700579
+201700578
+201700577
+201700282
+201700280
+201700576
+201700575
+201700574
+201700082
+201700278
+201700277
+201700081
+201700276
+201700275
+201700573
+201700572
+201700571
+201700273
+201700272
+201700271
+201700270
+201700269
+201700569
+201700268
+201700568
+201700567
+201700267
+201700566
+201700565
+201700266
+201700080
+201700079
+201700265
+201700563
+201700263
+201700562
+201700561
+201700077
+201700560
+201700262
+201700076
+201700559
+201700261
+201700075
+201700260
+201700259
+201700558
+201700557
+201700556
+201700555
+201700258
+201700554
+201700553
+201700256
+201700255
+201700552
+201700551
+201700550
+201700253
+201700074
+201700742
+201700741
+201700740
+201700739
+201700737
+201700073
+201700072
+201700252
+201700251
+201700736
+201700070
+201700735
+201700069
+201700250
+201700734
+201700733
+201700730
+201700729
+201700249
+201700248
+201700728
+201700727
+201700726
+201700725
+201700247
+201700724
+201700068
+201700722
+201700246
+201700245
+201700720
+201700244
+201700719
+201700067
+201700243
+201700718
+201700242
+201700717
+201700716
+201700715
+201700714
+201700713
+201700066
+201700065
+201700711
+201700064
+201700710
+201700240
+201700709
+201700238
+201700063
+201700237
+201700235
+201700708
+201700707
+201700706
+201700705
+201700704
+201700703
+201700062
+201700232
+201700061
+201700701
+201700700
+201700699
+201700231
+201700060
+201700059
+201700058
+201700230
+201700697
+201700057
+201700696
+201700229
+201700695
+201700694
+201700693
+201700227
+201700692
+201700691
+201700226
+201700225
+201700224
+201700223
+201700222
+201700690
+201701064
+201701063
+201701062
+201701061
+201701060
+201701059
+201701058
+201701057
+201700055
+201701056
+201701055
+201700689
+201701054
+201700054
+201700688
+201701053
+201701052
+201700053
+201700686
+201700685
+201701050
+201700684
+201700683
+201700682
+201700681
+201700052
+201701048
+201700680
+201700051
+201700679
+201700050
+201700049
+201701047
+201701046
+201701045
+201701044
+201700048
+201701043
+201700678
+201701042
+201701041
+201700047
+201700677
+201700676
+201700675
+201700674
+201701040
+201701039
+201700673
+201700046
+201700672
+201701038
+201700670
+201700669
+201701037
+201700668
+201701036
+201701035
+201701034
+201700667
+201700666
+201700665
+201700045
+201700664
+201701032
+201700663
+201700662
+201700660
+201700659
+201700044
+201700658
+201700043
+201700657
+201700656
+201700655
+201700654
+201700653
+201700652
+201700651
+201700650
+201701029
+201700649
+201701027
+201700042
+201700648
+201701026
+201701025
+201700647
+201700041
+201700646
+201700645
+201700644
+201701023
+201700642
+201700641
+201700040
+201700640
+201700038
+201700037
+201701019
+201700638
+201700637
+201701018
+201701017
+201700036
+201701016
+201700635
+201700634
+201701014
+201701013
+201700830
+201701012
+201701011
+201700035
+201700829
+201701010
+201700826
+201700825
+201701009
+201701008
+201701007
+201700824
+201700823
+201701006
+201701005
+201700822
+201701004
+201701003
+201700820
+201701001
+201700819
+201700818
+201701000
+201701161
+201700817
+201701160
+201701159
+201701158
+201700816
+201701157
+201701156
+201700814
+201701155
+201700813
+201700812
+201701154
+201701153
+201701152
+201701151
+201701150
+201701149
+201700811
+201700810
+201700809
+201701148
+201701147
+201701146
+201701145
+201701144
+201701143
+201701142
+201700808
+201701141
+201701140
+201701139
+201701138
+201700807
+201700806
+201701137
+201700034
+201700033
+201701136
+201700032
+201701135
+201701134
+201700031
+201700805
+201701133
+201700030
+201700804
+201701132
+201700803
+201701131
+201701130
+201700801
+201700802
+201700800
+201700799
+201700029
+201700798
+201700797
+201700028
+201701129
+201700796
+201701128
+201700795
+201701127
+201701126
+201700794
+201700793
+201700791
+201700789
+201700788
+201700787
+201701123
+201701122
+201700027
+201700026
+201700786
+201700025
+201700785
+201701121
+201700784
+201701120
+201701119
+201700783
+201700782
+201701117
+201700781
+201700780
+201701115
+201701114
+201700779
+201700777
+201701113
+201700024
+201700776
+201700774
+201700773
+201701111
+201701110
+201700772
+201700771
+201701109
+201701108
+201700770
+201701107
+201700769
+201700768
+201700767
+201700023
+201700766
+201700765
+201700764
+201700763
+201700022
+201701105
+201701104
+201701103
+201700760
+201700759
+201701101
+201700757
+201700756
+201700755
+201700754
+201700753
+201701099
+201701098
+201701097
+201700221
+201700220
+201701096
+201700219
+201700751
+201700218
+201701094
+201700750
+201701092
+201700749
+201700217
+201701091
+201701090
+201701089
+201700748
+201700747
+201700746
+201701087
+201700745
+201701086
+201701085
+201700216
+201701084
+201701083
+201700743
+201701081
+201701080
+201700917
+201701079
+201700916
+201701078
+201701077
+201700914
+201700913
+201700912
+201700215
+201700214
+201701075
+201700911
+201700213
+201700910
+201700909
+201700212
+201700908
+201700211
+201700210
+201701074
+201701073
+201700907
+201700906
+201700209
+201701072
+201700208
+201700905
+201700904
+201700207
+201701071
+201700903
+201701070
+201700902
+201700901
+201701069
+201701068
+201700206
+201701065
+201701250
+201701249
+201700898
+201701248
+201701247
+201700897
+201701246
+201700896
+201700895
+201701245
+201700894
+201700204
+201701244
+201700203
+201701242
+201701241
+201701240
+201701239
+201701237
+201701236
+201701235
+201700202
+201700201
+201700200
+201700891
+201701234
+201700199
+201701233
+201701231
+201700198
+201701229
+201701230
+201700196
+201701228
+201701227
+201701226
+201701225
+201701224
+201700195
+201700887
+201700194
+201700193
+201701222
+201700885
+201700192
+201701221
+201700191
+201700190
+201700189
+201700188
+201700187
+201700883
+201701220
+201701219
+201701218
+201701215
+201701214
+201701213
+201701211
+201700186
+201700185
+201701209
+201700879
+201701208
+201701207
+201700184
+201701206
+201701205
+201701204
+201701202
+201701201
+201700183
+201700181
+201701200
+201700876
+201701198
+201701197
+201700873
+201700179
+201701196
+201700178
+201700866
+201700865
+201701195
+201701194
+201700176
+201701193
+201701192
+201700175
+201700174
+201700863
+201701191
+201700862
+201700861
+201701190
+201700860
+201700859
+201700173
+201701188
+201700172
+201701187
+201700858
+201700171
+201700856
+201701186
+201700170
+201701184
+201700169
+201701182
+201701181
+201700852
+201701180
+201700851
+201700850
+201701178
+201701177
+201700168
+201701176
+201700167
+201700166
+201700165
+201700847
+201700164
+201700846
+201701174
+201700162
+201701171
+201700161
+201701170
+201701168
+201701167
+201701166
+201700840
+201700839
+201700838
+201700160
+201701165
+201700837
+201700836
+201700834
+201700833
+201700832
+201700831
+201700159
+201700999
+201700998
+201700997
+201700996
+201700157
+201700995
+201700156
+201700994
+201700993
+201700992
+201701164
+201700991
+201700990
+201701163
+201701162
+201701316
+201700155
+201700988
+201701315
+201701314
+201700154
+201700987
+201700986
+201701310
+201700985
+201700153
+201701308
+201700152
+201700151
+201701307
+201700150
+201700983
+201701306
+201701305
+201700982
+201700981
+201701304
+201700980
+201701303
+201700148
+201700147
+201701301
+201700979
+201701300
+201700146
+201700145
+201700144
+201701299
+201701298
+201701297
+201700143
+201700978
+201700142
+201700976
+201700977
+201700141
+201700140
+201700974
+201700973
+201700139
+201700972
+201701295
+201701294
+201700971
+201700970
+201701293
+201700968
+201700138
+201700967
+201701292
+201700137
+201700136
+201700966
+201700135
+201701291
+201700965
+201700134
+201700963
+201700962
+201700961
+201701289
+201701288
+201700960
+201700957
+201700956
+201701287
+201700133
+201701286
+201700954
+201701285
+201701284
+201701283
+201701281
+201700953
+201700131
+201700130
+201700952
+201700951
+201701279
+201700128
+201700950
+201701258
+201700127
+201700126
+201700947
+201700125
+201700944
+201700943
+201700942
+201701276
+201700940
+201700939
+201700938
+201701275
+201700937
+201700936
+201700935
+201700123
+201700122
+201700933
+201700121
+201700120
+201700931
+201700930
+201700929
+201700928
+201700927
+201701274
+201700358
+201701273
+201701272
+201701271
+201700357
+201700356
+201701270
+201700926
+201701269
+201701268
+201700924
+201700923
+201701267
+201700355
+201700922
+201700921
+201700920
+201701266
+201701265
+201701263
+201701262
+201701261
+201700919
+201700354
+201700353
+201700918
+201701260
+201701259
+201701980
+201702224
+201701983
+201702540
+201702222
+201702539
+201702538
+201701979
+201702537
+201701326
+201702546
+201702594
+201701978
+201702221
+201701977
+201702535
+201701445
+201701405
+201702536
+201702534
+201701418
+201702340
+201702353
+201701975
+201702607
+201702220
+201702371
+201702583
+201702219
+201701974
+201701976
+201701973
+201702218
+201701972
+201702217
+201702533
+201702215
+201702237
+201702216
+201701480
+201702214
+201702213
+201702531
+201702532
+201701970
+201701971
+201702212
+201701969
+201702210
+201702211
+201701493
+201702209
+201702530
+201702529
+201701412
+201701411
+201701410
+201702208
+201701409
+201701408
+201701407
+201702207
+201701406
+201702576
+201701476
+201702225
+201702528
+201702205
+201702527
+201701967
+201701965
+201702203
+201702202
+201701964
+201701432
+201701427
+201702201
+201701963
+201701966
+201702526
+201701962
+201702200
+201702204
+201701961
+201702575
+201701420
+201701959
+201702567
+201702198
+201701960
+201701958
+201701956
+201701957
+201701968
+201702195
+201702525
+201702254
+201702196
+201702199
+201702524
+201701463
+201701955
+201702307
+201702194
+201702193
+201701954
+201702197
+201702593
+201702298
+201702574
+201702191
+201701985
+201702192
+201702190
+201702360
+201702189
+201701364
+201701952
+201702187
+201701953
+201702523
+201701951
+201702188
+201701419
+201702186
+201702185
+201702554
+201702183
+201702184
+201701949
+201702521
+201702182
+201701482
+201702181
+201701948
+201701334
+201702180
+201702179
+201702553
+201701946
+201701485
+201701947
+201702280
+201702177
+201702176
+201702178
+201701944
+201702175
+201701444
+201702174
+201702172
+201701448
+201702173
+201701941
+201701940
+201702602
+201702520
+201701320
+201701943
+201701942
+201702171
+201702170
+201702169
+201702168
+201701939
+201701336
+201702559
+201701986
+201702165
+201702166
+201701484
+201702547
+201701945
+201702163
+201701993
+201702162
+201701360
+201701333
+201701359
+201702555
+201702309
+201702161
+201702164
+201702160
+201702282
+201701950
+201702167
+201702252
+201702519
+201701938
+201702159
+201702518
+201702158
+201701800
+201702582
+201702517
+201701934
+201702156
+201702563
+201701935
+201701936
+201702267
+201702157
+201701988
+201702312
+201702155
+201702154
+201702153
+201701256
+201702152
+201702151
+201702149
+201702150
+201702515
+201701931
+201701933
+201702148
+201702516
+201701369
+201702147
+201702146
+201702599
+201701930
+201701367
+201702144
+201702513
+201702145
+201702143
+201701929
+201702284
+201702142
+201701928
+201701932
+201702511
+201702141
+201702510
+201702140
+201702512
+201702249
+201702137
+201702139
+201702514
+201702274
+201702509
+201702138
+201702286
+201702135
+201701997
+201701994
+201702508
+201701323
+201702507
+201702229
+201701927
+201701926
+201702506
+201702281
+201702305
+201702505
+201702136
+201702134
+201701924
+201702504
+201702503
+201701923
+201702502
+201701925
+201701921
+201702133
+201701352
+201702501
+201701351
+201702132
+201701253
+201702131
+201701919
+201701922
+201701920
+201701322
+201701361
+201702129
+201701392
+201701391
+201702130
+201701358
+201701390
+201701332
+201701331
+201701389
+201701330
+201701329
+201701388
+201701328
+201701387
+201701452
+201701318
+201701918
+201701917
+201701386
+201701385
+201703499
+201701384
+201702128
+201701349
+201701383
+201703498
+201701348
+201702560
+201701347
+201701382
+201703496
+201701346
+201701916
+201701381
+201701345
+201701461
+201701344
+201701380
+201702127
+201703497
+201701379
+201701337
+201701378
+201701368
+201701377
+201702306
+201701915
+201701937
+201701376
+201701398
+201701397
+201702598
+201701375
+201701396
+201701459
+201702126
+201701395
+201701374
+201703495
+201701340
+201701373
+201701911
+201701394
+201701912
+201701371
+201703494
+201701370
+201702124
+201701343
+201701913
+201702123
+201701342
+201701356
+201701996
+201701910
+201703492
+201701995
+201702121
+201702122
+201703493
+201701488
+201703491
+201701433
+201701257
+201702120
+201703490
+201702564
+201701254
+201701906
+201701907
+201701255
+201702243
+201702119
+201701908
+201701319
+201701903
+201702591
+201702226
+201702580
+201703489
+201702125
+201702118
+201701324
+201701446
+201701909
+201703488
+201703486
+201701902
+201701252
+201702579
+201702114
+201701251
+201701492
+201702115
+201703487
+201701901
+201701999
+201702113
+201702116
+201701998
+201702112
+201702586
+201702331
+201701321
+201701898
+201702111
+201701900
+201702240
+201702110
+201701897
+201701905
+201703484
+201702109
+201702107
+201703485
+201702117
+201702106
+201703483
+201701896
+201702104
+201701899
+201702108
+201702337
+201702102
+201701895
+201702103
+201702101
+201702099
+201703481
+201702098
+201701894
+201702234
+201702097
+201703482
+201701892
+201702096
+201701984
+201702095
+201702093
+201702100
+201702094
+201703480
+201702105
+201703479
+201701891
+201702091
+201702090
+201701889
+201702092
+201701888
+201702089
+201701890
+201701886
+201702088
+201702086
+201702236
+201702087
+201701882
+201702085
+201702233
+201701477
+201701885
+201701880
+201702083
+201701883
+201702082
+201702321
+201702084
+201702081
+201702552
+201702080
+201701878
+201702079
+201701879
+201703478
+201702076
+201702075
+201702074
+201702077
+201702073
+201702072
+201701875
+201702261
+201702078
+201701987
+201702071
+201701876
+201701872
+201701877
+201701870
+201702605
+201702070
+201701456
+201701904
+201702346
+201702069
+201702068
+201701893
+201703476
+201703477
+201702067
+201702558
+201701992
+201702587
+201701366
+201701887
+201702065
+201701884
+201702064
+201701869
+201701867
+201701866
+201701871
+201702358
+201701873
+201702061
+201702059
+201702063
+201701354
+201702060
+201703475
+201702062
+201701865
+201702058
+201702570
+201701864
+201701491
+201701355
+201702057
+201703474
+201701862
+201701861
+201702322
+201703473
+201702056
+201701860
+201701868
+201701404
+201702055
+201703472
+201702054
+201701859
+201702227
+201702571
+201701857
+201702543
+201702573
+201702066
+201701855
+201702053
+201701858
+201701854
+201702052
+201701851
+201702051
+201703470
+201701982
+201702050
+201702049
+201701852
+201701474
+201701989
+201701850
+201702048
+201702047
+201702046
+201702366
+201702544
+201701849
+201703469
+201703466
+201702592
+201701443
+201703468
+201703467
+201701847
+201703465
+201702044
+201701848
+201701853
+201701339
+201702045
+201701842
+201701841
+201702043
+201701840
+201701466
+201701839
+201703464
+201702042
+201702041
+201701990
+201701845
+201701843
+201703471
+201702589
+201701846
+201702040
+201703463
+201703462
+201702039
+201701422
+201702301
+201701836
+201702368
+201701483
+201703461
+201702038
+201701831
+201702037
+201701834
+201701837
+201703460
+201702549
+201703459
+201701833
+201703458
+201702036
+201701832
+201701830
+201702035
+201701838
+201703457
+201702034
+201701829
+201702603
+201701338
+201701827
+201703456
+201702033
+201701450
+201701442
+201701826
+201701828
+201701447
+201703455
+201701497
+201702259
+201701825
+201701357
+201701863
+201702231
+201703454
+201702032
+201701824
+201702031
+201702541
+201703452
+201702030
+201703453
+201702542
+201702228
+201701426
+201701823
+201703451
+201701822
+201702232
+201701821
+201702029
+201702028
+201701835
+201702025
+201702027
+201702024
+201702596
+201701429
+201702026
+201701819
+201701818
+201702269
+201702023
+201702021
+201702022
+201701460
+201701816
+201701817
+201702020
+201701437
+201702294
+201702019
+201701815
+201701820
+201702230
+201701813
+201701881
+201701814
+201702018
+201702016
+201702017
+201702015
+201703450
+201701812
+201701991
+201701981
+201702001
+201701810
+201702590
+201702011
+201703449
+201702581
+201702572
+201703448
+201701809
+201701874
+201701808
+201702012
+201701811
+201702010
+201702320
+201701807
+201701806
+201702009
+201702363
+201703446
+201702008
+201703447
+201701805
+201702565
+201702007
+201702006
+201702005
+201703445
+201702014
+201701804
+201702004
+201701802
+201702247
+201701803
+201702003
+201702000
+201701798
+201702997
+201703444
+201702996
+201701797
+201703443
+201703442
+201701796
+201701795
+201701794
+201703441
+201701793
+201701792
+201702994
+201701791
+201701790
+201702991
+201703440
+201702990
+201702988
+201703439
+201703438
+201703437
+201701788
+201701787
+201701786
+201703436
+201703435
+201702986
+201701785
+201702983
+201702981
+201701784
+201701783
+201702979
+201702978
+201701782
+201703434
+201701780
+201701779
+201701778
+201701776
+201701775
+201701774
+201703433
+201701773
+201703432
+201702976
+201702975
+201703431
+201703430
+201701769
+201703429
+201703428
+201701768
+201702972
+201703427
+201703425
+201702971
+201703424
+201703423
+201703422
+201702969
+201701766
+201703421
+201701765
+201701764
+201701763
+201703420
+201701762
+201703418
+201702965
+201702964
+201703417
+201702963
+201701759
+201701760
+201701758
+201703416
+201703415
+201703414
+201702959
+201701757
+201701756
+201703412
+201701755
+201703411
+201703410
+201703409
+201702956
+201701754
+201702955
+201701753
+201701752
+201703407
+201703406
+201701750
+201703405
+201701749
+201703404
+201702953
+201703403
+201701748
+201703402
+201701747
+201701745
+201702951
+201702950
+201701744
+201701743
+201701742
+201702949
+201703399
+201701740
+201701739
+201703397
+201702946
+201701738
+201701737
+201701736
+201702945
+201701735
+201701734
+201702944
+201703396
+201702943
+201701730
+201703395
+201702941
+201701728
+201701727
+201703394
+201701726
+201701725
+201703392
+201703391
+201701724
+201703390
+201701723
+201701722
+201702939
+201702938
+201702937
+201703389
+201702935
+201701721
+201703388
+201702934
+201703387
+201703386
+201701719
+201703385
+201702931
+201702930
+201701718
+201702929
+201701717
+201701716
+201701714
+201703384
+201702928
+201701713
+201701712
+201703383
+201701711
+201701710
+201701709
+201701708
+201701707
+201703381
+201701706
+201703380
+201702926
+201702925
+201701704
+201701703
+201703379
+201701702
+201703378
+201701701
+201702923
+201703377
+201703375
+201703374
+201701699
+201701698
+201702922
+201701697
+201701696
+201701695
+201702918
+201701694
+201701693
+201702913
+201701692
+201702912
+201702910
+201702909
+201701690
+201702908
+201702907
+201701689
+201703373
+201702905
+201702904
+201703372
+201701688
+201703371
+201701687
+201703370
+201701685
+201702902
+201702901
+201703369
+201703368
+201701684
+201701683
+201703365
+201702900
+201703364
+201702899
+201702898
+201703363
+201702897
+201702896
+201701681
+201703362
+201701680
+201702895
+201701678
+201701677
+201702893
+201703360
+201702892
+201701676
+201701675
+201703359
+201702891
+201703358
+201701674
+201701673
+201703357
+201702890
+201702888
+201702887
+201701672
+201701671
+201702886
+201703356
+201701670
+201703355
+201703354
+201701669
+201702884
+201702883
+201702882
+201701667
+201701666
+201701665
+201701664
+201701662
+201703352
+201701661
+201703351
+201702880
+201702879
+201701660
+201703350
+201701659
+201701658
+201701657
+201701656
+201703348
+201703347
+201701655
+201703346
+201702876
+201701654
+201701653
+201703345
+201701652
+201703344
+201703343
+201703342
+201701651
+201701650
+201702875
+201702874
+201702873
+201702872
+201701649
+201701648
+201701647
+201701646
+201701645
+201702871
+201701644
+201701643
+201702870
+201702869
+201702868
+201703340
+201701642
+201702867
+201703339
+201702866
+201701641
+201702865
+201701640
+201703338
+201703337
+201703336
+201703335
+201703334
+201702864
+201702863
+201701639
+201703333
+201701638
+201702862
+201703332
+201702861
+201702860
+201702859
+201701636
+201702857
+201701635
+201702856
+201703331
+201701634
+201701633
+201702853
+201702852
+201703330
+201702851
+201701631
+201701630
+201703329
+201701629
+201701628
+201701627
+201702849
+201701626
+201702847
+201702846
+201703328
+201701625
+201703327
+201703326
+201701624
+201702844
+201703325
+201701623
+201702843
+201703324
+201703323
+201701621
+201701620
+201703322
+201701619
+201703321
+201702842
+201702841
+201703320
+201703319
+201701618
+201702839
+201701617
+201701615
+201701613
+201702838
+201701612
+201701611
+201702837
+201702836
+201703318
+201701610
+201702835
+201703317
+201702834
+201702833
+201702832
+201703316
+201703315
+201701608
+201702831
+201701606
+201701603
+201701602
+201701601
+201702829
+201703314
+201701600
+201703313
+201703311
+201702828
+201701599
+201701598
+201701597
+201701596
+201703310
+201702826
+201703309
+201703308
+201702825
+201703307
+201701594
+201702824
+201701592
+201702823
+201702822
+201701591
+201701590
+201702821
+201702820
+201701589
+201701587
+201702818
+201703306
+201702817
+201701586
+201703305
+201702816
+201702815
+201702813
+201701584
+201701583
+201702812
+201703304
+201703303
+201703302
+201702811
+201702810
+201702809
+201701582
+201702808
+201702807
+201702806
+201701581
+201702805
+201701580
+201701579
+201702804
+201702803
+201702802
+201702800
+201701578
+201702799
+201701577
+201702798
+201702796
+201702795
+201703301
+201703300
+201701575
+201701574
+201701572
+201702794
+201703299
+201701571
+201702792
+201703298
+201702791
+201703296
+201703295
+201701570
+201703294
+201702789
+201702788
+201703293
+201702784
+201703292
+201703291
+201702783
+201702782
+201702781
+201701569
+201703289
+201702779
+201703288
+201702776
+201702774
+201701567
+201701566
+201703287
+201701565
+201702773
+201702772
+201701564
+201703286
+201703285
+201702771
+201701563
+201702769
+201702768
+201703284
+201703283
+201703282
+201703281
+201701561
+201701560
+201701559
+201701558
+201702764
+201701557
+201701556
+201703280
+201702763
+201702762
+201703279
+201703278
+201701555
+201703277
+201702761
+201703275
+201701554
+201703274
+201703273
+201702760
+201703272
+201702759
+201702758
+201703271
+201703270
+201702757
+201702756
+201702755
+201701552
+201703269
+201702754
+201703268
+201701551
+201703267
+201703266
+201701550
+201701549
+201701547
+201702753
+201703264
+201703263
+201701546
+201703262
+201701545
+201703261
+201703260
+201703259
+201701544
+201701543
+201703258
+201702750
+201702749
+201702748
+201701541
+201703257
+201701540
+201701539
+201701538
+201702746
+201703256
+201701537
+201702745
+201702744
+201701536
+201701535
+201701534
+201703254
+201701533
+201703253
+201701531
+201702742
+201701530
+201702741
+201701529
+201702740
+201701527
+201703252
+201703251
+201702739
+201701526
+201701524
+201701523
+201701522
+201701521
+201702738
+201701520
+201703250
+201703249
+201701519
+201702737
+201702736
+201701517
+201703248
+201702735
+201701516
+201702734
+201701515
+201703246
+201701514
+201702733
+201701513
+201702732
+201703245
+201703244
+201702730
+201702729
+201702728
+201703243
+201703242
+201703241
+201703240
+201702726
+201701512
+201701510
+201702724
+201703239
+201702723
+201701509
+201702722
+201701508
+201703237
+201703236
+201701507
+201702721
+201702720
+201701506
+201702719
+201703235
+201702718
+201701505
+201702717
+201703234
+201702715
+201702714
+201701504
+201702713
+201702712
+201703232
+201701503
+201703231
+201702711
+201702710
+201701502
+201702709
+201703229
+201702708
+201703228
+201701501
+201701500
+201703227
+201702707
+201702499
+201702498
+201702497
+201702496
+201702706
+201702495
+201703226
+201702494
+201703225
+201702493
+201702705
+201702492
+201702704
+201702491
+201702490
+201702489
+201702703
+201702488
+201702701
+201703224
+201702486
+201703223
+201702700
+201702699
+201702484
+201703222
+201702483
+201702482
+201703221
+201702481
+201702480
+201702479
+201702697
+201703220
+201702696
+201703219
+201702477
+201702476
+201702475
+201703218
+201703217
+201702474
+201702694
+201702473
+201702693
+201702692
+201702472
+201702471
+201702470
+201702469
+201702691
+201702468
+201702689
+201702688
+201702467
+201703216
+201702466
+201702465
+201702687
+201702464
+201702463
+201702462
+201702461
+201702460
+201702684
+201703215
+201703214
+201703213
+201703212
+201702683
+201702682
+201702459
+201703211
+201703209
+201703208
+201703207
+201702458
+201702457
+201702456
+201702680
+201702455
+201702454
+201702453
+201703205
+201702452
+201702451
+201703204
+201702450
+201702449
+201702448
+201702679
+201702678
+201702447
+201702446
+201702445
+201702444
+201702443
+201703203
+201702442
+201702441
+201702675
+201703202
+201702439
+201702674
+201703201
+201702673
+201702438
+201702437
+201702436
+201702435
+201702434
+201702670
+201702433
+201702669
+201702668
+201703200
+201702432
+201703199
+201702431
+201703198
+201702430
+201703197
+201702429
+201703196
+201702428
+201702426
+201702425
+201703195
+201702665
+201703194
+201702423
+201702422
+201703193
+201702663
+201702421
+201702662
+201702661
+201702660
+201702420
+201702419
+201702418
+201702659
+201702658
+201703192
+201703191
+201702657
+201703190
+201703189
+201702416
+201703188
+201702415
+201703187
+201703186
+201703185
+201702414
+201702413
+201702412
+201702411
+201703184
+201702410
+201702655
+201702654
+201702408
+201702407
+201702653
+201702406
+201702652
+201702651
+201702650
+201703183
+201702405
+201702404
+201703180
+201702648
+201702402
+201702403
+201703179
+201703178
+201703177
+201703176
+201702401
+201702646
+201702400
+201703175
+201702398
+201702645
+201702644
+201703174
+201703173
+201702396
+201702640
+201703172
+201703171
+201703170
+201702639
+201702395
+201702638
+201703169
+201702637
+201702394
+201702636
+201702393
+201702634
+201702392
+201702633
+201702391
+201703168
+201702632
+201702631
+201702630
+201703167
+201703166
+201702629
+201703165
+201703151
+201702628
+201702627
+201702626
+201703163
+201703162
+201702625
+201703161
+201702387
+201702386
+201703160
+201702624
+201702623
+201702385
+201702384
+201703158
+201702383
+201702622
+201702382
+201702620
+201702619
+201703155
+201702618
+201702380
+201703154
+201702379
+201702617
+201702616
+201702614
+201702378
+201702613
+201703153
+201702611
+201702610
+201703152
+201702373
+201703522
+201703521
+201703144
+201703143
+201704251
+201704250
+201704249
+201704248
+201704247
+201703138
+201704246
+201704245
+201703137
+201703519
+201703134
+201703518
+201703133
+201704244
+201703132
+201704243
+201703514
+201703130
+201703129
+201703128
+201703127
+201704241
+201704240
+201703126
+201703125
+201703124
+201704239
+201704238
+201703123
+201704237
+201704235
+201703512
+201703122
+201704234
+201704233
+201704232
+201703120
+201703119
+201704231
+201703511
+201704230
+201703117
+201704229
+201704228
+201703116
+201703510
+201703509
+201704227
+201703115
+201704750
+201703114
+201703113
+201703112
+201704225
+201703111
+201703109
+201703110
+201703508
+201704224
+201704223
+201704221
+201703108
+201703107
+201703106
+201703105
+201704218
+201703104
+201704216
+201704215
+201704214
+201703507
+201703506
+201703103
+201703102
+201704212
+201704211
+201703101
+201703100
+201704210
+201703099
+201704209
+201704208
+201703505
+201703098
+201703097
+201703096
+201703095
+201703094
+201704207
+201703093
+201703091
+201703090
+201703504
+201704206
+201704205
+201703088
+201704204
+201703503
+201703087
+201704203
+201703085
+201703502
+201704202
+201704201
+201704200
+201704199
+201704198
+201703083
+201703501
+201704197
+201703500
+201703082
+201704195
+201704194
+201704499
+201703080
+201703079
+201704498
+201704193
+201703077
+201703076
+201704192
+201704190
+201703073
+201703072
+201704497
+201704496
+201704189
+201704188
+201704187
+201703070
+201703068
+201704186
+201704185
+201704184
+201704495
+201703067
+201704494
+201704183
+201704182
+201704181
+201704493
+201703064
+201703063
+201704492
+201704180
+201703061
+201704491
+201704179
+201703060
+201704490
+201703059
+201703058
+201703057
+201704178
+201704177
+201703056
+201703055
+201704489
+201703053
+201703052
+201703051
+201703049
+201703048
+201704175
+201704174
+201703047
+201704173
+201704172
+201704171
+201704487
+201704169
+201703044
+201703043
+201703042
+201703041
+201703040
+201704168
+201704485
+201704167
+201704166
+201703039
+201703038
+201703037
+201704165
+201704484
+201704164
+201703036
+201704163
+201704483
+201704482
+201703035
+201704481
+201704480
+201704162
+201703034
+201704161
+201704160
+201704479
+201704159
+201704158
+201703033
+201704157
+201704478
+201704477
+201703032
+201704156
+201704476
+201703031
+201704475
+201704155
+201703030
+201703029
+201704154
+201703028
+201703027
+201704474
+201703026
+201704153
+201703025
+201703024
+201703023
+201703022
+201703021
+201704152
+201704473
+201704151
+201703019
+201703018
+201703017
+201703015
+201704150
+201704471
+201703014
+201703013
+201703012
+201703011
+201704470
+201703010
+201704469
+201704145
+201704144
+201704468
+201704467
+201703008
+201704466
+201704465
+201703007
+201703006
+201703005
+201703004
+201703003
+201704143
+201704464
+201704463
+201703001
+201704461
+201704460
+201704142
+201704141
+201703999
+201703998
+201703997
+201704139
+201704140
+201703996
+201703995
+201703994
+201704459
+201703993
+201704138
+201704458
+201704137
+201704457
+201703992
+201703991
+201704136
+201703990
+201704135
+201704456
+201703989
+201704134
+201704133
+201703988
+201704455
+201704454
+201703986
+201704132
+201704453
+201703985
+201703984
+201704129
+201704128
+201703982
+201704452
+201704126
+201703981
+201703980
+201703979
+201703978
+201704451
+201704125
+201703976
+201703975
+201704124
+201704123
+201703973
+201704450
+201704122
+201704121
+201703972
+201704449
+201704120
+201704118
+201704117
+201703971
+201704116
+201704115
+201703970
+201703969
+201704114
+201704113
+201703968
+201704112
+201703966
+201704448
+201704447
+201703965
+201704446
+201704111
+201703964
+201703962
+201704110
+201704109
+201704108
+201704107
+201703961
+201703960
+201703959
+201704105
+201704104
+201704445
+201703958
+201703957
+201704103
+201704102
+201704444
+201704101
+201703956
+201704100
+201703955
+201703954
+201704098
+201704097
+201703952
+201704443
+201704442
+201704096
+201703951
+201704441
+201703950
+201703949
+201704095
+201703946
+201703944
+201703945
+201703943
+201703942
+201704094
+201704093
+201703941
+201704092
+201703940
+201704440
+201703938
+201704439
+201704091
+201704090
+201703937
+201703936
+201703935
+201704438
+201704088
+201703934
+201703933
+201704087
+201704085
+201704437
+201704084
+201704436
+201704083
+201704082
+201703931
+201703930
+201703929
+201703928
+201704081
+201703926
+201703924
+201704080
+201704079
+201704078
+201703923
+201704077
+201703922
+201704076
+201703920
+201703919
+201703918
+201704433
+201704075
+201704074
+201704073
+201703917
+201703916
+201704072
+201703914
+201703913
+201703912
+201703911
+201704071
+201703910
+201704432
+201704070
+201703909
+201703908
+201703907
+201704069
+201704066
+201704067
+201704431
+201704065
+201703906
+201703905
+201704063
+201703904
+201703903
+201703901
+201704430
+201703900
+201703899
+201704061
+201703898
+201704060
+201703896
+201703894
+201703893
+201704057
+201703891
+201703892
+201704056
+201704055
+201704054
+201704053
+201704052
+201703889
+201704051
+201703888
+201704429
+201704050
+201704428
+201704049
+201703887
+201703886
+201704048
+201704047
+201703883
+201703882
+201704427
+201704426
+201703881
+201703880
+201704046
+201703878
+201703877
+201703876
+201703875
+201703874
+201704045
+201703872
+201704425
+201703871
+201703869
+201704043
+201704042
+201703867
+201704424
+201704423
+201704041
+201703866
+201703865
+201703864
+201703862
+201704039
+201704038
+201703861
+201704037
+201704422
+201704421
+201703860
+201703859
+201703857
+201703856
+201703855
+201704036
+201704035
+201704034
+201704033
+201703854
+201704032
+201704031
+201703853
+201703852
+201703851
+201703850
+201703849
+201703848
+201704030
+201703847
+201704420
+201704419
+201703846
+201704029
+201704028
+201703845
+201704027
+201703843
+201703842
+201703841
+201704026
+201704025
+201703839
+201703838
+201704024
+201703836
+201703835
+201704418
+201703834
+201704023
+201703833
+201704022
+201704021
+201704019
+201704417
+201703832
+201704018
+201703831
+201704017
+201703829
+201703828
+201704016
+201704015
+201704014
+201703826
+201703825
+201704415
+201704414
+201704013
+201703824
+201704012
+201703823
+201704413
+201703820
+201704412
+201703818
+201704009
+201703817
+201704007
+201704411
+201704006
+201704005
+201703815
+201703814
+201704004
+201704003
+201703812
+201704002
+201703811
+201703810
+201703809
+201703808
+201704000
+201704999
+201704409
+201704998
+201704997
+201703807
+201704994
+201704993
+201703806
+201704992
+201703805
+201704407
+201704406
+201704991
+201703804
+201704990
+201703803
+201704405
+201704988
+201704987
+201703802
+201704986
+201703801
+201704985
+201704404
+201704403
+201703800
+201703798
+201704984
+201703796
+201704983
+201704982
+201703794
+201704402
+201704980
+201704979
+201704401
+201703792
+201704978
+201703791
+201703790
+201704400
+201704398
+201704397
+201704976
+201704975
+201704974
+201704973
+201703789
+201703788
+201703787
+201704972
+201703786
+201704396
+201703785
+201704395
+201704394
+201704393
+201703783
+201704970
+201703782
+201703781
+201704392
+201703780
+201704969
+201704391
+201703779
+201704966
+201703778
+201704390
+201703777
+201703776
+201704965
+201703775
+201704963
+201704389
+201703773
+201703772
+201703771
+201704388
+201703770
+201703769
+201703768
+201703766
+201704962
+201704961
+201703764
+201703763
+201704959
+201703762
+201704958
+201703761
+201704957
+201703759
+201704387
+201704956
+201704955
+201704954
+201704386
+201704953
+201703758
+201704952
+201704951
+201704950
+201704949
+201703757
+201703756
+201703755
+201704948
+201703754
+201704947
+201704385
+201703752
+201703751
+201704946
+201704384
+201704944
+201703749
+201703748
+201703747
+201703746
+201704943
+201703745
+201703744
+201704942
+201703743
+201704941
+201704940
+201704383
+201703741
+201703740
+201704939
+201704381
+201703737
+201703736
+201704937
+201704936
+201703735
+201704935
+201704933
+201704932
+201704931
+201703734
+201704929
+201704928
+201704927
+201704379
+201704926
+201704925
+201703733
+201704923
+201703732
+201704922
+201704377
+201704921
+201703731
+201704920
+201704919
+201704918
+201703730
+201703729
+201704373
+201703727
+201704372
+201704916
+201703726
+201703725
+201704915
+201704371
+201704370
+201704912
+201704911
+201703724
+201704910
+201704909
+201703723
+201703722
+201703721
+201703720
+201703719
+201704367
+201704366
+201703718
+201703717
+201703716
+201704365
+201704906
+201704905
+201703714
+201704904
+201704364
+201703713
+201703712
+201704900
+201703710
+201703709
+201703708
+201703707
+201704360
+201704899
+201703705
+201704897
+201704359
+201703703
+201704896
+201704895
+201703702
+201704358
+201703701
+201703700
+201704894
+201704357
+201704893
+201704891
+201704890
+201704889
+201703698
+201703697
+201703696
+201704888
+201703695
+201703693
+201704355
+201703692
+201703691
+201704886
+201704885
+201704354
+201703689
+201703688
+201703687
+201703686
+201704883
+201703684
+201704353
+201703683
+201703682
+201703681
+201704881
+201704880
+201704879
+201704878
+201704877
+201703678
+201703677
+201703676
+201703675
+201704876
+201704875
+201704352
+201703674
+201704351
+201704874
+201704873
+201703672
+201704350
+201703671
+201704872
+201704349
+201704871
+201704347
+201703670
+201704869
+201704346
+201704345
+201704867
+201704866
+201704344
+201704865
+201704864
+201704863
+201703667
+201703666
+201704343
+201703665
+201704342
+201704341
+201704862
+201704861
+201703663
+201704339
+201704338
+201704337
+201704336
+201704335
+201703661
+201703660
+201703659
+201704334
+201703658
+201704333
+201703657
+201704332
+201704858
+201703656
+201704857
+201703655
+201703654
+201704329
+201703653
+201703652
+201704327
+201704856
+201704855
+201704326
+201703650
+201704854
+201703649
+201703648
+201704749
+201704323
+201704324
+201704325
+201703647
+201704852
+201703646
+201704321
+201703645
+201704320
+201704319
+201703644
+201704851
+201703643
+201703642
+201704318
+201703641
+201703640
+201704850
+201704316
+201704315
+201704849
+201703639
+201703638
+201703637
+201704848
+201704846
+201704314
+201704845
+201704313
+201703636
+201704312
+201704844
+201704311
+201703635
+201704843
+201703633
+201704309
+201704842
+201703632
+201704308
+201704841
+201703631
+201704840
+201703630
+201704839
+201704307
+201704306
+201704838
+201703629
+201703627
+201703628
+201704837
+201704305
+201704304
+201704303
+201704302
+201704836
+201704301
+201704835
+201704834
+201704833
+201703625
+201703624
+201703622
+201704831
+201703621
+201704830
+201704300
+201704829
+201703620
+201704828
+201703619
+201704299
+201704298
+201704297
+201704827
+201704296
+201703618
+201704825
+201704824
+201703617
+201704295
+201704294
+201704823
+201704822
+201704293
+201704292
+201704821
+201703615
+201704291
+201704820
+201704819
+201704818
+201703611
+201703610
+201704289
+201704817
+201703609
+201704816
+201704815
+201704288
+201703608
+201703607
+201704814
+201703606
+201703605
+201704287
+201703604
+201704286
+201704285
+201703602
+201703601
+201704811
+201704810
+201703599
+201703598
+201703597
+201704809
+201704808
+201704807
+201703595
+201703593
+201703592
+201703591
+201703590
+201704284
+201704283
+201704806
+201704805
+201703589
+201703588
+201704804
+201704282
+201704803
+201703586
+201704281
+201703585
+201704802
+201704801
+201703583
+201703582
+201704800
+201704280
+201704279
+201704799
+201704798
+201704797
+201703581
+201703580
+201703579
+201703578
+201703577
+201704796
+201704795
+201703576
+201703575
+201704794
+201703574
+201704277
+201704276
+201704793
+201703573
+201704275
+201704274
+201704273
+201704791
+201704790
+201704789
+201703572
+201704788
+201704787
+201704786
+201704272
+201704785
+201703571
+201704784
+201704271
+201704783
+201704270
+201704782
+201704781
+201704268
+201704780
+201703570
+201704779
+201703568
+201703567
+201704778
+201703566
+201703565
+201704777
+201703564
+201704776
+201704775
+201703563
+201704773
+201703562
+201703561
+201704772
+201703560
+201703559
+201704771
+201704770
+201703557
+201704769
+201703555
+201704266
+201704265
+201704768
+201703554
+201703553
+201704264
+201703552
+201704767
+201704766
+201704765
+201703549
+201703548
+201703547
+201704764
+201703546
+201703545
+201704762
+201704761
+201704263
+201703543
+201704760
+201704262
+201703542
+201703541
+201703540
+201704759
+201704758
+201703537
+201704757
+201703536
+201704261
+201704756
+201703535
+201704755
+201704260
+201704257
+201703534
+201704256
+201703533
+201704255
+201703531
+201703530
+201704753
+201703529
+201703528
+201703527
+201703526
+201704752
+201703525
+201703524
+201704253
+201705043
+201705255
+201705042
+201705041
+201709190
+201705251
+201709189
+201704744
+201705040
+201704743
+201705039
+201704742
+201704741
+201705038
+201704740
+201705249
+201704738
+201705037
+201704736
+201705248
+201705247
+201704734
+201705254
+201705245
+201705244
+201704731
+201705243
+201705036
+201705242
+201705035
+201705241
+201705240
+201704730
+201705239
+201705238
+201705034
+201705033
+201704729
+201704727
+201705236
+201705235
+201705234
+201705233
+201705031
+201704724
+201705232
+201704723
+201704722
+201705029
+201704721
+201705231
+201704719
+201704718
+201704717
+201705230
+201704715
+201704714
+201705229
+201705228
+201705227
+201705226
+201705225
+201704713
+201705028
+201705224
+201704712
+201704710
+201705223
+201704708
+201704707
+201704706
+201704705
+201704704
+201705222
+201704703
+201704702
+201704701
+201704700
+201704699
+201704698
+201705220
+201705027
+201704697
+201705219
+201704696
+201704695
+201705218
+201704694
+201704693
+201705026
+201704692
+201705025
+201705217
+201704691
+201704690
+201704688
+201705216
+201705215
+201705214
+201705213
+201704686
+201705211
+201704685
+201704684
+201705209
+201705023
+201705208
+201704683
+201705022
+201704681
+201704680
+201704679
+201705206
+201704678
+201704676
+201704675
+201705021
+201705204
+201705203
+201704674
+201705201
+201705202
+201705200
+201704673
+201705020
+201705199
+201705197
+201705196
+201704672
+201705195
+201705018
+201704671
+201705017
+201704670
+201704669
+201705194
+201705016
+201704668
+201704667
+201705193
+201705015
+201704666
+201704665
+201704664
+201704663
+201704662
+201704661
+201705192
+201705191
+201705014
+201705013
+201705190
+201704659
+201704657
+201705189
+201705188
+201705012
+201704656
+201705187
+201704655
+201704654
+201705011
+201705010
+201704653
+201705186
+201705185
+201704652
+201705184
+201704651
+201705183
+201704650
+201704649
+201704648
+201705182
+201704647
+201705009
+201705008
+201705181
+201705007
+201705180
+201704646
+201705179
+201704645
+201705178
+201705006
+201704644
+201704643
+201704641
+201705005
+201704640
+201704639
+201704638
+201704637
+201705004
+201704636
+201705175
+201705003
+201705174
+201705002
+201705173
+201704634
+201705001
+201704633
+201704632
+201705999
+201705170
+201705169
+201704631
+201704630
+201704629
+201705168
+201705167
+201705998
+201705165
+201705164
+201705163
+201705162
+201705161
+201704628
+201704627
+201704626
+201704625
+201705160
+201704624
+201705158
+201705997
+201704623
+201705157
+201705156
+201704622
+201704621
+201705155
+201705154
+201704619
+201705996
+201704618
+201705153
+201705152
+201704617
+201705151
+201705150
+201704615
+201705995
+201704614
+201704613
+201704612
+201705149
+201704611
+201704610
+201704609
+201705148
+201705994
+201705993
+201704608
+201704607
+201705147
+201705146
+201704606
+201704605
+201704604
+201704603
+201705991
+201704602
+201705144
+201705989
+201705990
+201704601
+201704600
+201705143
+201704599
+201705142
+201704598
+201704597
+201705141
+201704596
+201704595
+201704594
+201705988
+201704593
+201704592
+201705140
+201705139
+201705138
+201705136
+201705987
+201704591
+201705986
+201704590
+201705135
+201704589
+201705134
+201704588
+201705133
+201705132
+201705131
+201705985
+201705129
+201704587
+201704586
+201705127
+201704585
+201704584
+201705984
+201705125
+201704582
+201705124
+201705123
+201704581
+201705983
+201704580
+201705122
+201704579
+201705121
+201704578
+201704577
+201704576
+201705982
+201705120
+201704575
+201705119
+201705118
+201704574
+201704572
+201705117
+201705981
+201704571
+201705116
+201705115
+201705114
+201705113
+201704570
+201704569
+201705112
+201705111
+201705110
+201704568
+201705109
+201704567
+201704566
+201705108
+201705107
+201705980
+201705106
+201704565
+201704564
+201705105
+201704563
+201705979
+201705104
+201704562
+201704561
+201705978
+201704560
+201705103
+201704559
+201704558
+201705977
+201704556
+201705102
+201705101
+201705100
+201705099
+201704554
+201704553
+201704552
+201705098
+201705097
+201705096
+201704551
+201705095
+201704550
+201705094
+201704549
+201704548
+201704546
+201705093
+201705092
+201705091
+201705090
+201704545
+201704544
+201705089
+201705088
+201705087
+201704542
+201705086
+201705975
+201705085
+201705084
+201705083
+201704540
+201705082
+201704539
+201705081
+201704538
+201704537
+201705974
+201704536
+201705080
+201705972
+201705079
+201704535
+201705077
+201704534
+201704533
+201705971
+201705076
+201704532
+201704530
+201704529
+201704528
+201705970
+201704527
+201704526
+201704524
+201704523
+201704522
+201704521
+201705075
+201705074
+201704520
+201705073
+201705072
+201705969
+201705070
+201704519
+201705069
+201704518
+201704517
+201705068
+201704516
+201704515
+201705067
+201705066
+201704513
+201705968
+201705065
+201705967
+201705064
+201704511
+201704510
+201705966
+201705062
+201704509
+201704508
+201705061
+201705060
+201705059
+201705058
+201704507
+201704506
+201704505
+201705964
+201704504
+201705963
+201704503
+201704502
+201704501
+201704500
+201705499
+201705962
+201705498
+201705961
+201705497
+201705960
+201705056
+201705055
+201705496
+201705054
+201705494
+201705959
+201705493
+201705492
+201705491
+201705958
+201705957
+201705956
+201705490
+201705955
+201705489
+201705488
+201705487
+201705486
+201705053
+201705954
+201705052
+201705485
+201705051
+201705484
+201705483
+201705050
+201705049
+201705953
+201705952
+201705048
+201705481
+201705480
+201705045
+201705479
+201705044
+201705478
+201705477
+201709188
+201705951
+201705950
+201709186
+201709185
+201705949
+201705948
+201705475
+201709184
+201709183
+201705474
+201709182
+201705473
+201709181
+201705472
+201705471
+201705470
+201705945
+201709180
+201709179
+201709178
+201705469
+201709177
+201705468
+201705467
+201705466
+201705465
+201705464
+201709175
+201705944
+201705463
+201709173
+201709172
+201705462
+201705461
+201709170
+201705460
+201705943
+201705459
+201705458
+201705455
+201705454
+201709169
+201705453
+201705452
+201705451
+201709168
+201705450
+201705942
+201709167
+201709166
+201705449
+201709165
+201705448
+201709164
+201705447
+201705446
+201709163
+201705445
+201705941
+201705444
+201705940
+201705443
+201709161
+201705939
+201705442
+201705441
+201705440
+201705938
+201709160
+201705439
+201709159
+201709158
+201705438
+201705937
+201705437
+201709157
+201709156
+201705435
+201709155
+201709154
+201705433
+201705432
+201709152
+201705431
+201705936
+201709150
+201705430
+201709149
+201709148
+201705935
+201705429
+201709147
+201705428
+201705934
+201705427
+201705426
+201705425
+201705933
+201705932
+201705424
+201705423
+201705422
+201709145
+201705421
+201709144
+201705931
+201709143
+201709142
+201705930
+201705420
+201705418
+201705417
+201705416
+201709140
+201705415
+201709139
+201709138
+201705414
+201705413
+201705928
+201705412
+201705927
+201705926
+201705411
+201705410
+201709137
+201709136
+201709135
+201705409
+201705408
+201705925
+201709133
+201709132
+201709130
+201705405
+201705924
+201705923
+201709128
+201709127
+201705403
+201705402
+201705401
+201705400
+201705922
+201705399
+201705398
+201705397
+201705396
+201709126
+201705395
+201705920
+201705394
+201705919
+201705918
+201705917
+201705393
+201709125
+201705916
+201705915
+201705391
+201705390
+201709124
+201709122
+201709121
+201705914
+201705388
+201709120
+201709119
+201705387
+201705386
+201705913
+201705385
+201705383
+201705382
+201709118
+201709117
+201705912
+201705911
+201705381
+201709012
+201705380
+201705910
+201709115
+201705909
+201705378
+201709113
+201705908
+201705907
+201705906
+201705905
+201705377
+201705904
+201705903
+201705902
+201709111
+201705375
+201705901
+201705374
+201705373
+201705900
+201705898
+201709110
+201705372
+201705371
+201709109
+201705369
+201705368
+201705367
+201709108
+201709106
+201705365
+201709105
+201705364
+201705897
+201705362
+201705895
+201709104
+201705893
+201705360
+201705892
+201709103
+201705891
+201705358
+201705357
+201705356
+201709100
+201705355
+201709099
+201705353
+201709098
+201709097
+201705890
+201705889
+201705350
+201705349
+201705348
+201709096
+201705347
+201709095
+201705888
+201709094
+201705887
+201709093
+201709092
+201709091
+201705885
+201705345
+201709090
+201709089
+201705344
+201705883
+201709088
+201705343
+201705882
+201709087
+201705881
+201705879
+201709084
+201705878
+201705877
+201705876
+201705875
+201709083
+201705874
+201705336
+201705873
+201705872
+201705335
+201709082
+201705334
+201705333
+201705871
+201705332
+201705331
+201709081
+201705870
+201705329
+201705869
+201705328
+201705868
+201705867
+201705327
+201705326
+201709078
+201709077
+201705866
+201709076
+201709075
+201705325
+201705324
+201709074
+201705323
+201709073
+201709072
+201709071
+201705322
+201709069
+201705321
+201705319
+201709067
+201705318
+201705317
+201705316
+201705315
+201709066
+201709065
+201709064
+201705864
+201709063
+201705312
+201705311
+201705863
+201709062
+201705862
+201705310
+201705861
+201705860
+201709061
+201709060
+201705309
+201705308
+201705307
+201709059
+201705859
+201705306
+201705858
+201705305
+201705304
+201709057
+201709056
+201705857
+201705301
+201709055
+201705300
+201709054
+201705299
+201709053
+201705856
+201709052
+201705854
+201705298
+201705297
+201705296
+201709049
+201705853
+201705295
+201705294
+201705292
+201705291
+201705290
+201705288
+201709048
+201705287
+201705286
+201705852
+201705285
+201709046
+201705851
+201709045
+201705283
+201709044
+201705850
+201709043
+201705849
+201709042
+201705848
+201709041
+201705847
+201709040
+201705282
+201705846
+201709039
+201709038
+201709037
+201705845
+201705281
+201705844
+201705843
+201705280
+201705842
+201705279
+201705278
+201705841
+201705277
+201705840
+201705276
+201705839
+201705838
+201705836
+201709035
+201705835
+201709034
+201705275
+201709032
+201709031
+201705273
+201709029
+201709028
+201705833
+201705272
+201705832
+201705271
+201705270
+201705269
+201709027
+201705830
+201705268
+201705829
+201705828
+201705827
+201705266
+201705265
+201705826
+201705824
+201705825
+201705264
+201705823
+201705822
+201705821
+201705819
+201709025
+201709024
+201709023
+201705818
+201705263
+201705262
+201709022
+201709021
+201705261
+201705817
+201705260
+201709020
+201705816
+201709019
+201705815
+201709018
+201705814
+201705813
+201705258
+201705812
+201705811
+201705810
+201709017
+201705257
+201709016
+201705808
+201709015
+201705807
+201709014
+201709013
+201706024
+201706087
+201706310
+201706008
+201705653
+201706950
+201706846
+201705569
+201706621
+201706843
+201705677
+201705528
+201706265
+201706627
+201706424
+201705792
+201706342
+201706192
+201706630
+201705516
+201706328
+201705622
+201706081
+201706402
+201705522
+201706228
+201705802
+201705602
+201705530
+201706715
+201706755
+201705637
+201706448
+201706467
+201705564
+201706437
+201706331
+201706782
+201705747
+201706407
+201706306
+201705505
+201706162
+201705711
+201705626
+201706858
+201706975
+201706789
+201705551
+201706665
+201706608
+201706478
+201706663
+201705686
+201706493
+201706788
+201706077
+201706269
+201705671
+201706475
+201705611
+201706676
+201706196
+201706078
+201705806
+201706795
+201705672
+201706370
+201706453
+201705697
+201706946
+201706088
+201705790
+201706852
+201706305
+201705584
+201705624
+201706435
+201706214
+201705608
+201706323
+201706415
+201705557
+201705803
+201706023
+201706913
+201705560
+201706210
+201706251
+201706639
+201705725
+201705512
+201706430
+201706924
+201706814
+201706999
+201706127
+201706945
+201705739
+201706797
+201706633
+201706863
+201706602
+201705669
+201706098
+201706617
+201706683
+201706473
+201706485
+201706307
+201706498
+201706139
+201706918
+201706736
+201706885
+201705650
+201705798
+201706721
+201706054
+201706470
+201706626
+201705648
+201706149
+201705577
+201706403
+201706881
+201706398
+201706226
+201706168
+201706237
+201705707
+201706868
+201706614
+201706767
+201705601
+201706400
+201706815
+201706300
+201706708
+201706438
+201706648
+201706616
+201705511
+201706201
+201706871
+201706743
+201705745
+201705726
+201705800
+201706942
+201705717
+201706108
+201706785
+201706900
+201706817
+201706748
+201706869
+201706429
+201706979
+201705596
+201706899
+201706637
+201706742
+201706927
+201706046
+201706045
+201706982
+201706490
+201705507
+201706681
+201706861
+201706611
+201706774
+201706033
+201706387
+201706006
+201706746
+201706303
+201706834
+201706656
+201706971
+201706218
+201706071
+201706299
+201705619
+201706144
+201706689
+201706887
+201706838
+201705654
+201706903
+201706791
+201706705
+201706880
+201705670
+201706232
+201706710
+201706044
+201706254
+201706123
+201706678
+201706086
+201706842
+201706766
+201706700
+201706353
+201706283
+201706007
+201706410
+201706724
+201706341
+201706011
+201706697
+201706102
+201706405
+201706974
+201706477
+201705632
+201705689
+201706793
+201706289
+201706159
+201706727
+201706879
+201706744
+201706350
+201706277
+201706487
+201706038
+201706929
+201706193
+201706019
+201706158
+201706259
+201705784
+201706266
+201706699
+201706052
+201705776
+201706288
+201706443
+201705737
+201706239
+201706097
+201705701
+201706777
+201706920
+201706472
+201706844
+201705651
+201705680
+201706756
+201706794
+201706101
+201706819
+201705579
+201706771
+201706282
+201706065
+201705571
+201706625
+201706658
+201705588
+201705592
+201706692
+201706836
+201706183
+201706026
+201706219
+201706712
+201706851
+201706181
+201706883
+201705690
+201706169
+201706804
+201705583
+201706085
+201705532
+201706714
+201706093
+201706247
+201705657
+201706029
+201706227
+201706916
+201706120
+201706952
+201705618
+201706084
+201706773
+201705604
+201705700
+201706821
+201706492
+201705655
+201706287
+201706696
+201706919
+201706012
+201706217
+201705736
+201705715
+201706655
+201706220
+201705581
+201706455
+201706959
+201706741
+201705617
+201706143
+201706650
+201706285
+201706268
+201705752
+201705529
+201706203
+201706080
+201706480
+201706295
+201705563
+201706391
+201706649
+201706938
+201706142
+201706348
+201706275
+201706997
+201706711
+201706629
+201706759
+201706272
+201706936
+201706624
+201706890
+201706042
+201705542
+201706806
+201706119
+201706198
+201706645
+201706768
+201706136
+201706704
+201705550
+201706667
+201705723
+201706972
+201706801
+201706125
+201706953
+201706230
+201706369
+201706732
+201706949
+201706053
+201706867
+201706909
+201705777
+201706735
+201705722
+201706172
+201706013
+201706134
+201706752
+201706776
+201706955
+201706694
+201706654
+201706015
+201706944
+201706841
+201706664
+201705644
+201706923
+201706068
+201706803
+201706164
+201706943
+201706062
+201706618
+201706025
+201706763
+201706698
+201706315
+201706992
+201706166
+201705598
+201706050
+201706862
+201706653
+201706761
+201706367
+201706446
+201706094
+201705525
+201706636
+201706738
+201706957
+201706100
+201706061
+201706156
+201706951
+201706688
+201706155
+201705593
+201706334
+201706886
+201706250
+201706148
+201706970
+201706278
+201706433
+201705545
+201706661
+201706984
+201706904
+201706833
+201706122
+201705646
+201706284
+201706713
+201706036
+201706805
+201706932
+201706141
+201705587
+201706022
+201706258
+201706082
+201706826
+201706377
+201706731
+201706857
+201706114
+201706442
+201706733
+201706092
+201706110
+201706104
+201706034
+201705724
+201705527
+201706378
+201706146
+201706160
+201706018
+201706326
+201706171
+201706813
+201706632
+201706675
+201706017
+201706390
+201706651
+201706792
+201706112
+201706489
+201706911
+201706725
+201706116
+201705728
+201706040
+201705556
+201706991
+201705782
+201706896
+201705699
+201706827
+201705520
+201706128
+201706726
+201706004
+201706779
+201705526
+201706404
+201706962
+201706915
+201706089
+201706248
+201706612
+201706147
+201705759
+201706672
+201706628
+201705523
+201706635
+201705762
+201706063
+201705621
+201705541
+201706998
+201706907
+201706048
+201705661
+201706246
+201706207
+201705663
+201705610
+201706202
+201705754
+201705674
+201705805
+201706235
+201706922
+201706376
+201705506
+201706893
+201706212
+201706754
+201705562
+201706695
+201706963
+201706778
+201705574
+201706035
+201706434
+201706638
+201705544
+201706161
+201706679
+201706990
+201706365
+201706931
+201705580
+201706958
+201706855
+201706000
+201706366
+201706060
+201706021
+201705603
+201706607
+201706245
+201706976
+201706131
+201706753
+201705766
+201706941
+201706464
+201706845
+201706983
+201706406
+201706889
+201705693
+201706180
+201706848
+201706660
+201706058
+201706831
+201706182
+201706028
+201706765
+201706986
+201706118
+201705630
+201706140
+201706816
+201706996
+201706989
+201706049
+201706657
+201706309
+201706229
+201706687
+201706935
+201706216
+201706965
+201705607
+201706474
+201706075
+201706379
+201706361
+201706921
+201706421
+201706967
+201706609
+201706280
+201706671
+201706067
+201705643
+201706314
+201706784
+201705758
+201706798
+201705586
+201706934
+201705730
+201706070
+201706606
+201706994
+201706499
+201706707
+201705719
+201706837
+201706113
+201705597
+201706718
+201706173
+201705519
+201705780
+201706409
+201706030
+201706790
+201706690
+201706349
+201706864
+201706706
+201706393
+201706956
+201706937
+201706209
+201706027
+201706662
+201706150
+201706906
+201706423
+201706878
+201706231
+201706132
+201706825
+201706686
+201706385
+201706412
+201706126
+201706740
+201706613
+201706333
+201706623
+201706130
+201706669
+201706894
+201706875
+201706622
+201706908
+201705720
+201706099
+201706002
+201706476
+201706066
+201706374
+201706072
+201705546
+201706427
+201706800
+201706117
+201706870
+201706106
+201706330
+201706995
+201706642
+201705500
+201706603
+201705779
+201706641
+201706175
+201706417
+201705606
+201705576
+201706411
+201705652
+201706056
+201706479
+201705691
+201705757
+201706286
+201706905
+201706933
+201706197
+201706460
+201706329
+201706339
+201706373
+201706496
+201705788
+201706206
+201705732
+201705684
+201706290
+201706610
+201706775
+201706103
+201706482
+201705772
+201706783
+201706325
+201705524
+201706152
+201706336
+201706747
+201706043
+201706652
+201706291
+201706440
+201706041
+201705709
+201705559
+201706296
+201706720
+201706392
+201706914
+201705639
+201706010
+201705501
+201706195
+201706882
+201706488
+201706151
+201706902
+201706961
+201706772
+201705781
+201706340
+201706039
+201705567
+201705765
+201706422
+201706352
+201706244
+201706640
+201706322
+201706273
+201706420
+201706820
+201706829
+201706016
+201706796
+201706347
+201706605
+201706186
+201705543
+201706620
+201705682
+201705795
+201705668
+201706190
+201706312
+201706294
+201706912
+201706074
+201706808
+201705531
+201706969
+201705510
+201706874
+201705729
+201706386
+201706770
+201705742
+201705769
+201706163
+201706057
+201706876
+201705756
+201706459
+201706928
+201706987
+201705517
+201706091
+201705695
+201706737
+201706892
+201705767
+201706298
+201706926
+201706888
+201706860
+201705514
+201706115
+201705552
+201706853
+201706674
+201706457
+201706332
+201706224
+201706799
+201706243
+201706634
+201705590
+201706121
+201706408
+201706985
+201705778
+201705636
+201706454
+201706382
+201706009
+201706221
+201706418
+201706321
+201705509
+201706749
+201705549
+201705746
+201706261
+201705539
+201706167
+201706728
+201706452
+201706659
+201706980
+201705771
+201705796
+201705787
+201706241
+201706809
+201706685
+201706901
+201706051
+201706257
+201706388
+201705688
+201706176
+201706242
+201706781
+201706213
+201706293
+201706847
+201706466
+201706177
+201706253
+201705791
+201706910
+201706850
+201706037
+201705555
+201705768
+201706129
+201705785
+201706327
+201705727
+201706223
+201706682
+201706787
+201706450
+201705773
+201706684
+201706344
+201706968
+201706745
+201706439
+201706260
+201706948
+201706225
+201705589
+201706359
+201706324
+201706154
+201706079
+201705801
+201706337
+201706055
+201706729
+201705547
+201705645
+201706739
+201705760
+201706897
+201706020
+201706271
+201705694
+201706940
+201706174
+201705634
+201706830
+201706758
+201706631
+201706702
+201706723
+201706199
+201705573
+201706884
+201705662
+201706947
+201706865
+201706762
+201706311
+201706281
+201706194
+201706416
+201706356
+201705666
+201706238
+201706318
+201706363
+201706760
+201706673
+201706252
+201705675
+201705513
+201705797
+201706461
+201705764
+201705753
+201706279
+201706335
+201706090
+201705538
+201706236
+201706677
+201706895
+201705698
+201705786
+201706939
+201706205
+201706396
+201705620
+201706267
+201705578
+201706188
+201706966
+201706444
+201705738
+201706338
+201706189
+201705503
+201705721
+201706873
+201706346
+201706849
+201705665
+201706930
+201706364
+201706372
+201705627
+201706960
+201706357
+201706105
+201706668
+201706693
+201706872
+201705793
+201706270
+201705575
+201705554
+201706615
+201706345
+201706716
+201705631
+201706316
+201706185
+201706856
+201706308
+201705763
+201706973
+201706432
+201706993
+201706204
+201706646
+201706964
+201706769
+201705625
+201706107
+201705570
+201706073
+201706234
+201706263
+201705585
+201706399
+201706047
+201706643
+201706925
+201706824
+201706722
+201705713
+201706647
+201706256
+201706383
+201706360
+201706124
+201706389
+201706249
+201706354
+201706818
+201705656
+201706471
+201706179
+201706362
+201706786
+201706255
+201706619
+201706208
+201705683
+201706301
+201706240
+201705615
+201705623
+201706854
+201706877
+201706200
+201707433
+201706601
+201707831
+201707944
+201709810
+201709757
+201709699
+201707452
+201707093
+201709932
+201707839
+201709679
+201707058
+201709898
+201707341
+201709001
+201707968
+201709748
+201707372
+201709870
+201707431
+201706540
+201709805
+201707320
+201707383
+201707003
+201709809
+201707445
+201709721
+201709897
+201707922
+201709962
+201707149
+201707285
+201709747
+201709808
+201707277
+201707121
+201706580
+201707382
+201709681
+201707170
+201707055
+201707453
+201707051
+201707887
+201709720
+201706587
+201707069
+201707845
+201707904
+201706549
+201707888
+201707206
+201709682
+201709922
+201707368
+201709834
+201709866
+201707099
+201709923
+201707479
+201706519
+201707882
+201709998
+201707063
+201709931
+201707030
+201709822
+201709919
+201707443
+201707870
+201707161
+201709705
+201707906
+201709984
+201707986
+201706516
+201709693
+201707909
+201707485
+201709698
+201707138
+201709983
+201707498
+201709859
+201707129
+201709896
+201707073
+201707192
+201707486
+201709784
+201709847
+201707309
+201707130
+201707918
+201707403
+201709893
+201709775
+201706538
+201709007
+201707001
+201709876
+201707871
+201709875
+201706582
+201707011
+201707227
+201706513
+201707310
+201709958
+201709883
+201707846
+201707184
+201709662
+201709947
+201707872
+201707451
+201709732
+201706510
+201707034
+201709712
+201707418
+201707861
+201707224
+201707332
+201709814
+201709701
+201709864
+201709942
+201709759
+201707982
+201707098
+201709691
+201709976
+201707415
+201709772
+201709951
+201707153
+201709907
+201707449
+201709934
+201709994
+201709905
+201709927
+201709011
+201707450
+201707430
+201706522
+201707182
+201706553
+201709915
+201709836
+201709692
+201707429
+201709774
+201707837
+201709835
+201709717
+201707347
+201709874
+201709999
+201707826
+201707211
+201707432
+201706592
+201709969
+201709803
+201709824
+201709684
+201709837
+201707152
+201706567
+201707465
+201707090
+201707352
+201707844
+201707478
+201707159
+201707039
+201707060
+201707402
+201706598
+201707081
+201709823
+201706537
+201709711
+201706572
+201706525
+201709813
+201707018
+201706551
+201706578
+201707112
+201709937
+201707175
+201709829
+201707387
+201707279
+201706596
+201706511
+201707924
+201707841
+201706506
+201709871
+201709727
+201707810
+201707180
+201707437
+201709926
+201707900
+201707878
+201707316
+201709006
+201709886
+201707154
+201707472
+201709992
+201709676
+201709675
+201707094
+201707164
+201709944
+201707185
+201707119
+201707238
+201707116
+201707366
+201709833
+201707911
+201709867
+201707912
+201707346
+201709802
+201707408
+201709888
+201707016
+201709941
+201706554
+201707246
+201706528
+201709683
+201707365
+201709973
+201707458
+201707488
+201707355
+201709796
+201707287
+201707215
+201709761
+201709817
+201707494
+201707896
+201707298
+201707163
+201707077
+201709858
+201707140
+201709913
+201707860
+201707087
+201707816
+201707186
+201709949
+201706555
+201707229
+201707086
+201706548
+201707314
+201707056
+201706588
+201707275
+201706509
+201709798
+201709943
+201707143
+201707254
+201707007
+201707847
+201707344
+201707975
+201707825
+201709961
+201707914
+201706561
+201709884
+201707343
+201707935
+201709789
+201709873
+201706550
+201709908
+201707351
+201706530
+201707162
+201709703
+201709860
+201709690
+201709924
+201707497
+201707336
+201709848
+201707949
+201709781
+201706524
+201709955
+201707421
+201709742
+201709832
+201709851
+201709678
+201709987
+201707115
+201709753
+201707265
+201709000
+201709985
+201706577
+201709760
+201707109
+201707905
+201709828
+201707283
+201707339
+201709744
+201707319
+201707267
+201709911
+201709695
+201707833
+201707338
+201707308
+201707284
+201707236
+201709843
+201709842
+201707995
+201707169
+201707334
+201707822
+201707313
+201707010
+201706508
+201707188
+201707289
+201706573
+201709005
+201707977
+201707349
+201707132
+201707834
+201707282
+201709972
+201707880
+201709899
+201707070
+201709946
+201709783
+201707160
+201709763
+201707419
+201707257
+201709739
+201709891
+201707428
+201709795
+201707953
+201709868
+201707941
+201709704
+201709953
+201709986
+201707410
+201707961
+201707495
+201707305
+201709826
+201709714
+201709968
+201707005
+201707482
+201706521
+201707036
+201707812
+201707405
+201709003
+201709914
+201706584
+201709882
+201707330
+201707829
+201709830
+201709960
+201707303
+201706591
+201709765
+201707958
+201709669
+201706532
+201709667
+201709788
+201709734
+201709967
+201709889
+201709821
+201709708
+201707910
+201706547
+201707477
+201707038
+201707231
+201707460
+201707084
+201707373
+201707442
+201707379
+201709792
+201707101
+201706560
+201709735
+201707471
+201709975
+201707457
+201709890
+201709921
+201709733
+201706529
+201709702
+201706505
+201709786
+201707480
+201709818
+201707032
+201707467
+201707866
+201709804
+201709925
+201709954
+201707194
+201707021
+201709996
+201707262
+201709731
+201707813
+201709674
+201709933
+201709752
+201709853
+201707025
+201709895
+201709746
+201707973
+201709846
+201707799
+201709959
+201706504
+201707210
+201707318
+201709838
+201707390
+201707947
+201707354
+201707435
+201709716
+201709903
+201707493
+201707139
+201709780
+201709928
+201707171
+201707970
+201707864
+201706595
+201706503
+201707326
+201707441
+201709785
+201707376
+201709840
+201707205
+201709952
+201707385
+201707127
+201706564
+201707337
+201709855
+201709863
+201709686
+201707462
+201709799
+201707041
+201709700
+201707375
+201707464
+201709991
+201706583
+201707850
+201709740
+201707959
+201707438
+201707466
+201709766
+201707335
+201707196
+201709948
+201706568
+201707333
+201707932
+201707416
+201707400
+201709776
+201706527
+201707165
+201707214
+201707191
+201707126
+201709966
+201709981
+201709771
+201706518
+201709754
+201707244
+201707209
+201709945
+201709010
+201707340
+201707921
+201709745
+201707166
+201709881
+201707290
+201709806
+201709697
+201707071
+201709827
+201707146
+201707475
+201707328
+201709670
+201707815
+201707135
+201707998
+201709758
+201706594
+201709970
+201707015
+201709768
+201709852
+201709713
+201709726
+201707396
+201707976
+201707085
+201709839
+201707145
+201707496
+201707865
+201706559
+201706507
+201709862
+201709749
+201707892
+201709665
+201707997
+201707118
+201706586
+201707190
+201709689
+201707286
+201707459
+201709770
+201706502
+201707824
+201707269
+201709995
+201709741
+201707853
+201709782
+201706520
+201707407
+201709879
+201707424
+201709779
+201709661
+201706574
+201709719
+201707389
+201706590
+201706542
+201706576
+201707353
+201707436
+201707474
+201707392
+201709929
+201709743
+201707364
+201707946
+201709965
+201707993
+201707481
+201709707
+201707181
+201707288
+201706579
+201707927
+201707397
+201707342
+201706545
+201707805
+201707301
+201707943
+201707136
+201709751
+201707113
+201707461
+201707386
+201707899
+201707183
+201707017
+201709688
+201707075
+201706536
+201707962
+201707992
+201707233
+201707491
+201709663
+201709696
+201709935
+201707243
+201709729
+201707096
+201709982
+201707852
+201707300
+201709916
+201706575
+201706517
+201707966
+201707942
+201707876
+201707362
+201707002
+201707216
+201707092
+201709800
+201707004
+201707487
+201707054
+201707897
+201709725
+201709811
+201707404
+201709724
+201707492
+201709964
+201706544
+201707095
+201709815
+201709004
+201707065
+201707884
+201709706
+201707142
+201709980
+201707990
+201709831
+201709750
+201707974
+201709812
+201707064
+201707807
+201709918
+201707179
+201707062
+201707979
+201707306
+201709989
+201706593
+201707832
+201707074
+201707195
+201707804
+201707463
+201707263
+201709778
+201707945
+201709978
+201707902
+201707325
+201707111
+201707877
+201707473
+201707241
+201707037
+201709901
+201709979
+201709777
+201709849
+201707155
+201706589
+201707920
+201707370
+201707857
+201709861
+201709722
+201707317
+201707066
+201707879
+201709694
+201707456
+201706570
+201707220
+201707280
+201709974
+201707107
+201707818
+201707297
+201707000
+201707840
+201707913
+201707031
+201706581
+201707849
+201707802
+201707984
+201707253
+201707045
+201707954
+201709912
+201707803
+201707446
+201707991
+201707469
+201707014
+201707294
+201707923
+201707178
+201707856
+201709787
+201707050
+201707222
+201707828
+201707883
+201709685
+201709718
+201707398
+201709990
+201709767
+201707957
+201707381
+201707926
+201709668
+201707939
+201707423
+201707201
+201707454
+201709963
+201707156
+201707938
+201707843
+201706500
+201707079
+201707363
+201707228
+201707809
+201709793
+201707814
+201709910
+201707120
+201707863
+201707931
+201707323
+201709971
+201707234
+201707197
+201707455
+201707291
+201707917
+201707964
+201707836
+201709950
+201709671
+201707413
+201707088
+201707948
+201707830
+201709769
+201707983
+201707358
+201706526
+201707200
+201709988
+201707969
+201707898
+201707937
+201706539
+201707128
+201707819
+201707873
+201707006
+201709738
+201707008
+201707484
+201709807
+201707444
+201707929
+201709710
+201706563
+201709728
+201709877
+201706535
+201707345
+201709677
+201707874
+201709880
+201707393
+201707891
+201707800
+201706552
+201707187
+201707868
+201707391
+201707919
+201709736
+201706534
+201709820
+201707311
+201707013
+201707881
+201707024
+201707422
+201707971
+201707916
+201707202
+201707371
+201707059
+201709680
+201707434
+201709762
+201706600
+201707867
+201707835
+201707193
+201707022
+201709940
+201707440
+201707083
+201707174
+201707823
+201707361
+201707273
+201707955
+201707981
+201709887
+201709723
+201709764
+201709773
+201709666
+201707271
+201707295
+201707842
+201707907
+201707350
+201707447
+201709920
+201707960
+201707448
+201707219
+201707331
+201707499
+201707131
+201707104
+201707490
+201707321
+201707858
+201707406
+201707020
+201707150
+201709997
+201707258
+201707172
+201707108
+201709909
+201709957
+201707855
+201707028
+201706566
+201707940
+201707252
+201707412
+201707255
+201707322
+201707348
+201707176
+201707987
+201707151
+201709902
+201707925
+201709930
+201707198
+201707369
+201707218
+201707476
+201709009
+201707141
+201707260
+201707235
+201709865
+201706585
+201706515
+201706558
+201707886
+201707951
+201706597
+201707988
+201707053
+201707089
+201707207
+201707933
+201709797
+201707012
+201707133
+201709939
+201709790
+201707261
+201709956
+201707875
+201707256
+201707380
+201707972
+201707274
+201707889
+201707980
+201707952
+201707049
+201707950
+201707067
+201707827
+201709977
+201709892
+201707272
+201709845
+201707985
+201707848
+201707908
+201707801
+201706556
+201707230
+201707901
+201706562
+201707890
+201707426
+201707411
+201707808
+201707838
+201707427
+201709816
+201707885
+201709844
+201707296
+201707930
+201707934
+201707213
+201709819
+201707103
+201706501
+201707223
+201709900
+201707009
+201708293
+201709356
+201708240
+201707535
+201708313
+201707636
+201709339
+201708057
+201708049
+201709196
+201708026
+201708213
+201708275
+201709375
+201709414
+201708234
+201707592
+201708035
+201708059
+201708088
+201708977
+201707509
+201709197
+201709320
+201708166
+201707639
+201709213
+201708041
+201709489
+201708177
+201708139
+201709237
+201707552
+201709445
+201708212
+201709271
+201708159
+201708137
+201708238
+201708170
+201709393
+201708292
+201708011
+201709481
+201708232
+201709208
+201708145
+201708984
+201708220
+201707590
+201707518
+201708105
+201708950
+201708285
+201708284
+201708009
+201708936
+201708068
+201708940
+201708029
+201708263
+201708083
+201708971
+201708215
+201708142
+201709434
+201708939
+201709294
+201707531
+201708209
+201708503
+201708955
+201708979
+201707641
+201708058
+201707513
+201707601
+201709364
+201708992
+201709334
+201708201
+201709254
+201708211
+201709366
+201708994
+201708182
+201708103
+201709280
+201709455
+201707549
+201707743
+201708500
+201709299
+201707630
+201708265
+201708111
+201709205
+201708048
+201708121
+201709266
+201708301
+201708948
+201709482
+201707536
+201709498
+201707581
+201708202
+201709392
+201708018
+201708262
+201708082
+201708003
+201708076
+201708208
+201708270
+201708943
+201708075
+201708051
+201708002
+201709289
+201709471
+201709314
+201707544
+201708298
+201709386
+201708189
+201707628
+201707623
+201708027
+201709351
+201708959
+201708130
+201708251
+201708042
+201708191
+201708164
+201708133
+201709288
+201708307
+201709391
+201708221
+201709240
+201709333
+201709424
+201708235
+201707507
+201707502
+201708199
+201708146
+201709223
+201709381
+201708239
+201708045
+201709411
+201708123
+201709433
+201709306
+201708000
+201709437
+201708187
+201709257
+201709436
+201708963
+201709399
+201707541
+201708141
+201708970
+201708949
+201709279
+201708990
+201709470
+201709499
+201709361
+201708257
+201708978
+201708156
+201707748
+201709409
+201708151
+201709412
+201709365
+201709461
+201709194
+201709193
+201707539
+201708506
+201709456
+201708254
+201708502
+201708944
+201709212
+201709264
+201709492
+201708098
+201709291
+201709384
+201709380
+201709239
+201708962
+201708017
+201707516
+201707620
+201707610
+201708108
+201709298
+201709228
+201709396
+201708269
+201708028
+201709357
+201709226
+201709467
+201708227
+201709319
+201707594
+201708125
+201709242
+201708061
+201709370
+201708277
+201707565
+201709267
+201708120
+201709221
+201708122
+201708040
+201709258
+201708181
+201709253
+201708092
+201708192
+201709432
+201708954
+201709426
+201708982
+201707525
+201708161
+201709354
+201707537
+201707600
+201708245
+201707548
+201707551
+201708091
+201708276
+201709430
+201708935
+201709441
+201709347
+201709458
+201709244
+201707625
+201709233
+201708308
+201708244
+201708188
+201709210
+201709268
+201707505
+201708183
+201708152
+201709460
+201709211
+201708001
+201709323
+201707739
+201707742
+201709250
+201709329
+201708216
+201708039
+201707524
+201708162
+201708007
+201708947
+201709425
+201707563
+201707629
+201708116
+201707530
+201709416
+201709475
+201709352
+201708157
+201709487
+201708144
+201708509
+201708282
+201708135
+201707609
+201709485
+201708149
+201709262
+201709468
+201709449
+201708060
+201708175
+201708054
+201707580
+201708297
+201709335
+201709394
+201709429
+201709439
+201709457
+201709247
+201708069
+201709398
+201709491
+201708012
+201708132
+201708140
+201708127
+201709473
+201709338
+201708274
+201709359
+201708231
+201709478
+201709259
+201709435
+201708996
+201709459
+201707598
+201708306
+201708014
+201709322
+201709337
+201708508
+201709463
+201709401
+201709252
+201709241
+201708179
+201707744
+201709350
+201709374
+201708241
+201709260
+201707586
+201708278
+201709321
+201709372
+201708016
+201707631
+201709464
+201708228
+201709344
+201708311
+201709349
+201708504
+201708024
+201709373
+201707614
+201708972
+201707523
+201709410
+201707640
+201707582
+201709447
+201708974
+201709415
+201708163
+201708989
+201709251
+201709215
+201708184
+201708198
+201708126
+201709235
+201708176
+201708053
+201709451
+201708242
+201707564
+201709303
+201709477
+201708153
+201708255
+201708203
+201709200
+201709216
+201708226
+201708078
+201708032
+201708952
+201707578
+201707519
+201709395
+201709227
+201708233
+201708304
+201710195
+201708150
+201708167
+201709376
+201707606
+201709218
+201709272
+201707511
+201707560
+201708286
+201708999
+201709444
+201707533
+201709400
+201708296
+201708178
+201709293
+201707570
+201708219
+201708124
+201707607
+201708021
+201708044
+201708310
+201709290
+201707621
+201708283
+201708004
+201707613
+201709353
+201707611
+201708190
+201708290
+201708985
+201708196
+201707633
+201708094
+201708200
+201709368
+201708250
+201709379
+201708117
+201708960
+201707555
+201709407
+201707538
+201707591
+201708160
+201709336
+201707745
+201709295
+201708210
+201707504
+201707585
+201709243
+201709202
+201708085
+201708171
+201709417
+201707595
+201709330
+201708249
+201709282
+201709246
+201709201
+201708037
+201709413
+201707559
+201709340
+201709355
+201707605
+201709367
+201709488
+201709446
+201709420
+201709358
+201708006
+201707617
+201707501
+201708046
+201708080
+201708015
+201708119
+201709428
+201708115
+201708281
+201709378
+201709466
+201708973
+201707589
+201707575
+201708965
+201709493
+201707569
+201708148
+201709427
+201709301
+201707540
+201708134
+201708005
+201709238
+201707557
+201709362
+201708118
+201707624
+201709305
+201708089
+201708158
+201709285
+201709476
+201709490
+201707604
+201708034
+201708261
+201709315
+201709480
+201708993
+201707520
+201708961
+201709312
+201708194
+201708248
+201708173
+201707500
+201708128
+201707627
+201709274
+201709360
+201708260
+201707741
+201707527
+201707634
+201708946
+201707597
+201707542
+201707622
+201709443
+201708505
+201708079
+201709214
+201707596
+201708102
+201709404
+201709206
+201709287
+201708008
+201707602
+201707521
+201708510
+201707577
+201707545
+201709342
+201709327
+201708047
+201709465
+201707574
+201708055
+201709389
+201707738
+201707543
+201709363
+201707587
+201709448
+201707522
+201709236
+201708237
+201708964
+201708087
+201709255
+201708956
+201707554
+201709483
+201709204
+201709311
+201709397
+201708138
+201709263
+201707568
+201709325
+201707584
+201708288
+201709331
+201709402
+201709496
+201708169
+201707532
+201707632
+201709249
+201708096
+201709230
+201708225
+201708206
+201709309
+201707503
+201708966
+201707615
+201708112
+201707588
+201708501
+201709332
+201708986
+201707515
+201708193
+201709304
+201707593
+201707510
+201709403
+201708224
+201708266
+201707514
+201707553
+201709209
+201709281
+201709343
+201708109
+201708303
+201707572
+201708252
+201707550
+201708025
+201709474
+201709300
+201709286
+201707579
+201709431
+201709494
+201708968
+201709261
+201709276
+201707517
+201708062
+201709469
+201709198
+201707583
+201709199
+201708056
+201707635
+201707512
+201708958
+201707612
+201707508
+201709308
+201707637
+201709486
+201709438
+201708991
+201709275
+201707576
+201709345
+201709472
+201708019
+201709222
+201707599
+201707626
+201709270
+201708981
+201708997
+201709313
+201707618
+201707566
+201708987
+201709382
+201709453
+201707616
+201709217
+201708882
+201709506
+201708777
+201708800
+201707720
+201707712
+201708866
+201708892
+201707658
+201707687
+201709580
+201709550
+201707770
+201707668
+201707721
+201707781
+201707654
+201709596
+201708896
+201708932
+201708865
+201709633
+201709577
+201709553
+201708776
+201709597
+201708897
+201707697
+201708864
+201708853
+201709529
+201707778
+201709535
+201707710
+201709623
+201708836
+201709603
+201707681
+201709556
+201707665
+201708781
+201707652
+201708816
+201709647
+201708765
+201710088
+201708883
+201709657
+201707717
+201708902
+201708851
+201707672
+201709626
+201708907
+201708769
+201707656
+201708774
+201708924
+201709590
+201708779
+201708815
+201707796
+201708912
+201709510
+201707663
+201708771
+201709521
+201709631
+201708900
+201708843
+201709621
+201707754
+201709501
+201707667
+201709639
+201708920
+201707666
+201709520
+201707701
+201707715
+201707775
+201708862
+201708795
+201707769
+201708773
+201707733
+201710090
+201708922
+201707723
+201709630
+201709654
+201707661
+201709573
+201707704
+201707686
+201708826
+201708923
+201707779
+201707669
+201707657
+201707758
+201708872
+201709517
+201707675
+201708904
+201709545
+201708858
+201707680
+201708888
+201708934
+201709640
+201709618
+201709532
+201709600
+201709526
+201709608
+201709611
+201708925
+201707789
+201710095
+201709604
+201708814
+201707693
+201708926
+201710089
+201707660
+201709622
+201707774
+201709568
+201709504
+201709523
+201709567
+201708880
+201708850
+201709607
+201707722
+201709617
+201709591
+201709536
+201707679
+201708898
+201708770
+201708929
+201709554
+201709524
+201709587
+201708903
+201708848
+201708840
+201709644
+201708877
+201707694
+201707773
+201707737
+201708855
+201707768
+201708873
+201707707
+201708829
+201707730
+201709522
+201708891
+201709519
+201707718
+201708837
+201707777
+201709547
+201707753
+201709579
+201710092
+201708881
+201708804
+201708930
+201709585
+201709619
+201708796
+201708919
+201708775
+201709507
+201708869
+201709503
+201707648
+201709610
+201707782
+201709613
+201709515
+201707785
+201709653
+201709557
+201707703
+201707761
+201707771
+201709659
+201707674
+201707736
+201708782
+201707788
+201709643
+201708861
+201708878
+201709502
+201708772
+201709538
+201709530
+201707727
+201707645
+201707671
+201709635
+201707735
+201708833
+201707764
+201709551
+201707716
+201709569
+201707755
+201709651
+201709601
+201709540
+201707751
+201708812
+201707793
+201707729
+201708794
+201708831
+201709602
+201707767
+201708793
+201707728
+201707726
+201707724
+201709599
+201709509
+201707700
+201708803
+201707678
+201708832
+201708885
+201707713
+201707792
+201707763
+201707765
+201709593
+201709518
+201710091
+201709555
+201709505
+201707696
+201709534
+201709539
+201709549
+201707653
+201708805
+201708789
+201708821
+201708915
+201707766
+201708916
+201707685
+201709533
+201707682
+201708822
+201707662
+201709625
+201708788
+201707749
+201708863
+201707709
+201707664
+201707655
+201709634
+201709582
+201708811
+201707786
+201708909
+201708918
+201708807
+201709566
+201709598
+201707689
+201708830
+201708780
+201709552
+201707706
+201708905
+201708792
+201708819
+201709544
+201707676
+201708778
+201707670
+201707690
+201709656
+201709592
+201708818
+201709595
+201708825
+201708890
+201708857
+201708838
+201709546
+201709645
+201709514
+201707695
+201708849
+201707752
+201708499
+201709548
+201708875
+201708845
+201709574
+201707725
+201707650
+201708810
+201709572
+201707683
+201708895
+201709589
+201707797
+201708827
+201709655
+201707688
+201707677
+201708801
+201709512
+201708921
+201709632
+201709559
+201709508
+201709615
+201708817
+201708847
+201708876
+201709628
+201707762
+201707787
+201709571
+201708809
+201709511
+201709614
+201708899
+201708841
+201707673
+201709576
+201707719
+201709537
+201707732
+201709649
+201709646
+201708879
+201707783
+201707705
+201707647
+201707776
+201707795
+201708894
+201708823
+201707750
+201709606
+201708901
+201708917
+201709500
+201708893
+201707759
+201707702
+201708802
+201709543
+201709588
+201709563
+201707780
+201709636
+201709561
+201707791
+201709620
+201708652
+201708593
+201708571
+201708485
+201708662
+201708716
+201708610
+201708390
+201710184
+201708735
+201710214
+201708351
+201708699
+201708597
+201708551
+201708670
+201710204
+201710194
+201708483
+201710207
+201710058
+201710105
+201710172
+201708560
+201708677
+201708343
+201708687
+201708641
+201710078
+201710110
+201708651
+201708713
+201708705
+201708408
+201708363
+201710219
+201708613
+201708419
+201710196
+201708691
+201710151
+201708608
+201710019
+201710248
+201710007
+201708437
+201708490
+201710055
+201710154
+201708545
+201710182
+201710005
+201708607
+201710250
+201710097
+201710037
+201710001
+201708719
+201708405
+201708595
+201710153
+201708566
+201708626
+201710192
+201710075
+201708661
+201710137
+201708614
+201710012
+201708751
+201710144
+201708467
+201708615
+201708492
+201708479
+201708753
+201708355
+201708693
+201710155
+201708530
+201708375
+201708518
+201708443
+201708561
+201708322
+201708536
+201708594
+201708612
+201708542
+201708458
+201708601
+201708637
+201708341
+201710178
+201710043
+201710109
+201708727
+201708658
+201710049
+201708710
+201708527
+201708415
+201708418
+201708430
+201708327
+201708647
+201708627
+201708605
+201708664
+201710167
+201708429
+201708589
+201708453
+201708348
+201708657
+201710217
+201710098
+201708731
+201710231
+201710215
+201708394
+201708757
+201710229
+201710077
+201710127
+201708631
+201710065
+201708412
+201708711
+201710063
+201710139
+201708578
+201708645
+201710126
+201708496
+201710111
+201710060
+201708473
+201710045
+201708470
+201710016
+201710051
+201710009
+201710200
+201710017
+201708513
+201708690
+201708497
+201708676
+201708464
+201708557
+201708316
+201708461
+201708586
+201708585
+201708468
+201708381
+201708450
+201708451
+201708463
+201708414
+201710169
+201708353
+201708400
+201708427
+201708582
+201708339
+201710131
+201710113
+201708697
+201708685
+201708428
+201708398
+201708366
+201710096
+201710173
+201708581
+201708750
+201710039
+201710164
+201708665
+201708416
+201710086
+201708475
+201710026
+201708456
+201708388
+201708675
+201708628
+201708516
+201708764
+201708529
+201708365
+201710128
+201708681
+201708383
+201708736
+201708748
+201710227
+201708706
+201710056
+201710142
+201708525
+201708552
+201708441
+201708600
+201710202
+201710141
+201708396
+201710000
+201710179
+201708421
+201708574
+201710132
+201708555
+201710104
+201708722
+201708512
+201710013
+201708487
+201710108
+201710247
+201708679
+201708350
+201708462
+201710015
+201708742
+201708761
+201708723
+201708471
+201710238
+201710198
+201710018
+201710064
+201708417
+201710220
+201710161
+201708733
+201710084
+201708402
+201710069
+201708411
+201708489
+201710143
+201710199
+201710216
+201708321
+201710150
+201708484
+201708726
+201708674
+201710146
+201710226
+201708328
+201710242
+201710134
+201708648
+201708331
+201710152
+201708698
+201710209
+201708745
+201710082
+201710122
+201708447
+201710062
+201708403
+201708469
+201710076
+201708448
+201710125
+201708548
+201708635
+201710186
+201708440
+201708474
+201708495
+201708449
+201708465
+201708337
+201708630
+201708758
+201710014
+201710102
+201710129
+201708368
+201710053
+201708320
+201708602
+201708688
+201708604
+201708432
+201710160
+201708359
+201708624
+201708335
+201710099
+201710145
+201708426
+201708342
+201708345
+201708749
+201710027
+201708382
+201708667
+201708579
+201708385
+201708444
+201708433
+201708338
+201710147
+201710083
+201710120
+201708741
+201708336
+201708584
+201708636
+201708386
+201708434
+201708397
+201710118
+201708410
+201710249
+201708540
+201708404
+201708618
+201708319
+201708480
+201708340
+201708330
+201708378
+201708763
+201708347
+201710074
+201710073
+201708478
+201708494
+201710138
+201710133
+201710218
+201708372
+201708554
+201710162
+201710048
+201710059
+201708730
+201710240
+201708457
+201708632
+201708431
+201708762
+201708346
+201708358
+201708629
+201708317
+201708760
+201708349
+201710072
+201708364
+201708740
+201710163
+201708369
+201708707
+201708725
+201708406
+201710052
+201708649
+201710029
+201708633
+201710252
+201708407
+201710243
+201708391
+201710119
+201710232
+201708423
+201710205
+201708315
+201708592
+201710174
+201708596
+201708617
+201708673
+201710130
+201710158
+201708392
+201708703
+201708583
+201708481
+201708459
+201708352
+201708739
+201708389
+201710047
+201708486
+201708622
+201710002
+201710080
+201708591
+201710114
+201710170
+201710008
+201710023
+201710068
+201708565
+201708744
+201708371
+201708642
+201708700
+201708550
+201708333
+201710046
+201708356
+201708515
+201710236
+201710180
+201710201
+201708653
+201708616
+201708683
+201710103
+201710188
+201710228
+201708362
+201708620
+201710067
+201710176
+201708702
+201710022
+201710121
+201710190
+201708314
+201708442
+201708493
+201710234
+201708357
+201708318
+201708373
+201708650
+201710135
+201710157
+201708709
+201708324
+201708522
+201710222
+201708323
+201708477
+201708580
+201708756
+201708401
+201708544
+201710123
+201708452
+201708387
+201708564
+201710054
+201708361
+201710181
+201710101
+201708646
+201708472
+201708588
+201708643
+201710213
+201710036
+201708476
+201710168
+201710149
+201708701
+201710021
+201710106
+201710177
+201708332
+201710165
+201708729
+201708623
+201708537
+201710071
+201710212
+201710028
+201710197
+201710189
+201710085
+201710156
+201708759
+201710140
+201710115
+201708379
+201710035
+201708329
+201708573
+201710136
+201708374
+201710230
+201710159
+201710224
+201708376
+201710223
+201708491
+201708384
+201708678
+201710020
+201708556
+201710044
+201708541
+201708425
+201708732
+201710025
+201708511
+201710050
+201710235
+201710208
+201710183
+201710166
+201710246
+201710061
+201708438
+201708718
+201708747
+201710112
+201710171
+201710040
+201708546
+201710225
+201708526
+201710203
+201708482
+201708424
+201708666
+201708488
+201710206
+201710033
+201708655
+201710079
+201708466
+201710251
+201708558
+201708728
+201710241
+201710245
+201708523
+201710256
+201710185
+201710038
+201710904
+201710327
+201710592
+201710464
+201710883
+201711001
+201710305
+201710722
+201710522
+201710259
+201711106
+201711350
+201711210
+201710713
+201711428
+201710333
+201710840
+201711960
+201710459
+201710632
+201710923
+201711188
+201710987
+201711222
+201710438
+201710835
+201711982
+201711091
+201710552
+201711308
+201710654
+201711125
+201710957
+201710930
+201711375
+201711950
+201710671
+201711352
+201710560
+201710433
+201710528
+201711450
+201711135
+201711976
+201711374
+201710426
+201710721
+201711438
+201710745
+201711067
+201710578
+201710660
+201710620
+201710309
+201711253
+201710480
+201710581
+201710520
+201711073
+201710605
+201711307
+201710323
+201711232
+201711451
+201710407
+201710644
+201710484
+201710687
+201710380
+201711058
+201710642
+201711489
+201711136
+201710873
+201710988
+201710851
+201710799
+201710534
+201711389
+201710519
+201711034
+201710291
+201710515
+201711410
+201710614
+201711108
+201710559
+201710753
+201710455
+201711179
+201711124
+201710646
+201711345
+201710974
+201710299
+201711470
+201711401
+201710668
+201711287
+201710856
+201711270
+201711020
+201710886
+201711184
+201710580
+201711485
+201711302
+201711099
+201710833
+201711172
+201711314
+201711012
+201711239
+201710697
+201710956
+201710979
+201710819
+201711163
+201711946
+201711372
+201710444
+201711978
+201710716
+201710653
+201710576
+201711265
+201710726
+201711171
+201710968
+201710628
+201710303
+201710735
+201711043
+201711354
+201710626
+201710351
+201710588
+201711196
+201710775
+201711079
+201711126
+201711323
+201710736
+201711989
+201710963
+201710509
+201710845
+201710711
+201710616
+201710860
+201710892
+201711192
+201711416
+201710771
+201710869
+201710667
+201710384
+201711206
+201710872
+201710448
+201711998
+201710706
+201710834
+201710759
+201710741
+201711048
+201711098
+201710405
+201710652
+201710467
+201710399
+201710633
+201711157
+201710965
+201710545
+201711460
+201710875
+201711972
+201711339
+201711056
+201710382
+201710682
+201711295
+201711944
+201711393
+201710391
+201711449
+201711046
+201711029
+201711142
+201710850
+201711180
+201710676
+201710550
+201710752
+201710615
+201710836
+201710936
+201710732
+201710788
+201710374
+201710389
+201710497
+201710786
+201711039
+201710859
+201710798
+201710705
+201711109
+201711097
+201710594
+201711090
+201710955
+201711988
+201711086
+201710729
+201710514
+201711018
+201710275
+201710401
+201711081
+201711174
+201710785
+201710621
+201711083
+201711050
+201710806
+201710908
+201711398
+201710951
+201710600
+201711255
+201710877
+201711183
+201711407
+201711369
+201710318
+201711019
+201711477
+201710276
+201710756
+201710493
+201710911
+201710306
+201711245
+201711400
+201711425
+201710796
+201711351
+201711110
+201710618
+201711309
+201710742
+201710751
+201711069
+201710388
+201710881
+201710279
+201710983
+201711321
+201711151
+201710535
+201710839
+201710350
+201711038
+201711198
+201711241
+201711363
+201710613
+201711131
+201711116
+201710815
+201710719
+201710627
+201710929
+201710262
+201710707
+201710958
+201710827
+201710261
+201711986
+201711089
+201711306
+201710437
+201711992
+201710326
+201710922
+201710949
+201710647
+201710556
+201711977
+201711973
+201711267
+201710774
+201710990
+201710708
+201711013
+201711146
+201711981
+201710714
+201710991
+201710521
+201710487
+201711366
+201710568
+201710758
+201711119
+201710586
+201710635
+201710341
+201711216
+201710897
+201711205
+201710939
+201710414
+201711041
+201711190
+201710656
+201710720
+201711985
+201710962
+201711212
+201711077
+201711966
+201710316
+201710666
+201710844
+201711299
+201711956
+201710386
+201711072
+201710639
+201710993
+201710849
+201711305
+201711167
+201711238
+201711128
+201710950
+201711378
+201711433
+201710778
+201710940
+201711260
+201710931
+201711165
+201711455
+201711968
+201711346
+201710488
+201711498
+201711182
+201710821
+201711290
+201711368
+201710876
+201711113
+201711313
+201710814
+201711250
+201710413
+201710495
+201710665
+201711217
+201710901
+201711301
+201711298
+201710659
+201711226
+201710511
+201711138
+201711409
+201711948
+201710945
+201711225
+201711358
+201711027
+201710938
+201711162
+201711240
+201711344
+201711995
+201711349
+201711479
+201711454
+201711273
+201711951
+201710941
+201711000
+201710910
+201710549
+201710768
+201711156
+201711129
+201711014
+201711320
+201711024
+201711303
+201710739
+201710503
+201711362
+201711094
+201711373
+201711492
+201711311
+201710750
+201711242
+201710710
+201710619
+201711326
+201711269
+201711942
+201711263
+201710367
+201710345
+201710765
+201711026
+201710813
+201711399
+201710634
+201711949
+201711118
+201711336
+201711329
+201711071
+201711234
+201711227
+201711484
+201711406
+201711312
+201711030
+201711202
+201711491
+201711249
+201710538
+201710770
+201711051
+201711341
+201710562
+201711264
+201711199
+201711959
+201711458
+201711057
+201711243
+201711112
+201711008
+201710976
+201711211
+201710887
+201710365
+201711325
+201711300
+201710572
+201711132
+201710784
+201711422
+201710694
+201710622
+201710564
+201710900
+201710416
+201710794
+201710404
+201711231
+201711488
+201710879
+201711175
+201710791
+201711322
+201710354
+201710658
+201710641
+201711317
+201711117
+201710454
+201710848
+201710863
+201710899
+201710530
+201710703
+201710985
+201710567
+201711007
+201711471
+201710808
+201710336
+201711474
+201711441
+201711237
+201711017
+201711328
+201711093
+201711246
+201710510
+201711187
+201710260
+201711149
+201710763
+201711962
+201710458
+201711028
+201710907
+201711468
+201710617
+201711161
+201710905
+201710731
+201710915
+201710338
+201711370
+201711178
+201711218
+201710823
+201710445
+201710728
+201711054
+201711282
+201710783
+201710661
+201710629
+201710507
+201711059
+201711085
+201710970
+201711330
+201711158
+201711153
+201711970
+201710343
+201711964
+201710696
+201711023
+201711197
+201710411
+201711371
+201711006
+201710290
+201711452
+201711431
+201710466
+201710557
+201711016
+201711364
+201710678
+201710948
+201710964
+201710379
+201710286
+201711394
+201710864
+201710896
+201710294
+201711482
+201711493
+201710518
+201710673
+201711984
+201711082
+201711994
+201711044
+201710489
+201711331
+201710830
+201710273
+201711997
+201711103
+201710547
+201710387
+201710631
+201710932
+201711160
+201710686
+201710858
+201710891
+201711476
+201711133
+201711991
+201710855
+201711463
+201711494
+201710540
+201711435
+201710593
+201710919
+201710727
+201711448
+201711969
+201710704
+201710612
+201710777
+201711033
+201710995
+201711145
+201710272
+201711993
+201711144
+201711215
+201711444
+201710512
+201710761
+201710977
+201710477
+201711170
+201710329
+201711327
+201710602
+201710797
+201710527
+201710655
+201710643
+201710681
+201710820
+201710776
+201710481
+201711258
+201710624
+201710762
+201710422
+201711965
+201710693
+201710861
+201711011
+201710822
+201710498
+201711115
+201710961
+201711286
+201710524
+201711421
+201711137
+201710465
+201710824
+201711495
+201710889
+201710415
+201711440
+201710810
+201710257
+201711447
+201711445
+201711123
+201711376
+201711432
+201711102
+201711338
+201711045
+201710347
+201711233
+201711381
+201711480
+201711434
+201710946
+201710293
+201711292
+201711140
+201711355
+201710446
+201711478
+201711185
+201711453
+201710709
+201711360
+201710335
+201711042
+201710712
+201710997
+201710895
+201710928
+201711963
+201711417
+201710348
+201711139
+201710780
+201711036
+201710587
+201710734
+201710691
+201711283
+201711462
+201710310
+201710807
+201710871
+201710571
+201710598
+201710334
+201711316
+201711297
+201710994
+201711391
+201710760
+201711424
+201711032
+201711052
+201711276
+201710315
+201710893
+201711248
+201711176
+201711186
+201711983
+201710397
+201710561
+201711397
+201710842
+201710410
+201710298
+201710460
+201711208
+201710263
+201710424
+201710423
+201710986
+201710555
+201711064
+201711472
+201711423
+201710725
+201711070
+201711367
+201711483
+201710385
+201710890
+201711207
+201711025
+201710998
+201711200
+201710501
+201711291
+201710967
+201711429
+201711148
+201710431
+201711191
+201710469
+201711224
+201711315
+201711272
+201710357
+201710829
+201710371
+201710769
+201710702
+201710396
+201711388
+201711166
+201710314
+201711005
+201710960
+201711147
+201710476
+201710980
+201710381
+201710935
+201710452
+201710277
+201710432
+201710420
+201711442
+201711996
+201710483
+201711958
+201711120
+201711957
+201711379
+201710377
+201710884
+201710473
+201710307
+201711143
+201711954
+201710435
+201710342
+201711481
+201710542
+201710300
+201710449
+201711092
+201711031
+201710453
+201710442
+201710853
+201711195
+201711464
+201711189
+201710406
+201710491
+201711430
+201710451
+201711168
+201710421
+201711177
+201710443
+201711365
+201710337
+201710942
+201711084
+201711275
+201710953
+201710689
+201710403
+201710590
+201711096
+201710882
+201710733
+201711348
+201711075
+201710789
+201710373
+201711289
+201710603
+201711971
+201710744
+201710648
+201710376
+201710865
+201711236
+201711004
+201711194
+201710264
+201710743
+201711022
+201710412
+201710748
+201710274
+201711150
+201710579
+201711943
+201710838
+201710320
+201710623
+201710544
+201710952
+201710283
+201710330
+201711461
+201710909
+201711223
+201710570
+201710828
+201710575
+201710429
+201710596
+201710508
+201710346
+201710430
+201711296
+201710730
+201711087
+201711392
+201711467
+201710364
+201710258
+201710359
+201711268
+201710340
+201711337
+201711055
+201710554
+201710847
+201710368
+201710607
+201710490
+201710296
+201710918
+201710353
+201711469
+201711152
+201710584
+201710685
+201710526
+201711130
+201711953
+201710599
+201711466
+201710539
+201710352
+201710989
+201711280
+201710757
+201711487
+201711247
+201710375
+201711220
+201710937
+201710812
+201710395
+201711490
+201710265
+201710874
+201710441
+201711947
+201710301
+201710494
+201710360
+201710767
+201710803
+201711353
+201710541
+201710868
+201710625
+201711080
+201711114
+201710321
+201711254
+201711347
+201710419
+201710331
+201711324
+201710304
+201710485
+201711413
+201710282
+201710482
+201710972
+201711261
+201710355
+201711105
+201710609
+201710475
+201711285
+201710308
+201710363
+201710344
+201710434
+201710517
+201711279
+201710553
+201710439
+201711412
+201710462
+201711335
+201711941
+201710392
+201711193
+201710927
+201711201
+201711021
+201710978
+201711159
+201710425
+201710394
+201710302
+201710269
+201711408
+201710418
+201710339
+201710837
+201710800
+201710402
+201710636
+201710546
+201710295
+201710747
+201710297
+201710440
+201710529
+201710447
+201710324
+201710831
+201710428
+201710669
+201711061
+201711235
+201710688
+201711107
+201710611
+201710630
+201710280
+201710457
+201710378
+201711262
+201710717
+201710267
+201710311
+201710474
+201710543
+201710322
+201710362
+201710723
+201710787
+201710683
+201710281
+201710975
+201711411
+201710921
+201711169
+201710971
+201711343
+201711402
+201711063
+201710356
+201711979
+201710398
+201710565
+201710292
+201711945
+201710393
+201710737
+201710325
+201710811
+201710924
+201711334
+201710920
+201710595
+201711060
+201710479
+201711304
+201710408
+201710513
+201710287
+201711134
+201711961
+201710695
+201710574
+201710436
+201711068
+201711204
+201710536
+201711456
+201710409
+201711967
+201710486
+201710370
+201710328
+201710317
+201711390
+201710288
+201711999
+201711074
+201710456
+201711277
+201710369
+201710766
+201711100
+201711385
+201711499
+201711975
+201710679
+201710645
+201710505
+201710496
+201710537
+201711356
+201711357
+201710472
+201710755
+201710417
+201710700
+201710826
+201710372
+201711228
+201710903
+201711418
+201710809
+201711173
+201710319
+201711457
+201710698
+201710817
+201710664
+201711396
+201710878
+201711251
+201711359
+201711974
+201710270
+201711853
+201711507
+201711565
+201712766
+201712294
+201712679
+201712341
+201712095
+201712759
+201712749
+201712423
+201712018
+201712281
+201712014
+201712096
+201712471
+201712392
+201712570
+201712049
+201712734
+201712573
+201711804
+201712179
+201712098
+201711533
+201711676
+201711929
+201711672
+201711531
+201712574
+201712359
+201712308
+201711739
+201712100
+201712383
+201711708
+201712797
+201711560
+201712583
+201712225
+201711840
+201712539
+201711937
+201711593
+201712249
+201712514
+201712525
+201711659
+201712747
+201711591
+201711635
+201712197
+201711864
+201712028
+201712125
+201711589
+201712184
+201712726
+201712545
+201712401
+201712425
+201712112
+201712772
+201712293
+201712632
+201712394
+201712439
+201712695
+201712063
+201712257
+201711683
+201711729
+201712156
+201712774
+201712134
+201712748
+201711893
+201712089
+201712077
+201711650
+201712373
+201712520
+201712489
+201711704
+201712313
+201712007
+201712476
+201711714
+201712278
+201712560
+201712488
+201711504
+201711668
+201712561
+201711855
+201712592
+201711769
+201712393
+201712427
+201712061
+201712154
+201712783
+201711823
+201711568
+201711657
+201711585
+201711925
+201711567
+201712013
+201712789
+201711841
+201711833
+201711717
+201712144
+201712731
+201712486
+201712263
+201711595
+201711741
+201712603
+201712493
+201712685
+201711612
+201712543
+201712804
+201712470
+201711753
+201712590
+201711868
+201712518
+201712712
+201712122
+201712703
+201712413
+201712475
+201712680
+201712208
+201712374
+201711927
+201712535
+201712725
+201711712
+201712765
+201712579
+201712131
+201711649
+201712424
+201711719
+201711587
+201712283
+201712370
+201711720
+201712448
+201712079
+201711735
+201712044
+201712236
+201712160
+201711866
+201711521
+201711776
+201711921
+201712035
+201712894
+201712709
+201712556
+201712142
+201711917
+201711809
+201711795
+201712881
+201711731
+201712688
+201712588
+201712646
+201712491
+201712385
+201711899
+201712222
+201712031
+201712434
+201712550
+201711757
+201712153
+201711551
+201712353
+201711574
+201712628
+201712391
+201712499
+201712707
+201712148
+201711540
+201711814
+201712256
+201712415
+201711802
+201712875
+201711680
+201711705
+201711817
+201712555
+201712130
+201711671
+201712000
+201712538
+201712788
+201712128
+201711732
+201712485
+201712297
+201712080
+201711634
+201712817
+201712186
+201712332
+201712798
+201712114
+201712207
+201711771
+201711862
+201712484
+201712617
+201712210
+201712224
+201712143
+201712495
+201712352
+201711603
+201712437
+201712183
+201712141
+201712578
+201712509
+201712364
+201712106
+201712677
+201712092
+201711912
+201712568
+201711857
+201712059
+201712708
+201712824
+201712094
+201711801
+201712610
+201712343
+201712684
+201712581
+201712496
+201712133
+201712834
+201712314
+201712513
+201712347
+201712587
+201712366
+201712831
+201712037
+201712356
+201712616
+201712102
+201712082
+201711871
+201712498
+201712706
+201712110
+201712315
+201712412
+201712619
+201712255
+201712676
+201712562
+201711542
+201712064
+201712070
+201712671
+201711897
+201712182
+201712205
+201712072
+201712431
+201711890
+201711888
+201711594
+201711537
+201711756
+201711632
+201712041
+201712735
+201711662
+201712781
+201712233
+201711608
+201711738
+201711665
+201712878
+201711763
+201711902
+201712810
+201712666
+201712557
+201711576
+201712811
+201711846
+201711658
+201711532
+201712040
+201711884
+201711530
+201712893
+201712147
+201712254
+201712055
+201711887
+201711800
+201712273
+201712481
+201712052
+201712808
+201712829
+201711727
+201712457
+201711652
+201712189
+201712660
+201711916
+201711614
+201712586
+201711578
+201712252
+201712635
+201712569
+201712104
+201712480
+201712074
+201711629
+201711816
+201712580
+201712405
+201712611
+201711746
+201712450
+201712826
+201711553
+201711605
+201711895
+201712011
+201711860
+201712166
+201712365
+201711832
+201712621
+201712375
+201712367
+201712819
+201712251
+201712563
+201711544
+201712531
+201711501
+201711748
+201711733
+201711503
+201712755
+201711807
+201712090
+201712287
+201712344
+201712827
+201711874
+201712171
+201712529
+201712638
+201711549
+201712036
+201712794
+201711915
+201712564
+201712442
+201712282
+201712647
+201712306
+201712410
+201712277
+201712202
+201712220
+201711723
+201712800
+201711539
+201712830
+201712380
+201711607
+201712270
+201712593
+201712285
+201711706
+201711575
+201712192
+201712467
+201712042
+201712245
+201711679
+201712086
+201712802
+201712175
+201711883
+201712728
+201712691
+201711910
+201712158
+201712286
+201712737
+201711512
+201712120
+201712023
+201712821
+201712262
+201712419
+201712575
+201712474
+201712823
+201712577
+201712780
+201712021
+201712825
+201711613
+201711715
+201711527
+201711616
+201712382
+201712414
+201712407
+201711698
+201712683
+201712554
+201711822
+201711754
+201712291
+201711645
+201711854
+201712357
+201711747
+201711834
+201711772
+201711624
+201711894
+201712541
+201712466
+201712719
+201712422
+201712877
+201712761
+201711654
+201711900
+201711500
+201712669
+201712311
+201712884
+201712231
+201712698
+201712054
+201712244
+201711515
+201711630
+201712444
+201712530
+201712469
+201711573
+201712289
+201711892
+201712390
+201711514
+201712779
+201712386
+201712473
+201712129
+201712030
+201711600
+201712727
+201712652
+201712017
+201712861
+201711628
+201712456
+201711837
+201711543
+201712124
+201711812
+201712237
+201711909
+201711803
+201711647
+201711639
+201712502
+201712785
+201711682
+201712227
+201712355
+201711856
+201712778
+201712195
+201711622
+201712758
+201712230
+201711844
+201712754
+201712478
+201712053
+201712084
+201712656
+201711523
+201711646
+201712139
+201712058
+201711536
+201712238
+201712296
+201711779
+201712443
+201712062
+201712371
+201711615
+201712001
+201712416
+201711718
+201712406
+201711642
+201712740
+201711773
+201712101
+201712280
+201712429
+201712301
+201712483
+201712661
+201711920
+201712532
+201711579
+201712582
+201711768
+201712436
+201712069
+201711783
+201712625
+201712863
+201712604
+201712433
+201712805
+201711691
+201711828
+201712551
+201711502
+201712461
+201712029
+201712081
+201712248
+201712596
+201712213
+201712454
+201712067
+201711561
+201712504
+201712085
+201712022
+201711761
+201711511
+201711564
+201711940
+201711819
+201712659
+201711934
+201712526
+201712157
+201712549
+201712152
+201712746
+201712873
+201712465
+201712242
+201712333
+201711722
+201712093
+201712340
+201712243
+201711519
+201711797
+201711760
+201712648
+201711786
+201711721
+201712820
+201712384
+201712686
+201712836
+201712879
+201712716
+201712860
+201712870
+201712750
+201712675
+201711619
+201712305
+201712458
+201712885
+201711637
+201712218
+201712796
+201712180
+201712501
+201712188
+201712552
+201711700
+201712869
+201711906
+201712640
+201712503
+201711919
+201711644
+201712403
+201712119
+201712307
+201712598
+201712016
+201712309
+201712038
+201712814
+201712193
+201711851
+201711667
+201711936
+201711863
+201711570
+201711835
+201711596
+201712627
+201712872
+201711673
+201712745
+201711881
+201712165
+201712636
+201711547
+201711778
+201712874
+201712075
+201711599
+201712807
+201712567
+201712812
+201712178
+201712692
+201711558
+201711867
+201711744
+201711518
+201712368
+201712121
+201711838
+201712718
+201711852
+201711604
+201712832
+201712418
+201712624
+201711582
+201712639
+201712883
+201711839
+201712777
+201711583
+201712813
+201712378
+201712736
+201712181
+201711696
+201712482
+201712769
+201712815
+201711788
+201712519
+201712260
+201711546
+201712702
+201711517
+201711740
+201711566
+201712763
+201712670
+201711808
+201712507
+201711602
+201712246
+201711534
+201712490
+201712408
+201712776
+201711687
+201712109
+201712770
+201712626
+201712630
+201712828
+201712650
+201711529
+201711799
+201711877
+201712663
+201711572
+201712787
+201711588
+201711660
+201712733
+201711535
+201711845
+201711702
+201712689
+201712006
+201712775
+201712492
+201712065
+201712891
+201711938
+201712533
+201712360
+201712339
+201712523
+201712015
+201712868
+201712694
+201712169
+201712784
+201711538
+201712631
+201712312
+201712164
+201712088
+201711580
+201711933
+201712690
+201712097
+201712742
+201711710
+201712050
+201712662
+201711876
+201712185
+201712614
+201712673
+201711611
+201712066
+201712585
+201712645
+201712888
+201712768
+201711548
+201711601
+201711651
+201711870
+201712516
+201712151
+201711789
+201712447
+201711670
+201712871
+201712622
+201712428
+201712071
+201711648
+201711610
+201712512
+201712438
+201712571
+201712381
+201712477
+201712003
+201712508
+201711775
+201712107
+201712459
+201712665
+201711790
+201712700
+201712629
+201712786
+201712597
+201712417
+201712400
+201712713
+201712595
+201712445
+201712223
+201712773
+201711678
+201712801
+201712664
+201712336
+201711847
+201712887
+201712338
+201712135
+201712472
+201711597
+201712379
+201711703
+201712299
+201711522
+201712837
+201712835
+201712076
+201712890
+201712607
+201712667
+201712196
+201711625
+201711609
+201711697
+201711939
+201712209
+201712108
+201711831
+201712756
+201711869
+201712528
+201712699
+201711653
+201712506
+201712658
+201711872
+201712682
+201712697
+201712253
+201711777
+201711742
+201712649
+201711826
+201711926
+201712342
+201711836
+201712606
+201711785
+201711618
+201711627
+201712204
+201712216
+201711931
+201711592
+201712792
+201712767
+201712247
+201712396
+201711656
+201712265
+201711510
+201711766
+201711935
+201711913
+201712876
+201711901
+201711875
+201712033
+201712358
+201712547
+201712672
+201711792
+201711693
+201711813
+201712806
+201711798
+201711830
+201712389
+201712833
+201712609
+201712553
+201712643
+201711563
+201712882
+201711711
+201712751
+201711633
+201712226
+201711623
+201712867
+201712605
+201711914
+201711699
+201711734
+201711781
+201711736
+201711643
+201712729
+201712791
+201711556
+201712599
+201712176
+201712446
+201712145
+201712259
+201712009
+201712623
+201712349
+201711730
+201712267
+201711924
+201712331
+201712790
+201711774
+201712618
+201712753
+201711752
+201711562
+201712799
+201711695
+201712149
+201712275
+201712651
+201712722
+201711598
+201712345
+201711525
+201711859
+201712862
+201712711
+201711861
+201711726
+201711528
+201712304
+201712732
+201712123
+201712822
+201712363
+201712886
+201712782
+201711590
+201712760
+201712757
+201712701
+201712866
+201711820
+201712272
+201712620
+201712762
+201712613
+201711759
+201711508
+201712116
+201712025
+201712693
+201712276
+201712738
+201712048
+201712634
+201712395
+201712710
+201711905
+201711880
+201712163
+201711794
+201711811
+201711827
+201712264
+201711509
+201711762
+201711545
+201712032
+201711555
+201711617
+201711758
+201711674
+201712203
+201711843
+201712056
+201712404
+201711569
+201711770
+201711782
+201712073
+201712240
+201712511
+201711725
+201712865
+201712421
+201712816
+201712132
+201712334
+201711552
+201712744
+201711793
+201712600
+201712793
+201711513
+201712730
+201712546
+201712612
+201712566
+201712087
+201712103
+201712083
+201711750
+201712215
+201712681
+201712295
+201712601
+201712696
+201711922
+201712420
+201711557
+201712463
+201712803
+201712020
+201712271
+201712542
+201711631
+201711885
+201711550
+201712397
+201712544
+201712633
+201712159
+201711904
+201712174
+201712140
+201711780
+201712453
+201712047
+201712892
+201711765
+201711606
+201712091
+201711745
+201712214
+201712269
+201712362
+201712536
+201712388
+201711506
+201711681
+201711586
+201712565
+201711524
+201711655
+201711516
+201712376
+201712517
+201712795
+201711713
+201712045
+201712258
+201712674
+201711879
+201713760
+201713588
+201712841
+201712961
+201713553
+201713984
+201713017
+201713593
+201713730
+201713616
+201713673
+201713053
+201713716
+201713650
+201713005
+201713185
+201713204
+201713851
+201713051
+201713024
+201713941
+201713828
+201713040
+201713099
+201713037
+201713229
+201713939
+201713724
+201713137
+201713814
+201713048
+201713692
+201713077
+201713172
+201713014
+201713627
+201713697
+201713196
+201712956
+201713834
+201712999
+201713963
+201713609
+201713518
+201713858
+201713987
+201712995
+201713701
+201713827
+201713569
+201713739
+201713923
+201713108
+201713726
+201713904
+201713778
+201713219
+201713958
+201713054
+201713577
+201713568
+201713766
+201712911
+201713517
+201713089
+201713759
+201713187
+201713159
+201713198
+201713937
+201713681
+201712934
+201713128
+201713638
+201713761
+201713214
+201713912
+201713731
+201713677
+201713648
+201713030
+201713808
+201713769
+201713898
+201713117
+201713798
+201713693
+201713640
+201712947
+201712982
+201713064
+201713186
+201713537
+201713981
+201713559
+201713732
+201713620
+201713720
+201713714
+201713776
+201712840
+201713946
+201713032
+201713086
+201713865
+201713915
+201713052
+201712967
+201713741
+201713756
+201713210
+201712909
+201713873
+201713557
+201713853
+201713927
+201712849
+201713563
+201713617
+201713208
+201713063
+201713983
+201713524
+201713139
+201713579
+201713838
+201713903
+201713012
+201713704
+201713082
+201713999
+201713765
+201713719
+201713991
+201713103
+201713652
+201713770
+201713107
+201713822
+201713978
+201713758
+201713218
+201713771
+201713723
+201713038
+201712930
+201713925
+201713164
+201713150
+201713506
+201713567
+201713699
+201713645
+201713763
+201713192
+201713060
+201713167
+201713066
+201713669
+201713114
+201713106
+201713001
+201713622
+201713997
+201713881
+201713676
+201713043
+201713110
+201713634
+201713666
+201713003
+201713848
+201713098
+201713767
+201713007
+201713509
+201713127
+201713510
+201713862
+201713067
+201713836
+201713211
+201713594
+201713195
+201712845
+201713837
+201713768
+201713868
+201713513
+201713029
+201713725
+201713824
+201713804
+201713078
+201713990
+201713023
+201713142
+201713527
+201713819
+201713825
+201713034
+201713980
+201713515
+201713227
+201713169
+201713950
+201713602
+201712847
+201713852
+201713046
+201713045
+201712852
+201712904
+201713895
+201713788
+201713097
+201713547
+201712974
+201713615
+201713116
+201713671
+201713777
+201713902
+201713738
+201713073
+201713821
+201713093
+201713684
+201713985
+201712859
+201713619
+201713855
+201713674
+201713799
+201713973
+201713605
+201713922
+201712926
+201713938
+201713532
+201712935
+201712940
+201713861
+201712965
+201713893
+201713153
+201713689
+201713894
+201713596
+201713146
+201713115
+201713533
+201712977
+201713880
+201713618
+201713815
+201713022
+201713899
+201713802
+201713957
+201713589
+201713200
+201713901
+201713803
+201713096
+201713750
+201713558
+201713157
+201712958
+201713158
+201713789
+201713556
+201713126
+201713882
+201713540
+201713688
+201713749
+201713872
+201713528
+201713039
+201713753
+201713945
+201713220
+201713874
+201713936
+201713131
+201712944
+201713680
+201713076
+201713085
+201713629
+201713010
+201713163
+201713102
+201713976
+201713599
+201713133
+201713194
+201712979
+201713711
+201713062
+201713636
+201713930
+201713733
+201712900
+201713070
+201713088
+201713962
+201713145
+201713120
+201713951
+201713810
+201713737
+201713900
+201713516
+201712927
+201713523
+201713545
+201713155
+201712922
+201713661
+201713779
+201712941
+201712943
+201713785
+201713111
+201713792
+201713055
+201713000
+201713601
+201713072
+201713611
+201712992
+201713215
+201713621
+201713538
+201713095
+201713884
+201713013
+201713888
+201713191
+201713132
+201713664
+201712968
+201713604
+201713084
+201712906
+201713141
+201713791
+201713020
+201713197
+201713729
+201712916
+201713143
+201712966
+201713710
+201712983
+201713905
+201713843
+201713678
+201713920
+201713866
+201713926
+201713811
+201713625
+201713154
+201713503
+201713794
+201713870
+201712949
+201713883
+201713544
+201713914
+201713679
+201713081
+201713996
+201713109
+201713964
+201713125
+201713113
+201713691
+201713221
+201713782
+201713695
+201713989
+201712918
+201713762
+201713608
+201713860
+201713830
+201713057
+201713977
+201713649
+201713016
+201713213
+201713004
+201713706
+201713144
+201713119
+201713775
+201713654
+201713909
+201713641
+201713092
+201712969
+201712908
+201713683
+201712986
+201713531
+201713189
+201713796
+201713080
+201713735
+201712991
+201712919
+201713607
+201713216
+201713718
+201713501
+201713165
+201713552
+201713202
+201713886
+201713152
+201713507
+201713592
+201712948
+201713746
+201713891
+201713644
+201713212
+201713597
+201713222
+201713847
+201712910
+201713748
+201713646
+201713514
+201713876
+201713561
+201713566
+201713917
+201713842
+201712960
+201713188
+201713793
+201712850
+201713571
+201713662
+201713201
+201713541
+201713585
+201713864
+201713124
+201713890
+201712954
+201712981
+201713790
+201713869
+201712932
+201713587
+201713586
+201713745
+201713530
+201713635
+201713138
+201713044
+201713747
+201713887
+201713166
+201713551
+201713685
+201713653
+201713122
+201712913
+201712952
+201713173
+201712953
+201713687
+201713021
+201713582
+201713968
+201712844
+201713712
+201713755
+201713859
+201713162
+201713632
+201713009
+201713205
+201713101
+201713932
+201713042
+201713610
+201713511
+201713033
+201712957
+201713121
+201713526
+201712931
+201712842
+201713560
+201713075
+201713643
+201712898
+201713534
+201712924
+201713006
+201713839
+201713660
+201713149
+201713543
+201713520
+201713199
+201713590
+201712962
+201712912
+201713715
+201713647
+201713074
+201713795
+201713623
+201713911
+201713015
+201713727
+201713812
+201713772
+201713554
+201712905
+201713931
+201713595
+201713148
+201713694
+201712855
+201713942
+201713705
+201713536
+201713831
+201712937
+201713675
+201713686
+201713027
+201713580
+201713907
+201713574
+201713129
+201712921
+201712972
+201712942
+201712846
+201713041
+201713947
+201713813
+201713508
+201713954
+201713123
+201713854
+201713995
+201712839
+201713002
+201712963
+201713940
+201713801
+201713628
+201713974
+201713018
+201713134
+201713505
+201713025
+201712897
+201713633
+201713224
+201713924
+201713783
+201713637
+201713700
+201713879
+201712838
+201713564
+201713069
+201713562
+201713949
+201713147
+201713856
+201712902
+201713670
+201712987
+201713584
+201713171
+201713787
+201713065
+201712978
+201713555
+201713916
+201713833
+201712989
+201713773
+201712848
+201713502
+201713805
+201713105
+201713728
+201713993
+201712895
+201713849
+201712994
+201713576
+201712950
+201713655
+201713774
+201713944
+201713542
+201713734
+201713826
+201713663
+201713665
+201713642
+201712971
+201712907
+201712945
+201713151
+201713935
+201713525
+201712917
+201713226
+201713160
+201713136
+201713613
+201713707
+201712988
+201713744
+201713889
+201713209
+201713118
+201713656
+201712951
+201713174
+201713028
+201713549
+201713929
+201713573
+201713967
+201713170
+201713906
+201712854
+201712858
+201713764
+201713651
+201713823
+201713698
+201713829
+201713835
+201712959
+201713112
+201712976
+201713757
+201713612
+201713702
+201713878
+201712899
+201712970
+201712857
+201712938
+201713019
+201713550
+201713083
+201713754
+201713548
+201713631
+201713913
+201713784
+201713840
+201713682
+201713578
+201712955
+201712929
+201712984
+201713630
+201713948
+201713806
+201713971
+201713207
+201713056
+201713071
+201713867
+201712964
+201712901
+201713529
+201713193
+201713668
+201713375
+201713316
+201713428
+201713402
+201714902
+201714632
+201714002
+201714901
+201714849
+201713376
+201714759
+201714561
+201713381
+201714961
+201714896
+201714626
+201714012
+201714803
+201713258
+201714569
+201714915
+201714875
+201714636
+201714620
+201714104
+201713371
+201714016
+201713368
+201714833
+201714027
+201714678
+201714650
+201714533
+201713363
+201714877
+201713493
+201714770
+201714698
+201713422
+201714030
+201714504
+201714131
+201713282
+201713474
+201714633
+201714858
+201714624
+201714949
+201714936
+201714792
+201714001
+201714964
+201713320
+201714701
+201714535
+201714841
+201713483
+201714853
+201714719
+201714871
+201714677
+201714765
+201714628
+201714028
+201714538
+201714646
+201714532
+201714735
+201714842
+201714214
+201714790
+201713299
+201713240
+201714597
+201713445
+201714549
+201713427
+201714887
+201714018
+201714135
+201714121
+201714740
+201713281
+201714645
+201714747
+201714543
+201713290
+201713352
+201714843
+201714929
+201713266
+201714916
+201714584
+201714824
+201713304
+201713378
+201714778
+201714575
+201714725
+201714552
+201714635
+201714753
+201714124
+201714729
+201714076
+201714023
+201714126
+201714528
+201714851
+201714697
+201713473
+201714113
+201714737
+201714880
+201714718
+201714827
+201714756
+201714782
+201713453
+201714580
+201714914
+201713390
+201714963
+201713447
+201713419
+201713251
+201713491
+201714123
+201714937
+201714106
+201714838
+201714516
+201714905
+201714752
+201714025
+201714960
+201714095
+201714807
+201714831
+201714651
+201714688
+201713239
+201714048
+201714954
+201714931
+201714951
+201714546
+201714734
+201714010
+201714794
+201714898
+201714631
+201714876
+201713303
+201714618
+201713254
+201713288
+201714925
+201714799
+201714680
+201714923
+201713345
+201714521
+201714739
+201713283
+201713277
+201714545
+201713334
+201713430
+201714774
+201714020
+201714696
+201714043
+201714060
+201714751
+201713498
+201714758
+201714866
+201714870
+201714900
+201714507
+201714570
+201714607
+201714596
+201713437
+201714614
+201714772
+201714099
+201714063
+201714630
+201714873
+201714736
+201714806
+201713278
+201714515
+201714950
+201714539
+201713467
+201714675
+201713230
+201714717
+201713306
+201714920
+201714844
+201714022
+201714860
+201713233
+201714999
+201714663
+201713340
+201714127
+201713351
+201714839
+201713342
+201714913
+201714637
+201714933
+201714703
+201714867
+201713301
+201714667
+201714529
+201714119
+201714132
+201713236
+201714075
+201713478
+201714676
+201714564
+201714541
+201714939
+201714571
+201714938
+201714815
+201714886
+201713360
+201714942
+201714080
+201714654
+201714685
+201714578
+201714102
+201714140
+201714848
+201714754
+201713472
+201713433
+201714517
+201714009
+201714530
+201714586
+201714657
+201714840
+201714616
+201714943
+201714809
+201713499
+201713423
+201714598
+201714029
+201713477
+201713323
+201714826
+201714506
+201714610
+201714109
+201714534
+201714105
+201714501
+201714085
+201714771
+201714919
+201714862
+201714577
+201713286
+201713350
+201713248
+201714520
+201714702
+201714732
+201714547
+201713497
+201714656
+201714038
+201714798
+201714903
+201713385
+201714818
+201714510
+201714083
+201714117
+201713356
+201714924
+201714863
+201714574
+201713179
+201713300
+201714912
+201713429
+201713332
+201713252
+201714576
+201714705
+201713384
+201714687
+201714805
+201714710
+201714070
+201714666
+201714953
+201714120
+201714727
+201714639
+201714668
+201714513
+201714609
+201714720
+201714777
+201714509
+201713315
+201714723
+201714797
+201713268
+201714825
+201714059
+201714081
+201714802
+201714067
+201714684
+201714750
+201713355
+201714047
+201714215
+201714069
+201713440
+201714715
+201714744
+201714714
+201714845
+201713408
+201714073
+201713476
+201713400
+201714110
+201714512
+201713295
+201714947
+201713241
+201713482
+201713404
+201714653
+201714531
+201714730
+201714054
+201714706
+201714968
+201714537
+201713461
+201714959
+201714694
+201714791
+201714603
+201713439
+201714138
+201713178
+201714072
+201714137
+201714602
+201713180
+201714542
+201714583
+201714897
+201714608
+201714084
+201714761
+201713479
+201714787
+201713255
+201714133
+201714689
+201713396
+201713442
+201713481
+201714039
+201714869
+201714704
+201713235
+201713339
+201713374
+201713417
+201713325
+201714108
+201714502
+201714726
+201714217
+201714817
+201714046
+201714592
+201714743
+201713244
+201714820
+201714033
+201713398
+201714722
+201714683
+201714004
+201713391
+201713267
+201713260
+201714856
+201713274
+201714122
+201714707
+201713460
+201714066
+201714008
+201714899
+201714606
+201714525
+201713444
+201714071
+201714780
+201714970
+201714579
+201714094
+201713273
+201713420
+201713469
+201714032
+201714855
+201714522
+201714590
+201713393
+201714967
+201714566
+201714879
+201714768
+201713272
+201714216
+201714641
+201714623
+201714588
+201714604
+201714567
+201714050
+201713495
+201714742
+201714713
+201713418
+201713486
+201713456
+201713302
+201714655
+201714786
+201713434
+201714086
+201714062
+201713279
+201714686
+201713403
+201714615
+201714966
+201714836
+201713287
+201713432
+201714116
+201714601
+201713262
+201713327
+201714812
+201714129
+201714911
+201714648
+201714582
+201714621
+201714034
+201713182
+201713388
+201714695
+201714918
+201714098
+201713237
+201713333
+201714612
+201714731
+201714661
+201713264
+201713406
+201714728
+201713373
+201713324
+201713232
+201714505
+201714874
+201714141
+201713243
+201713441
+201714627
+201714558
+201714585
+201714783
+201714745
+201713246
+201714755
+201713234
+201714118
+201713435
+201714934
+201714693
+201714508
+201713449
+201714005
+201713318
+201713407
+201714550
+201714868
+201713261
+201714573
+201714664
+201713313
+201714093
+201714600
+201713297
+201714763
+201713309
+201714832
+201713305
+201714045
+201713405
+201713452
+201714642
+201714779
+201714599
+201714061
+201714213
+201714928
+201713392
+201713338
+201713367
+201713485
+201714000
+201713389
+201714852
+201713319
+201713370
+201714808
+201714910
+201714793
+201713457
+201713488
+201713397
+201714644
+201714672
+201714861
+201713177
+201714665
+201713443
+201714819
+201713346
+201714944
+201714864
+201713358
+201714889
+201713337
+201714557
+201714053
+201714518
+201714813
+201713369
+201714958
+201714562
+201714659
+201714811
+201714622
+201713298
+201713308
+201714068
+201714922
+201713454
+201714049
+201713413
+201714087
+201714036
+201713455
+201713276
+201713484
+201713446
+201713424
+201714969
+201713285
+201714828
+201714007
+201714581
+201714945
+201713416
+201713321
+201714926
+201714962
+201714634
+201713465
+201714548
+201714617
+201713364
+201713362
+201714074
+201714500
+201713250
+201714795
+201714555
+201714885
+201713475
+201714674
+201713463
+201714112
+201713415
+201714814
+201713256
+201713176
+201713294
+201713247
+201713238
+201714662
+201714940
+201714041
+201714536
+201714738
+201714810
+201713312
+201714749
+201714699
+201714511
+201714551
+201714619
+201714128
+201714090
+201714649
+201714595
+201714611
+201714097
+201713280
+201714776
+201714796
+201713322
+201714927
+201714035
+201714058
+201714572
+201714560
+201713383
+201714804
+201713365
+201714930
+201714556
+201714884
+201713328
+201714921
+201713343
+201713336
+201713377
+201713265
+201713271
+201714019
+201714540
+201714594
+201714524
+201714865
+201714679
+201714821
+201713253
+201713284
+201713382
+201714835
+201713462
+201713275
+201713426
+201714051
+201714878
+201714907
+201713459
+201714065
+201713330
+201714565
+201713347
+201713291
+201713361
+201713257
+201713348
+201714830
+201713471
+201713366
+201713487
+201713425
+201713354
+201714952
+201714837
+201714881
+201714031
+201713353
+201713289
+201714077
+201714011
+201713438
+201713341
+201713399
+201714708
+201714712
+201713335
+201713314
+201713326
+201714847
+201714587
+201714682
+201714092
+201714100
+201714021
+201714003
+201713470
+201714891
+201713412
+201713480
+201714136
+201714017
+201713292
+201713310
+201714175
+201715144
+201716263
+201716352
+201714143
+201716378
+201716286
+201715863
+201715929
+201714247
+201716368
+201715084
+201715061
+201714470
+201716330
+201715019
+201715893
+201714452
+201715982
+201714366
+201714386
+201715897
+201714422
+201715881
+201715157
+201714185
+201715126
+201716331
+201714172
+201716271
+201715113
+201715041
+201715956
+201714443
+201714427
+201715957
+201715115
+201715070
+201716334
+201715968
+201714992
+201715007
+201715978
+201715890
+201715051
+201715056
+201714171
+201715127
+201715970
+201714419
+201714358
+201715924
+201714205
+201714468
+201714377
+201715962
+201715869
+201715092
+201714144
+201716377
+201715125
+201714976
+201715023
+201715915
+201716275
+201714425
+201716305
+201715137
+201715119
+201716325
+201715122
+201715952
+201715145
+201715074
+201715888
+201714476
+201715961
+201715073
+201716355
+201715075
+201714379
+201715027
+201715103
+201715089
+201714210
+201715044
+201715879
+201715931
+201714163
+201716327
+201715018
+201714394
+201715000
+201715896
+201715919
+201715047
+201714183
+201714199
+201715972
+201715080
+201715105
+201715876
+201715091
+201715042
+201716301
+201714448
+201715940
+201716304
+201715974
+201716362
+201714431
+201715108
+201715079
+201714462
+201716358
+201714429
+201715955
+201715994
+201716297
+201715156
+201715973
+201716270
+201715914
+201714153
+201715991
+201715040
+201715033
+201715868
+201714488
+201715875
+201715039
+201714207
+201715046
+201715927
+201715009
+201716341
+201715889
+201715048
+201715053
+201714398
+201715949
+201715158
+201715015
+201716264
+201714486
+201715946
+201716308
+201715082
+201714998
+201716313
+201715138
+201714375
+201715013
+201714230
+201715147
+201715997
+201716266
+201715941
+201714410
+201715887
+201715967
+201715155
+201714439
+201714430
+201715916
+201715081
+201716277
+201714385
+201715065
+201715123
+201715098
+201715002
+201715909
+201715124
+201716315
+201715060
+201715030
+201715980
+201716299
+201714234
+201714159
+201714246
+201715052
+201715918
+201716343
+201714204
+201716320
+201716256
+201715128
+201715921
+201716363
+201716310
+201715954
+201715045
+201714179
+201716257
+201714188
+201715880
+201714471
+201715151
+201715086
+201714994
+201715088
+201716281
+201715136
+201715093
+201714997
+201716374
+201715943
+201715930
+201714409
+201715095
+201714986
+201716303
+201716261
+201715939
+201714498
+201716300
+201716262
+201715121
+201714221
+201715975
+201714145
+201715979
+201716357
+201714181
+201715892
+201714473
+201714404
+201714147
+201715936
+201715923
+201715016
+201715992
+201715036
+201714229
+201716306
+201714211
+201714359
+201714977
+201714479
+201715966
+201715141
+201715942
+201714245
+201714487
+201714461
+201716337
+201714361
+201714405
+201714438
+201714411
+201714367
+201714174
+201714426
+201715008
+201714445
+201714380
+201714228
+201714235
+201714201
+201714453
+201714162
+201714499
+201714388
+201714497
+201714146
+201714387
+201714370
+201714368
+201714451
+201714432
+201714491
+201714197
+201714481
+201714198
+201715087
+201714442
+201714170
+201714196
+201714407
+201714376
+201714186
+201715867
+201716348
+201716319
+201716338
+201716284
+201715010
+201714176
+201716279
+201714415
+201714482
+201714249
+201714231
+201714161
+201714985
+201715050
+201714191
+201714989
+201714474
+201714392
+201714227
+201714157
+201714988
+201714496
+201715903
+201715096
+201714996
+201714242
+201714220
+201714454
+201714158
+201714187
+201714397
+201714369
+201714402
+201714233
+201714450
+201714472
+201715058
+201714365
+201714446
+201714980
+201714206
+201714406
+201714208
+201715085
+201714428
+201715059
+201716289
+201714160
+201714421
+201716292
+201714236
+201716278
+201715934
+201714993
+201714423
+201714241
+201714155
+201715107
+201714403
+201716350
+201715986
+201715885
+201715963
+201716323
+201715110
+201716272
+201716302
+201714483
+201714399
+201715038
+201715947
+201715884
+201714363
+201716326
+201714219
+201716268
+201716335
+201716282
+201715097
+201715872
+201714225
+201715984
+201714382
+201714437
+201715895
+201715932
+201715142
+201715117
+201715908
+201715981
+201714232
+201714212
+201715055
+201715112
+201716298
+201714378
+201714190
+201714420
+201714485
+201715878
+201716290
+201714167
+201715996
+201714995
+201714469
+201714390
+201714436
+201714357
+201714148
+201714484
+201715120
+201715068
+201714401
+201714435
+201714168
+201714982
+201716267
+201715864
+201715945
+201716336
+201716295
+201714460
+201714165
+201714984
+201716360
+201715133
+201715032
+201714413
+201715054
+201715901
+201716288
+201714416
+201714391
+201715131
+201714218
+201716361
+201715072
+201715935
+201714395
+201716347
+201715064
+201714362
+201716260
+201715891
+201715938
+201715031
+201715894
+201715154
+201714417
+201715104
+201715990
+201716307
+201715069
+201714200
+201715146
+201714152
+201715988
+201716359
+201714433
+201715976
+201714193
+201715066
+201714455
+201715874
+201715129
+201716280
+201715152
+201714381
+201716276
+201715143
+201715866
+201715063
+201716265
+201715882
+201714238
+201715998
+201715995
+201714243
+201714156
+201714494
+201715111
+201714987
+201715965
+201716340
+201715076
+201716317
+201715100
+201715906
+201716314
+201715950
+201715021
+201716372
+201714440
+201715911
+201714489
+201714424
+201714466
+201716332
+201714478
+201715139
+201716283
+201715964
+201714434
+201715987
+201716273
+201715985
+201716345
+201716274
+201716291
+201716367
+201715035
+201715905
+201715873
+201714154
+201714991
+201714364
+201715899
+201716364
+201715871
+201716322
+201714983
+201714180
+201715907
+201714383
+201716285
+201715150
+201715922
+201716312
+201716328
+201716321
+201715948
+201714475
+201714458
+201716369
+201715140
+201714492
+201715953
+201714372
+201715913
+201714447
+201714226
+201714177
+201716356
+201716309
+201715159
+201714224
+201714459
+201715106
+201715951
+201715004
+201716259
+201716344
+201716349
+201714414
+201714981
+201715944
+201716373
+201716376
+201715999
+201716200
+201715856
+201714290
+201715465
+201715754
+201716240
+201715836
+201714352
+201716237
+201715848
+201715847
+201714272
+201716149
+201714322
+201715809
+201716233
+201716180
+201715840
+201715463
+201714254
+201716199
+201714268
+201716243
+201716153
+201714280
+201715766
+201715750
+201716244
+201716245
+201715837
+201716229
+201715762
+201716173
+201716186
+201716177
+201715826
+201715473
+201715822
+201716148
+201715838
+201716172
+201714275
+201714334
+201715477
+201714349
+201714310
+201716235
+201716204
+201714316
+201715841
+201714270
+201716216
+201715833
+201715717
+201715731
+201716157
+201715845
+201716195
+201715497
+201715860
+201715815
+201714293
+201715460
+201716198
+201716215
+201715802
+201714320
+201714303
+201716154
+201716255
+201715812
+201716254
+201716201
+201715763
+201714265
+201716171
+201716170
+201715792
+201715816
+201714307
+201715462
+201715485
+201716228
+201716193
+201716151
+201716185
+201715715
+201715466
+201715819
+201716164
+201716197
+201716234
+201714277
+201714341
+201714325
+201716213
+201714975
+201714286
+201716175
+201714267
+201715803
+201715793
+201716141
+201715764
+201715853
+201715844
+201714301
+201716205
+201714308
+201714273
+201715498
+201714255
+201715797
+201715801
+201714266
+201715850
+201714318
+201714327
+201715832
+201716181
+201715452
+201714289
+201714348
+201716225
+201715734
+201715829
+201714319
+201716223
+201715804
+201716159
+201715817
+201716208
+201714339
+201714306
+201714321
+201716144
+201715796
+201715746
+201715798
+201715849
+201716140
+201715834
+201715738
+201714973
+201715489
+201716214
+201715851
+201715825
+201714340
+201715773
+201715722
+201715484
+201715775
+201715481
+201715474
+201715478
+201716194
+201716251
+201715852
+201714342
+201714313
+201715823
+201714329
+201715739
+201715742
+201716206
+201715467
+201716156
+201715747
+201716226
+201714324
+201716152
+201715723
+201716191
+201715831
+201716162
+201715828
+201716168
+201716158
+201715732
+201716220
+201714274
+201716145
+201714279
+201716161
+201715835
+201714300
+201715470
+201716241
+201716250
+201715854
+201716147
+201714333
+201715827
+201715765
+201716221
+201714305
+201714332
+201714337
+201714343
+201714291
+201715488
+201714311
+201715471
+201716150
+201715818
+201714314
+201715846
+201716230
+201714287
+201714331
+201715726
+201715806
+201715791
+201716210
+201715748
+201715492
+201716242
+201716160
+201715740
+201715795
+201716212
+201716207
+201715457
+201716238
+201714294
+201714346
+201716219
+201715820
+201715857
+201714350
+201714323
+201715799
+201715486
+201714974
+201714278
+201714299
+201715794
+201715855
+201714288
+201716252
+201714309
+201714347
+201716211
+201715475
+201714345
+201716196
+201715716
+201715800
+201715824
+201715730
+201715808
+201716248
+201715805
+201716165
+201715760
+201714351
+201716231
+201716166
+201714336
+201714312
+201714972
+201715813
+201716247
+201716183
+201714284
+201714304
+201714276
+201714355
+201715451
+201714282
+201714344
+201715859
+201716222
+201716218
+201715772
+201715821
+201715744
+201714328
+201715751
+201714330
+201714295
+201714283
+201714315
+201714335
+201716246
+201716217
+201715753
+201716239
+201715472
+201716163
+201714292
+201715749
+201715494
+201716253
+201716236
+201714353
+201714317
+201714338
+201716143
+201716169
+201715807
+201715468
+201716142
+201716227
+201715814
+201716146
+201714326
+201714256
+201716202
+201715843
+201715839
+201714298
+201715842
+201716174
+201714296
+201714356
+201715745
+201716184
+201716232
+201714297
+201715830
+201714285
+201715752
+201715810
+201716209
+201716249
+201715858
+201714281
+201714354
+201716155
+201716224
+201716178
+201715811
+201714269
+201716203
+201714271
+201715363
+201716410
+201715652
+201715446
+201715180
+201715448
+201716452
+201716486
+201715584
+201715357
+201715171
+201716069
+201716018
+201715169
+201716083
+201715689
+201716984
+201716095
+201715205
+201715636
+201716450
+201715174
+201716006
+201716966
+201715593
+201716030
+201716385
+201716139
+201715290
+201715196
+201715380
+201716937
+201716460
+201715400
+201715271
+201716131
+201716024
+201715661
+201715705
+201715376
+201716390
+201715703
+201715578
+201715606
+201716137
+201715639
+201715221
+201716952
+201716078
+201715362
+201715227
+201715391
+201716963
+201715428
+201716031
+201715331
+201716134
+201716009
+201716996
+201715200
+201716444
+201716962
+201715665
+201716014
+201716092
+201715589
+201715310
+201716959
+201716496
+201716430
+201715511
+201716406
+201715595
+201715580
+201716481
+201715412
+201715619
+201715312
+201715698
+201716958
+201716495
+201716454
+201716032
+201715438
+201716005
+201716386
+201716436
+201715410
+201715252
+201715433
+201715216
+201715166
+201716970
+201715281
+201715193
+201716979
+201715277
+201715346
+201716108
+201716063
+201716957
+201716038
+201716972
+201715517
+201715194
+201715692
+201715233
+201716020
+201716465
+201715330
+201715650
+201716983
+201715304
+201716473
+201715609
+201715431
+201716067
+201715320
+201715540
+201715664
+201715501
+201715163
+201715275
+201715388
+201716965
+201715521
+201716477
+201715676
+201715329
+201715323
+201715305
+201715369
+201715349
+201716062
+201715702
+201715576
+201715181
+201716973
+201715332
+201716987
+201715658
+201715267
+201716949
+201715542
+201716999
+201715686
+201715293
+201716010
+201716472
+201716029
+201716384
+201715657
+201716948
+201716986
+201715319
+201716064
+201716976
+201715184
+201716407
+201715532
+201715207
+201715662
+201715384
+201715559
+201716106
+201715186
+201715436
+201715404
+201715264
+201715445
+201715516
+201716380
+201715343
+201716081
+201715683
+201715333
+201716969
+201715654
+201715545
+201715670
+201716980
+201716419
+201715608
+201715409
+201716022
+201716447
+201715218
+201716938
+201715613
+201715250
+201715668
+201716499
+201716040
+201716417
+201715301
+201715441
+201715179
+201716132
+201715316
+201716423
+201715707
+201716077
+201715325
+201716968
+201715651
+201716021
+201716084
+201715591
+201715558
+201716985
+201715338
+201716088
+201715611
+201716943
+201715554
+201715269
+201715352
+201715378
+201716960
+201715513
+201716094
+201715170
+201715509
+201716489
+201715426
+201715706
+201716961
+201716491
+201715573
+201715209
+201715427
+201715257
+201715260
+201715687
+201715272
+201715339
+201715242
+201715208
+201716442
+201715182
+201715328
+201715392
+201715334
+201715258
+201715177
+201715197
+201715361
+201715515
+201715367
+201716053
+201716951
+201715435
+201716052
+201715440
+201715204
+201715447
+201716011
+201716121
+201715336
+201715215
+201715417
+201716025
+201715408
+201716051
+201715503
+201715562
+201715672
+201715276
+201715289
+201716073
+201715354
+201716012
+201715525
+201715630
+201716100
+201716037
+201715251
+201715240
+201715212
+201715411
+201716044
+201715424
+201715588
+201716004
+201715541
+201715538
+201715659
+201716017
+201716039
+201716015
+201716945
+201715350
+201715704
+201716411
+201715265
+201716112
+201716469
+201715569
+201716019
+201715299
+201715449
+201715228
+201715610
+201715632
+201715178
+201716065
+201715168
+201716476
+201716054
+201715206
+201716042
+201716449
+201715232
+201716412
+201715211
+201715300
+201716425
+201716466
+201715365
+201715345
+201715399
+201716028
+201716990
+201715214
+201715302
+201716075
+201715256
+201716087
+201715284
+201715375
+201715199
+201715390
+201716101
+201715450
+201715245
+201716057
+201715235
+201715255
+201715315
+201716058
+201715507
+201716116
+201716992
+201715443
+201715192
+201716401
+201715297
+201716129
+201715644
+201715533
+201716404
+201716497
+201715556
+201715405
+201715615
+201715246
+201715288
+201715368
+201715594
+201715418
+201715274
+201716445
+201716934
+201716995
+201715700
+201716117
+201715229
+201715395
+201716130
+201716459
+201715641
+201716003
+201715713
+201715549
+201716446
+201715347
+201716964
+201715539
+201715348
+201715342
+201715371
+201716474
+201716967
+201715416
+201715279
+201715165
+201716997
+201716981
+201716124
+201716086
+201715710
+201715560
+201715337
+201715173
+201715340
+201715366
+201715341
+201716068
+201715247
+201716956
+201716048
+201715577
+201715398
+201715280
+201715616
+201716982
+201715612
+201715434
+201715667
+201716468
+201715231
+201715224
+201715294
+201715605
+201715234
+201716097
+201716007
+201715419
+201716059
+201715219
+201715254
+201715607
+201715442
+201716433
+201715697
+201715397
+201716998
+201715387
+201715188
+201715422
+201715656
+201716994
+201716056
+201715311
+201715344
+201715298
+201716061
+201716110
+201715550
+201715374
+201716079
+201715287
+201716002
+201716126
+201716971
+201715283
+201715389
+201715167
+201715506
+201716409
+201716099
+201716933
+201716072
+201716035
+201715528
+201715701
+201715230
+201716023
+201715198
+201716070
+201716383
+201715551
+201715379
+201715413
+201715512
+201715187
+201716946
+201716047
+201716033
+201716488
+201716091
+201715677
+201716082
+201716046
+201716978
+201715423
+201716434
+201715268
+201716394
+201716955
+201716135
+201716045
+201715568
+201716470
+201715244
+201715675
+201716989
+201716125
+201716105
+201715185
+201715383
+201715500
+201715623
+201715241
+201716089
+201716389
+201716123
+201716439
+201716055
+201715439
+201715624
+201716120
+201716113
+201715626
+201716016
+201715175
+201716398
+201716050
+201715557
+201716456
+201716080
+201716464
+201715643
+201715555
+201716457
+201716111
+201715278
+201715565
+201715637
+201716415
+201715581
+201715660
+201716008
+201715203
+201716093
+201715292
+201716071
+201715688
+201715564
+201716107
+201716388
+201716085
+201715236
+201716975
+201715324
+201715351
+201716493
+201715172
+201715370
+201715690
+201716414
+201715597
+201715684
+201716379
+201716403
+201716119
+201715544
+201715306
+201715314
+201716431
+201715524
+201716418
+201715327
+201715631
+201716432
+201716001
+201715694
+201715243
+201715708
+201715403
+201715709
+201715504
+201715649
+201715543
+201716941
+201716492
+201716462
+201715266
+201715590
+201716485
+201715364
+201715600
+201716098
+201716494
+201716422
+201716382
+201715326
+201715655
+201715360
+201715259
+201715645
+201715393
+201715518
+201716413
+201715437
+201716102
+201715263
+201716026
+201716114
+201716138
+201716461
+201715414
+201716458
+201716393
+201715195
+201715712
+201715510
+201715381
+201716381
+201715653
+201715629
+201715520
+201716127
+201715253
+201715696
+201716400
+201715359
+201715570
+201715313
+201715679
+201715642
+201715536
+201715262
+201716944
+201715586
+201716463
+201716034
+201715711
+201715561
+201716387
+201715514
+201715307
+201715238
+201715429
+201716940
+201716128
+201715222
+201715421
+201715620
+201715237
+201716440
+201716988
+201716954
+201715353
+201715638
+201715285
+201715164
+201715223
+201715680
+201716103
+201715355
+201716396
+201715622
+201715603
+201715618
+201716471
+201715202
+201715358
+201716122
+201715575
+201716392
+201715249
+201716115
+201715566
+201715322
+201715402
+201715599
+201715681
+201716109
+201716395
+201716076
+201716013
+201716118
+201716429
+201716448
+201715526
+201716953
+201715548
+201715385
+201715534
+201715523
+201715377
+201716437
+201715572
+201715406
+201716935
+201715505
+201716399
+201716484
+201715420
+201715308
+201715535
+201716391
+201716482
+201715583
+201715273
+201716408
+201715432
+201715585
+201716977
+201715530
+201715598
+201717306
+201717154
+201717192
+201717460
+201717419
+201717102
+201717197
+201716537
+201717148
+201716542
+201717480
+201717475
+201717274
+201717241
+201717162
+201716515
+201716670
+201717100
+201717243
+201716533
+201717607
+201717224
+201717273
+201716503
+201716771
+201717014
+201716612
+201716599
+201716682
+201717155
+201717436
+201717283
+201717528
+201716572
+201717570
+201717451
+201717206
+201716769
+201717293
+201716697
+201717432
+201716571
+201716887
+201717425
+201717193
+201716564
+201717455
+201716566
+201716559
+201717101
+201716552
+201717198
+201717046
+201717229
+201716685
+201717454
+201717105
+201717085
+201716574
+201717605
+201717424
+201717002
+201717487
+201717070
+201717202
+201716715
+201717583
+201717251
+201716677
+201716666
+201717239
+201717706
+201717417
+201717443
+201716877
+201716708
+201716901
+201716556
+201717005
+201716524
+201717172
+201717486
+201717441
+201717275
+201716521
+201716510
+201717279
+201716761
+201717171
+201716520
+201717588
+201717201
+201717143
+201716516
+201717213
+201717286
+201717604
+201716547
+201716549
+201717042
+201717411
+201716508
+201716609
+201717003
+201717232
+201717084
+201717053
+201717387
+201717182
+201716711
+201717404
+201716726
+201716501
+201716671
+201717074
+201717194
+201717284
+201717249
+201716753
+201716642
+201716858
+201717165
+201717127
+201716718
+201716617
+201716654
+201716885
+201717592
+201717268
+201717493
+201717295
+201716831
+201716889
+201716652
+201717571
+201716651
+201717225
+201716700
+201716636
+201716525
+201716764
+201716867
+201716576
+201717409
+201717285
+201717606
+201716673
+201717586
+201717066
+201716772
+201717231
+201717248
+201717152
+201716676
+201717175
+201717090
+201716866
+201717582
+201717543
+201716770
+201717045
+201717577
+201717542
+201717257
+201716645
+201717573
+201717574
+201717004
+201716653
+201716704
+201717336
+201717579
+201717166
+201717244
+201717578
+201716734
+201717292
+201716518
+201717576
+201717590
+201716608
+201716541
+201717464
+201717294
+201716647
+201717009
+201717169
+201716767
+201717426
+201717052
+201717399
+201717391
+201717705
+201716663
+201716702
+201717567
+201717280
+201717282
+201717393
+201716743
+201717207
+201716746
+201716657
+201716641
+201717385
+201717610
+201716716
+201717566
+201717259
+201717562
+201716854
+201716656
+201716619
+201716616
+201717183
+201717379
+201717412
+201717541
+201717230
+201717057
+201716802
+201717325
+201717159
+201716578
+201716684
+201716528
+201717077
+201716712
+201716773
+201717452
+201716788
+201717205
+201716555
+201717377
+201716531
+201716929
+201716558
+201716822
+201717043
+201717383
+201717089
+201717357
+201717072
+201717049
+201717227
+201716687
+201716534
+201717415
+201716763
+201716605
+201717071
+201717132
+201716801
+201717360
+201717369
+201717191
+201717358
+201717050
+201717065
+201717128
+201716759
+201716562
+201716699
+201717539
+201716737
+201716706
+201717196
+201716895
+201716635
+201716823
+201716686
+201717098
+201717368
+201716768
+201716810
+201716838
+201717344
+201716752
+201716827
+201716513
+201717373
+201716595
+201716583
+201717546
+201716907
+201716751
+201717599
+201716745
+201716723
+201717210
+201717548
+201716568
+201716722
+201716551
+201717500
+201717349
+201716629
+201717056
+201717030
+201717366
+201717709
+201716812
+201717073
+201717190
+201717124
+201717356
+201716791
+201716811
+201717130
+201716817
+201716816
+201716591
+201716512
+201716813
+201717271
+201717189
+201717081
+201717403
+201717355
+201716809
+201717517
+201717332
+201717522
+201716808
+201716717
+201717504
+201716919
+201716775
+201717717
+201716606
+201717200
+201717266
+201716898
+201716926
+201717450
+201716807
+201716778
+201716540
+201716688
+201717178
+201716841
+201716922
+201716594
+201717270
+201716784
+201716903
+201717258
+201716923
+201717145
+201716914
+201716840
+201717123
+201716739
+201717510
+201717125
+201716690
+201716897
+201716925
+201716891
+201717075
+201716774
+201716539
+201717405
+201716750
+201716888
+201716806
+201717093
+201717291
+201716805
+201717593
+201717122
+201717219
+201716777
+201717713
+201717515
+201716683
+201716735
+201717449
+201716830
+201717710
+201717094
+201716896
+201717129
+201717211
+201717177
+201717265
+201716506
+201717323
+201716783
+201717269
+201716873
+201717407
+201717247
+201716829
+201717221
+201716882
+201716913
+201716839
+201717079
+201717492
+201717040
+201716800
+201717118
+201717176
+201717422
+201717435
+201716776
+201716872
+201716782
+201717055
+201717316
+201716658
+201716799
+201716911
+201716749
+201717096
+201717058
+201716798
+201716917
+201717318
+201716694
+201716781
+201717711
+201716870
+201717712
+201716797
+201717312
+201717209
+201716736
+201717289
+201716795
+201717092
+201717226
+201716709
+201716796
+201717261
+201716916
+201716881
+201716930
+201717214
+201717140
+201716792
+201717103
+201716780
+201716588
+201716871
+201717139
+201716724
+201717267
+201716879
+201716931
+201717315
+201716904
+201717091
+201717585
+201716851
+201716804
+201716910
+201717484
+201717491
+201716928
+201717311
+201717048
+201717298
+201717138
+201717064
+201716625
+201717216
+201716648
+201716845
+201717104
+201716852
+201717433
+201716909
+201717313
+201716820
+201716511
+201716878
+201717408
+201716846
+201716587
+201716667
+201717220
+201716622
+201717401
+201716849
+201717506
+201716905
+201717507
+201716847
+201717303
+201717297
+201717708
+201717199
+201716632
+201716621
+201716834
+201717076
+201716857
+201717310
+201716856
+201716892
+201717097
+201716828
+201717262
+201716623
+201716707
+201717063
+201716634
+201717290
+201716850
+201717240
+201716855
+201717119
+201716633
+201717246
+201716793
+201717308
+201716713
+201717242
+201716681
+201717142
+201716613
+201717099
+201716695
+201717208
+201716532
+201716868
+201716664
+201717133
+201716714
+201717481
+201716691
+201717218
+201716600
+201716680
+201717287
+201716655
+201717598
+201717260
+201716628
+201717222
+201716631
+201717288
+201716848
+201717033
+201717181
+201717223
+201716624
+201717153
+201716766
+201716577
+201716627
+201717095
+201716620
+201716615
+201716662
+201716669
+201716589
+201717217
+201716698
+201717445
+201716675
+201716630
+201717013
+201717600
+201717032
+201716701
+201717459
+201717067
+201717106
+201717458
+201716598
+201717457
+201716674
+201717163
+201716596
+201717707
+201717456
+201716584
+201716560
+201717413
+201717141
+201717238
+201717059
+201716705
+201717704
+201717078
+201717087
+201717137
+201717466
+201717421
+201717086
+201716557
+201717083
+201717440
+201716553
+201716507
+201716603
+201717215
+201717497
+201717082
+201717444
+201716747
+201717414
+201716509
+201716570
+201717237
+201717134
+201717442
+201717236
+201717601
+201717527
+201717416
+201717503
+201717164
+201716900
+201717069
+201717254
+201717278
+201716607
+201717256
+201716514
+201717612
+201716703
+201717113
+201717235
+201716733
+201716719
+201716760
+201717609
+201716505
+201717233
+201717255
+201717187
+201716567
+201716720
+201716679
+201716732
+201716729
+201717581
+201716728
+201716725
+201716693
+201717580
+201717595
+201716502
+201716689
+201717589
+201717195
+201717018
+201716843
+201717587
+201717389
+201717596
+201717462
+201716692
+201717597
+201717024
+201717431
+201717180
+201716650
+201716579
+201717174
+201717185
+201717406
+201716661
+201716860
+201717400
+201717167
+201716678
+201716644
+201716668
+201717228
+201717390
+201717603
+201716672
+201716660
+201716659
+201717388
+201716640
+201717397
+201717173
+201717564
+201716639
+201716762
+201717396
+201717530
+201717602
+201716865
+201717544
+201716864
+201717395
+201717575
+201716862
+201717394
+201716649
+201716646
+201716863
+201717170
+201716861
+201717572
+201717565
+201717041
+201717552
+201716638
+201717299
+201716637
+201717061
+201716626
+201717398
+201716643
+201717513
+201717324
+201716731
+201717568
+201717569
+201716665
+201717563
+201716517
+201717392
+201717531
+201716908
+201717561
+201717337
+201716859
+201716853
+201717410
+201717335
+201716779
+201717559
+201717309
+201717362
+201716618
+201716837
+201717353
+201717545
+201717384
+201717380
+201717378
+201717594
+201717352
+201716869
+201717168
+201717558
+201717556
+201717351
+201717550
+201716836
+201717472
+201717538
+201717386
+201717555
+201717554
+201717485
+201717365
+201717557
+201717029
+201716821
+201717608
+201717553
+201716835
+201717186
+201717374
+201716842
+201717382
+201717560
+201717381
+201717429
+201717350
+201716833
+201716844
+201717343
+201717115
+201717372
+201716832
+201717319
+201717348
+201717376
+201716815
+201717509
+201717110
+201716915
+201717537
+201716586
+201716814
+201717375
+201716825
+201717370
+201717611
+201717345
+201717418
+201717534
+201717361
+201716803
+201717448
+201717551
+201717502
+201717329
+201716826
+201717367
+201717533
+201717371
+201717276
+201717427
+201717591
+201716602
+201717438
+201717331
+201716824
+201717359
+201717302
+201717549
+201717364
+201716818
+201717547
+201717521
+201717536
+201716758
+201717126
+201717044
+201717437
+201717338
+201717160
+201717347
+201717363
+201716924
+201716819
+201716538
+201716742
+201717346
+201717535
+201716794
+201717490
+201716789
+201717342
+201716790
+201717479
+201717341
+201717540
+201717330
+201717523
+201716785
+201717340
+201717470
+201716786
+201717339
+201717354
+201717489
+201717532
+201717519
+201717526
+201717333
+201717326
+201717402
+201717518
+201716787
+201717529
+201717508
+201717525
+201717716
+201716927
+201717520
+201717034
+201717314
+201717512
+201717320
+201717498
+201717328
+201717715
+201717511
+201717327
+201716527
+201716920
+201717501
+201716921
+201717514
+201717584
+201716561
+201716912
+201716918
+201717714
+201717524
+201717322
+201717499
+201717321
+201717516
+201716906
+201717317
+201718343
+201718938
+201718937
+201718338
+201718935
+201718341
+201718933
+201718932
+201717996
+201718336
+201718335
+201718334
+201718931
+201718332
+201718331
+201718930
+201717993
+201718328
+201717992
+201718326
+201717991
+201718323
+201718322
+201718321
+201717989
+201717988
+201718319
+201718318
+201717987
+201718316
+201717986
+201718315
+201717985
+201718926
+201717984
+201718314
+201717982
+201718313
+201717981
+201717980
+201717979
+201717978
+201718340
+201718925
+201718312
+201718311
+201717975
+201717974
+201717972
+201717971
+201717969
+201718309
+201718308
+201717968
+201717967
+201718307
+201717966
+201717965
+201717964
+201718924
+201717963
+201717962
+201717961
+201718305
+201718304
+201718303
+201717960
+201717959
+201717958
+201718300
+201718299
+201718297
+201718296
+201717957
+201718923
+201718295
+201717956
+201718294
+201717955
+201717954
+201717953
+201718293
+201717952
+201717951
+201718292
+201718291
+201717950
+201718290
+201717949
+201717948
+201718289
+201718288
+201717947
+201717946
+201718287
+201718286
+201717945
+201717944
+201718922
+201717943
+201717942
+201718285
+201718921
+201718920
+201717941
+201717940
+201717939
+201717938
+201718919
+201718918
+201717937
+201717936
+201718917
+201718916
+201718279
+201717935
+201717934
+201717933
+201717932
+201717931
+201717930
+201717928
+201717929
+201717927
+201718277
+201717925
+201718276
+201717924
+201718915
+201717923
+201718275
+201717922
+201717921
+201717920
+201717919
+201717918
+201717917
+201717916
+201718272
+201718914
+201718913
+201717915
+201717914
+201717913
+201717912
+201717911
+201718271
+201717910
+201718912
+201717909
+201717908
+201718270
+201717907
+201717906
+201717905
+201717904
+201718269
+201717903
+201718268
+201718267
+201717902
+201717901
+201717900
+201718266
+201717899
+201717898
+201717897
+201717896
+201717895
+201717894
+201718264
+201717893
+201718910
+201717892
+201717891
+201717890
+201717889
+201718262
+201717888
+201718909
+201717887
+201717886
+201718939
+201717885
+201717884
+201718244
+201717883
+201717882
+201717881
+201718243
+201717880
+201717879
+201717878
+201718242
+201717877
+201717876
+201718240
+201717875
+201717874
+201718239
+201717871
+201717870
+201718238
+201718906
+201718905
+201718237
+201718236
+201718235
+201718903
+201717867
+201718234
+201717864
+201717865
+201717862
+201717861
+201717860
+201718902
+201717858
+201717857
+201717855
+201717853
+201717852
+201718232
+201717851
+201717850
+201717849
+201717848
+201717847
+201717846
+201718229
+201717845
+201717844
+201718900
+201717843
+201717842
+201717841
+201718228
+201718227
+201717840
+201717839
+201718225
+201717836
+201717835
+201717834
+201718899
+201718898
+201717833
+201718223
+201717832
+201717831
+201718221
+201717830
+201717829
+201718220
+201718219
+201717828
+201718218
+201717827
+201717826
+201718896
+201717823
+201718217
+201718214
+201717821
+201717820
+201718213
+201717819
+201717818
+201718210
+201718211
+201717817
+201717816
+201718895
+201717815
+201717814
+201718209
+201717813
+201718208
+201718207
+201718206
+201717812
+201718894
+201717811
+201717810
+201718205
+201717809
+201718740
+201718893
+201717808
+201718203
+201718892
+201717806
+201717805
+201718202
+201718201
+201718200
+201717804
+201718198
+201717802
+201717801
+201718891
+201718197
+201718195
+201718194
+201718890
+201718193
+201718889
+201718888
+201718887
+201717797
+201718886
+201718885
+201718191
+201717794
+201718189
+201717791
+201718883
+201718188
+201718187
+201718882
+201717789
+201718880
+201717788
+201717787
+201718879
+201718878
+201717786
+201718186
+201718185
+201717785
+201717784
+201718184
+201718183
+201717783
+201717782
+201717781
+201718182
+201718181
+201717780
+201717779
+201717778
+201717777
+201718180
+201717776
+201717775
+201717774
+201717773
+201717772
+201717771
+201717770
+201717768
+201717769
+201718179
+201717767
+201717765
+201717764
+201717763
+201718877
+201717762
+201717761
+201718178
+201718177
+201718176
+201717760
+201717758
+201718174
+201717757
+201718173
+201717756
+201718875
+201718874
+201718172
+201717754
+201718170
+201718169
+201718873
+201717752
+201717751
+201717750
+201718168
+201717749
+201717747
+201718872
+201717745
+201718167
+201717744
+201717743
+201718166
+201717742
+201717741
+201717740
+201718871
+201717739
+201718870
+201718165
+201718164
+201717738
+201718869
+201717737
+201717736
+201717734
+201718163
+201717733
+201717732
+201717730
+201718162
+201717729
+201717728
+201717727
+201717726
+201718160
+201718868
+201717725
+201718159
+201717724
+201717723
+201717722
+201718158
+201717721
+201717720
+201717719
+201718155
+201717718
+201717703
+201717702
+201718153
+201718152
+201718151
+201718150
+201717701
+201718149
+201718865
+201718148
+201717700
+201718864
+201717699
+201717698
+201717697
+201718147
+201717696
+201717695
+201718146
+201717694
+201717693
+201717692
+201717691
+201718145
+201718144
+201718143
+201717688
+201717687
+201718142
+201717686
+201717685
+201718140
+201718139
+201717684
+201718138
+201718137
+201717683
+201718136
+201717682
+201717681
+201718134
+201717679
+201718133
+201718132
+201717677
+201717676
+201717675
+201718131
+201717674
+201717673
+201717672
+201717671
+201717670
+201717669
+201717668
+201718129
+201717667
+201718860
+201718128
+201718127
+201717666
+201718859
+201717665
+201717663
+201718125
+201717662
+201718858
+201718124
+201717661
+201718123
+201717660
+201718857
+201717659
+201717658
+201718122
+201717657
+201718121
+201717656
+201717655
+201718120
+201717654
+201717653
+201717652
+201717651
+201717650
+201717649
+201717648
+201717647
+201718855
+201717646
+201717645
+201717643
+201717642
+201717641
+201717640
+201718117
+201718115
+201718114
+201717639
+201718853
+201717637
+201718113
+201717636
+201717634
+201717633
+201717632
+201717631
+201718112
+201718111
+201717630
+201717629
+201718852
+201717628
+201718110
+201717627
+201717626
+201718109
+201717625
+201718108
+201717624
+201717623
+201718107
+201717622
+201717621
+201718105
+201718104
+201717619
+201718101
+201717618
+201718100
+201718098
+201717617
+201718097
+201718096
+201718851
+201717614
+201717613
+201718499
+201718095
+201718094
+201718093
+201718092
+201718498
+201718497
+201718091
+201718496
+201718090
+201718089
+201718495
+201718850
+201718088
+201718494
+201718087
+201718493
+201718492
+201718086
+201718491
+201718490
+201718489
+201718848
+201718488
+201718084
+201718083
+201718486
+201718081
+201718484
+201718483
+201718482
+201718846
+201718080
+201718481
+201718079
+201718480
+201718844
+201718479
+201718478
+201718078
+201718077
+201718843
+201718477
+201718476
+201718475
+201718474
+201718473
+201718472
+201718076
+201718471
+201718075
+201718470
+201718469
+201718841
+201718074
+201718073
+201718468
+201718467
+201718072
+201718466
+201718465
+201718840
+201718839
+201718463
+201718071
+201718462
+201718070
+201718069
+201718461
+201718460
+201718068
+201718459
+201718458
+201718457
+201718456
+201718455
+201718454
+201718838
+201718453
+201718452
+201718067
+201718451
+201718450
+201718065
+201718449
+201718448
+201718837
+201718447
+201718064
+201718446
+201718063
+201718836
+201718062
+201718445
+201718444
+201718835
+201718061
+201718834
+201718060
+201718833
+201718443
+201718059
+201718442
+201718441
+201718832
+201718058
+201718057
+201718056
+201718440
+201718054
+201718053
+201718439
+201718831
+201718438
+201718437
+201718436
+201718052
+201718830
+201718051
+201718050
+201718435
+201718434
+201718433
+201718048
+201718828
+201718431
+201718047
+201718046
+201718430
+201718045
+201718827
+201718044
+201718429
+201718826
+201718042
+201718041
+201718040
+201718039
+201718825
+201718038
+201718037
+201718036
+201718428
+201718427
+201718426
+201718824
+201718425
+201718033
+201718424
+201718423
+201718823
+201718032
+201718422
+201718031
+201718421
+201718030
+201718420
+201718029
+201718419
+201718417
+201718028
+201718027
+201718819
+201718415
+201718025
+201718414
+201718818
+201718413
+201718024
+201718412
+201718022
+201718817
+201718021
+201718020
+201718411
+201718816
+201718410
+201718409
+201718018
+201718407
+201718406
+201718814
+201718405
+201718813
+201718812
+201718811
+201718404
+201718810
+201718016
+201718403
+201718015
+201718014
+201718809
+201718808
+201718402
+201718401
+201718400
+201718013
+201718399
+201718807
+201718398
+201718397
+201718396
+201718011
+201718395
+201718806
+201718010
+201718804
+201718392
+201718008
+201718391
+201718803
+201718802
+201718390
+201718801
+201718389
+201718388
+201718800
+201718799
+201718007
+201718387
+201718004
+201718798
+201718797
+201718003
+201718002
+201718385
+201718001
+201718000
+201718384
+201718250
+201718248
+201718249
+201718383
+201718795
+201718999
+201718794
+201718382
+201718793
+201718997
+201718792
+201718996
+201718995
+201718994
+201718791
+201718993
+201718992
+201718991
+201718788
+201718381
+201718989
+201718988
+201718787
+201718786
+201718380
+201718986
+201718985
+201718984
+201718785
+201718379
+201718983
+201718784
+201718981
+201718980
+201718378
+201718783
+201718979
+201718782
+201718377
+201718376
+201718978
+201718375
+201718976
+201718780
+201718739
+201718374
+201718975
+201718778
+201718777
+201718373
+201718372
+201718974
+201718973
+201718971
+201718776
+201718775
+201718774
+201718773
+201718772
+201718969
+201718771
+201718370
+201718769
+201718967
+201718369
+201718368
+201718768
+201718367
+201718966
+201718366
+201718965
+201718767
+201718766
+201718765
+201718764
+201718964
+201718365
+201718963
+201718763
+201718364
+201718363
+201718762
+201718761
+201718962
+201718362
+201718961
+201718760
+201718759
+201718361
+201718758
+201718360
+201718960
+201718757
+201718756
+201718359
+201718755
+201718754
+201718959
+201718753
+201718752
+201718958
+201718957
+201718358
+201718956
+201718751
+201718750
+201718749
+201718955
+201718954
+201718357
+201718356
+201718355
+201718953
+201718354
+201718952
+201718748
+201718951
+201718747
+201718353
+201718352
+201718746
+201718351
+201718950
+201718350
+201718949
+201718948
+201718947
+201718744
+201718743
+201718349
+201718348
+201718946
+201718347
+201718346
+201718945
+201718944
+201718943
+201718942
+201718345
+201718742
+201718941
+201718940
+201718741
+201718344
+201719532
+201719534
+201719530
+201719529
+201718718
+201719221
+201719220
+201719218
+201719217
+201719215
+201719231
+201719528
+201719214
+201719213
+201719773
+201719526
+201719211
+201719210
+201719525
+201719209
+201719208
+201719206
+201718735
+201719204
+201719203
+201719202
+201719229
+201719201
+201719200
+201719227
+201719226
+201719198
+201719225
+201718736
+201719523
+201718734
+201718732
+201719197
+201719196
+201719195
+201719194
+201719522
+201719193
+201719192
+201718733
+201719521
+201718731
+201719191
+201718730
+201719190
+201719189
+201719188
+201718729
+201718728
+201719185
+201719184
+201719183
+201718727
+201718726
+201719520
+201719367
+201718723
+201718722
+201719366
+201718721
+201719519
+201719518
+201719365
+201719364
+201718720
+201719363
+201719362
+201718719
+201719361
+201719360
+201719517
+201719359
+201718717
+201718716
+201719516
+201719515
+201718715
+201718714
+201719355
+201719354
+201719514
+201718713
+201718712
+201719353
+201718711
+201719351
+201719349
+201718707
+201718706
+201719348
+201719347
+201719346
+201718704
+201718703
+201718702
+201718701
+201719344
+201718700
+201718699
+201718698
+201719342
+201719512
+201718696
+201718695
+201718694
+201719341
+201718693
+201719511
+201719339
+201719338
+201719510
+201719509
+201719336
+201718691
+201719508
+201718690
+201719335
+201719334
+201719507
+201719506
+201719505
+201719333
+201718689
+201718688
+201718687
+201719331
+201719330
+201718686
+201719504
+201718685
+201719329
+201718684
+201719503
+201719502
+201719328
+201718683
+201719327
+201718682
+201718681
+201719501
+201718680
+201719772
+201719326
+201718679
+201719325
+201719713
+201718678
+201718677
+201719324
+201719323
+201718676
+201719321
+201719711
+201718674
+201719319
+201719318
+201719317
+201718671
+201719710
+201719315
+201719709
+201718670
+201718669
+201719314
+201718668
+201719312
+201719310
+201718666
+201719708
+201718665
+201719707
+201719309
+201718664
+201719308
+201719306
+201719706
+201719305
+201718663
+201718662
+201718661
+201718660
+201719303
+201719302
+201719301
+201718659
+201719300
+201719704
+201719703
+201718658
+201719702
+201718657
+201719297
+201719701
+201719700
+201718656
+201719295
+201719294
+201719292
+201718655
+201719289
+201719290
+201718654
+201719287
+201718653
+201719286
+201719285
+201719283
+201719282
+201718652
+201718651
+201718650
+201719279
+201718649
+201719278
+201719277
+201719275
+201719699
+201719274
+201718646
+201718645
+201719272
+201718644
+201718643
+201718641
+201719271
+201718640
+201719698
+201719270
+201718639
+201719269
+201719268
+201718637
+201719697
+201719267
+201718636
+201719266
+201718635
+201719696
+201719695
+201718634
+201718633
+201719263
+201719694
+201718632
+201718631
+201719261
+201719259
+201719258
+201719257
+201718630
+201719256
+201719693
+201719255
+201719254
+201719253
+201719252
+201718629
+201718628
+201718627
+201718626
+201719251
+201718625
+201718624
+201719250
+201718623
+201718622
+201718621
+201718620
+201718619
+201719248
+201718618
+201719247
+201718617
+201718616
+201719246
+201718615
+201718614
+201718613
+201719245
+201718612
+201718611
+201719244
+201718610
+201718609
+201718608
+201718607
+201719243
+201719242
+201719241
+201718606
+201718605
+201719499
+201718604
+201718603
+201718602
+201718601
+201718600
+201719498
+201718599
+201718598
+201719497
+201719496
+201718596
+201719691
+201719690
+201718595
+201718594
+201719494
+201719493
+201718592
+201718591
+201719492
+201718590
+201719491
+201719490
+201719489
+201719488
+201718589
+201718588
+201718587
+201718586
+201719486
+201718584
+201718583
+201718582
+201718581
+201718580
+201718579
+201719484
+201718578
+201718577
+201718576
+201718575
+201718574
+201718573
+201718572
+201718571
+201719482
+201718570
+201718569
+201718568
+201719689
+201719688
+201718567
+201718566
+201718565
+201719481
+201718564
+201719480
+201718563
+201718562
+201719479
+201718560
+201718559
+201719478
+201718558
+201718557
+201718556
+201718554
+201718553
+201718552
+201719477
+201718550
+201718549
+201718548
+201718547
+201719475
+201718546
+201718545
+201718544
+201718543
+201718541
+201719474
+201718540
+201718539
+201719473
+201718538
+201718537
+201719472
+201719471
+201718536
+201718535
+201718534
+201718533
+201718532
+201719470
+201719469
+201718531
+201719467
+201718530
+201718529
+201718528
+201718527
+201718526
+201719465
+201719464
+201718525
+201718524
+201718523
+201718522
+201719463
+201719462
+201718521
+201718520
+201718519
+201718518
+201718517
+201719461
+201718516
+201718515
+201718514
+201718513
+201719460
+201718510
+201718509
+201718508
+201718507
+201718506
+201719459
+201718505
+201718503
+201718504
+201719458
+201718502
+201719457
+201718501
+201719456
+201718500
+201719685
+201719091
+201719455
+201719090
+201719089
+201719088
+201719453
+201719087
+201719085
+201719084
+201719083
+201719082
+201719081
+201719452
+201719080
+201719451
+201719683
+201719079
+201719078
+201719077
+201719449
+201719076
+201719075
+201719074
+201719073
+201719072
+201719071
+201719682
+201719070
+201719069
+201719068
+201719067
+201719681
+201719445
+201719444
+201719443
+201719442
+201719066
+201719065
+201719064
+201719063
+201719441
+201719440
+201719062
+201719439
+201719061
+201719438
+201719437
+201719436
+201719435
+201719060
+201719059
+201719058
+201719056
+201719679
+201719055
+201719434
+201719054
+201719432
+201719053
+201719431
+201719051
+201719049
+201719048
+201719047
+201719046
+201719045
+201719044
+201719043
+201719430
+201719042
+201719041
+201719678
+201719040
+201719677
+201719038
+201719428
+201719037
+201719427
+201719676
+201719036
+201719035
+201719034
+201719426
+201719424
+201719033
+201719423
+201719422
+201719421
+201719032
+201719420
+201719419
+201719675
+201719418
+201719417
+201719031
+201719416
+201719415
+201719030
+201719029
+201719028
+201719674
+201719673
+201719672
+201719027
+201719412
+201719671
+201719411
+201719026
+201719025
+201719024
+201719023
+201719410
+201719022
+201719670
+201719409
+201719021
+201719408
+201719407
+201719020
+201719019
+201719405
+201719404
+201719669
+201719403
+201719018
+201719402
+201719016
+201719015
+201719014
+201719668
+201719667
+201719400
+201719399
+201719013
+201719012
+201719398
+201719011
+201719010
+201719666
+201719397
+201719008
+201719396
+201719007
+201719395
+201719394
+201719006
+201719393
+201719005
+201719392
+201719665
+201719391
+201719004
+201719664
+201719389
+201719388
+201719002
+201719001
+201719000
+201719387
+201719178
+201719386
+201719662
+201719385
+201719176
+201719174
+201719661
+201719384
+201719383
+201719172
+201719171
+201719170
+201719382
+201719169
+201719380
+201719379
+201719378
+201719165
+201719164
+201719658
+201719376
+201719161
+201719657
+201719159
+201719158
+201719157
+201719654
+201719374
+201719155
+201719373
+201719372
+201719370
+201719154
+201719153
+201719368
+201719152
+201719592
+201719151
+201719591
+201719150
+201719590
+201719588
+201719586
+201719149
+201719584
+201719148
+201719582
+201719147
+201719146
+201719145
+201719144
+201719581
+201719143
+201719649
+201719142
+201719648
+201719579
+201719141
+201719647
+201719646
+201719139
+201719645
+201719644
+201719138
+201719643
+201719642
+201719137
+201719575
+201719641
+201719136
+201719640
+201719639
+201719638
+201719133
+201719637
+201719574
+201719636
+201719132
+201719131
+201719573
+201719635
+201719634
+201719130
+201719633
+201719632
+201719572
+201719571
+201719631
+201719129
+201719128
+201719127
+201719630
+201719126
+201719125
+201719124
+201719629
+201719568
+201719122
+201719628
+201719121
+201719627
+201719565
+201719120
+201719564
+201719119
+201719118
+201719117
+201719626
+201719625
+201719116
+201719115
+201719624
+201719623
+201719622
+201719114
+201719621
+201719562
+201719620
+201719110
+201719619
+201719618
+201719109
+201719617
+201719616
+201719107
+201719615
+201719558
+201719556
+201719555
+201719609
+201719554
+201719105
+201719608
+201719607
+201719552
+201719104
+201719551
+201719103
+201719102
+201719101
+201719550
+201719606
+201719100
+201719099
+201719605
+201719604
+201719098
+201719549
+201719603
+201719097
+201719096
+201719602
+201719548
+201719601
+201719600
+201719599
+201719095
+201719546
+201719094
+201719598
+201719545
+201719597
+201719544
+201719093
+201719239
+201719238
+201719595
+201719542
+201719237
+201719593
+201719778
+201719777
+201719236
+201719540
+201719539
+201719235
+201719538
+201719537
+201719536
+201719234
+201719233
+201719775
+201719232
+201719872
+201720680
+201720679
+201720677
+201720676
+201720191
+201720190
+201720189
+201720675
+201719768
+201720517
+201720516
+201720187
+201720185
+201720183
+201720182
+201720181
+201720514
+201720673
+201720180
+201720179
+201720177
+201720513
+201720176
+201720175
+201720174
+201720512
+201720171
+201720511
+201720510
+201720170
+201720509
+201720168
+201720167
+201720672
+201720166
+201720165
+201720164
+201720163
+201720671
+201720161
+201720160
+201720159
+201720157
+201720158
+201720507
+201720156
+201720155
+201720506
+201720153
+201720505
+201720152
+201720503
+201720502
+201720150
+201720500
+201720149
+201720148
+201719767
+201720670
+201720147
+201720145
+201720144
+201719766
+201720669
+201719765
+201720143
+201719993
+201720141
+201720140
+201720139
+201720524
+201720523
+201720667
+201720666
+201720137
+201720522
+201720136
+201719760
+201720665
+201719759
+201720134
+201719758
+201719757
+201720132
+201720130
+201720129
+201720663
+201720128
+201719755
+201719754
+201720127
+201719753
+201720126
+201720125
+201720124
+201720122
+201720121
+201720120
+201720520
+201720662
+201719750
+201720661
+201720119
+201719748
+201720118
+201719747
+201719746
+201720660
+201720659
+201719745
+201720117
+201720116
+201720115
+201720658
+201720114
+201720113
+201720112
+201720111
+201720110
+201720109
+201719744
+201720108
+201720107
+201720105
+201719743
+201719742
+201719741
+201720104
+201720103
+201720102
+201720101
+201720100
+201720099
+201720657
+201720098
+201719740
+201720097
+201719739
+201720096
+201720095
+201720094
+201720093
+201719738
+201720656
+201720092
+201720655
+201720090
+201719736
+201719735
+201719734
+201719733
+201719732
+201720654
+201719731
+201720653
+201719730
+201720089
+201720652
+201720087
+201720651
+201720650
+201719729
+201720649
+201719728
+201720648
+201719727
+201720647
+201720086
+201719726
+201720084
+201720083
+201720082
+201720078
+201720646
+201719724
+201720077
+201720327
+201720326
+201720325
+201720323
+201720322
+201720321
+201720645
+201720320
+201719722
+201720318
+201720644
+201720643
+201720642
+201719721
+201720640
+201720639
+201720317
+201720638
+201720316
+201720315
+201719715
+201719714
+201720313
+201720636
+201720312
+201720635
+201719782
+201720311
+201720634
+201720633
+201719781
+201720310
+201720308
+201719780
+201720632
+201720306
+201720631
+201720305
+201720304
+201720303
+201719779
+201720302
+201719771
+201719770
+201719826
+201720630
+201720301
+201720300
+201719825
+201720629
+201720299
+201719824
+201719823
+201720298
+201720297
+201720628
+201720296
+201720295
+201719822
+201720294
+201720293
+201720292
+201719821
+201720626
+201719820
+201720291
+201720290
+201719819
+201719818
+201719817
+201720625
+201719816
+201720288
+201719815
+201719814
+201720287
+201720286
+201720285
+201720284
+201719813
+201720283
+201719812
+201719811
+201720624
+201720282
+201719810
+201719809
+201719808
+201720281
+201719807
+201720622
+201719806
+201720280
+201720621
+201720620
+201719805
+201719804
+201720279
+201720278
+201720277
+201720618
+201720276
+201720617
+201719801
+201720274
+201720616
+201719800
+201720273
+201720272
+201719799
+201720270
+201719798
+201720615
+201719797
+201720269
+201720268
+201720613
+201720267
+201719796
+201720266
+201719795
+201719794
+201720264
+201719793
+201720263
+201720261
+201719792
+201720260
+201719791
+201720259
+201719790
+201720258
+201719789
+201719788
+201719787
+201719786
+201719785
+201720257
+201720256
+201719784
+201720255
+201719828
+201719827
+201720254
+201720253
+201719876
+201719875
+201720252
+201719874
+201719873
+201720519
+201719871
+201720251
+201720250
+201720249
+201720248
+201719870
+201720246
+201720245
+201720612
+201719869
+201720244
+201719868
+201719867
+201719866
+201720242
+201720241
+201719865
+201719864
+201719863
+201720240
+201720611
+201720238
+201719861
+201720237
+201719860
+201720610
+201719859
+201720236
+201720235
+201719857
+201719856
+201719855
+201719854
+201719853
+201719852
+201720233
+201720232
+201720231
+201720230
+201719851
+201720609
+201719848
+201720229
+201719847
+201720228
+201719846
+201719845
+201719844
+201719843
+201720227
+201719842
+201719841
+201720608
+201719840
+201720223
+201720607
+201720222
+201720221
+201720218
+201720217
+201719835
+201720215
+201719834
+201720214
+201719833
+201719832
+201720212
+201719830
+201720211
+201719829
+201720210
+201720605
+201719881
+201720208
+201719880
+201719879
+201719878
+201720207
+201719877
+201719926
+201719925
+201720206
+201719924
+201720205
+201720204
+201719923
+201719922
+201720604
+201719921
+201719920
+201719919
+201719918
+201719917
+201719916
+201720202
+201720201
+201719915
+201719914
+201720200
+201719913
+201719912
+201719911
+201720603
+201720198
+201720601
+201720197
+201719909
+201720195
+201719908
+201719907
+201719905
+201720600
+201719904
+201720194
+201720422
+201720421
+201719903
+201720420
+201720419
+201720418
+201720417
+201719901
+201719900
+201719899
+201719898
+201720416
+201719897
+201720415
+201719896
+201720599
+201720598
+201719895
+201719894
+201720414
+201719893
+201719892
+201719891
+201720596
+201719890
+201720413
+201719888
+201719887
+201720412
+201719886
+201719885
+201720411
+201720410
+201719884
+201719883
+201719976
+201720595
+201720409
+201719975
+201720408
+201720407
+201719974
+201720406
+201720405
+201719973
+201719972
+201720404
+201719971
+201719970
+201720403
+201720402
+201719969
+201720401
+201720400
+201719967
+201720399
+201719966
+201719965
+201720397
+201720396
+201720395
+201719963
+201719962
+201720594
+201720593
+201720393
+201720592
+201719961
+201720392
+201720391
+201720390
+201720591
+201720590
+201720389
+201720388
+201720387
+201720385
+201720383
+201719960
+201719959
+201719957
+201720381
+201720380
+201719956
+201720379
+201720378
+201720589
+201719955
+201719954
+201720377
+201720376
+201720587
+201720375
+201719953
+201720374
+201719952
+201720586
+201719951
+201719950
+201719949
+201720585
+201720373
+201719948
+201720372
+201720371
+201720370
+201720369
+201720368
+201720367
+201719947
+201720366
+201719946
+201720365
+201720364
+201719945
+201719944
+201720363
+201720362
+201720361
+201719943
+201720360
+201719942
+201720358
+201720357
+201720356
+201719941
+201719940
+201719939
+201719938
+201720354
+201719937
+201720351
+201720350
+201719935
+201720349
+201719933
+201720583
+201720347
+201720346
+201720345
+201720582
+201719932
+201720342
+201719931
+201719930
+201719929
+201719928
+201720338
+201719981
+201720581
+201719980
+201720335
+201720334
+201719978
+201720333
+201720332
+201720580
+201720579
+201720331
+201720578
+201720330
+201720577
+201720576
+201720575
+201720574
+201719983
+201719982
+201720498
+201720497
+201720573
+201720496
+201720025
+201720024
+201720572
+201720494
+201720023
+201720022
+201720492
+201720021
+201720020
+201720018
+201720489
+201720487
+201720015
+201720013
+201720484
+201720012
+201720011
+201720010
+201720009
+201720571
+201720008
+201720007
+201720006
+201720570
+201720005
+201720003
+201720483
+201720482
+201720481
+201720001
+201720569
+201720568
+201720567
+201720566
+201720480
+201719999
+201720479
+201719998
+201720565
+201720564
+201720478
+201719997
+201719996
+201720477
+201720563
+201720476
+201720562
+201719994
+201720474
+201720473
+201720518
+201720561
+201719992
+201720471
+201720559
+201720470
+201719991
+201719990
+201720469
+201720558
+201720468
+201720467
+201720466
+201719988
+201720465
+201719987
+201719986
+201719985
+201720556
+201719984
+201720028
+201720027
+201720076
+201720464
+201720074
+201720071
+201720555
+201720070
+201720463
+201720554
+201720553
+201720069
+201720068
+201720067
+201720066
+201720065
+201720461
+201720064
+201720460
+201720551
+201720459
+201720457
+201720062
+201720456
+201720061
+201720455
+201720550
+201720549
+201720454
+201720452
+201720060
+201720451
+201720450
+201720548
+201720448
+201720547
+201720059
+201720546
+201720058
+201720447
+201720057
+201720545
+201720544
+201720543
+201720056
+201720446
+201720055
+201720445
+201720054
+201720053
+201720542
+201720444
+201720541
+201720443
+201720051
+201720049
+201720540
+201720539
+201720538
+201720537
+201720536
+201720047
+201720046
+201720045
+201720440
+201720535
+201720534
+201720044
+201720043
+201720533
+201720042
+201720439
+201720438
+201720437
+201720681
+201720040
+201720436
+201720039
+201720038
+201720435
+201720037
+201720036
+201720532
+201720531
+201720434
+201720433
+201720035
+201720530
+201720432
+201720431
+201720529
+201720034
+201720430
+201720429
+201720033
+201720032
+201720428
+201720031
+201720426
+201720528
+201720527
+201720030
+201720029
+201720425
+201720423
+201721706
+201721918
+201720911
+201721915
+201720910
+201721705
+201721704
+201721703
+201721914
+201721702
+201721913
+201721912
+201720909
+201721911
+201721701
+201721700
+201721909
+201721910
+201720908
+201721699
+201721908
+201721907
+201721906
+201721905
+201720907
+201721698
+201721697
+201721696
+201721904
+201720906
+201721695
+201721903
+201721694
+201721902
+201721901
+201721900
+201720903
+201721899
+201720902
+201720901
+201721693
+201720900
+201721897
+201720899
+201721896
+201720898
+201721895
+201721894
+201720897
+201721691
+201721690
+201721893
+201720895
+201720894
+201721892
+201720893
+201721890
+201721889
+201721689
+201721056
+201721888
+201721688
+201721055
+201721886
+201721885
+201721884
+201721054
+201721882
+201721881
+201721053
+201721052
+201721051
+201721879
+201721878
+201721050
+201721876
+201721875
+201721049
+201721048
+201721047
+201721874
+201721872
+201721686
+201721045
+201721870
+201721871
+201721869
+201721868
+201721867
+201721685
+201721044
+201721043
+201721042
+201721864
+201721863
+201721041
+201721684
+201721862
+201721861
+201721683
+201721860
+201721040
+201721039
+201721038
+201721682
+201721037
+201721859
+201721681
+201722999
+201721036
+201721035
+201721857
+201721679
+201721678
+201721856
+201721034
+201721033
+201721032
+201721855
+201721854
+201721031
+201721030
+201721853
+201721677
+201721852
+201721676
+201721029
+201721028
+201721027
+201721850
+201721849
+201721026
+201721675
+201721025
+201721024
+201721674
+201721845
+201721023
+201721844
+201721022
+201721842
+201721673
+201721021
+201721672
+201721840
+201721019
+201721839
+201721838
+201721018
+201721999
+201721997
+201721995
+201721994
+201721671
+201721017
+201721992
+201721016
+201721991
+201721015
+201721990
+201721989
+201721670
+201721988
+201721987
+201721985
+201721013
+201721012
+201721984
+201721011
+201721669
+201721668
+201721667
+201721010
+201721983
+201721982
+201721666
+201721009
+201721008
+201721980
+201721007
+201721979
+201721006
+201721978
+201721662
+201721005
+201721004
+201721003
+201721977
+201721002
+201721976
+201721001
+201721000
+201721974
+201721973
+201720999
+201721661
+201721972
+201720997
+201721971
+201721969
+201721660
+201721659
+201721968
+201721658
+201721967
+201721657
+201721656
+201721965
+201721964
+201720995
+201721963
+201721655
+201721962
+201721961
+201720994
+201721960
+201721654
+201721653
+201720993
+201720992
+201721958
+201721956
+201721955
+201721954
+201721145
+201721953
+201721952
+201720989
+201720988
+201720987
+201721950
+201720986
+201721652
+201720985
+201720984
+201721949
+201721948
+201720983
+201720982
+201720981
+201720980
+201720979
+201721651
+201720978
+201721947
+201721946
+201720977
+201720976
+201720975
+201720974
+201720973
+201721650
+201720972
+201721649
+201721944
+201720971
+201721648
+201721647
+201720970
+201721943
+201721646
+201720969
+201721645
+201721942
+201721644
+201720968
+201720967
+201720966
+201720965
+201721940
+201721939
+201720964
+201720963
+201721144
+201721143
+201721142
+201720962
+201721643
+201721140
+201721138
+201720960
+201720959
+201721642
+201720958
+201721137
+201720957
+201721136
+201721135
+201720956
+201721640
+201721133
+201720955
+201720954
+201721639
+201720952
+201721132
+201720951
+201720949
+201721131
+201720948
+201721130
+201721129
+201721128
+201720947
+201721127
+201721637
+201720946
+201720945
+201720944
+201720943
+201721636
+201721125
+201721124
+201721123
+201720940
+201721635
+201720939
+201721122
+201721121
+201720938
+201721120
+201721634
+201720937
+201721633
+201720936
+201721119
+201720934
+201720933
+201720932
+201720931
+201721117
+201721632
+201720930
+201721116
+201720928
+201720929
+201721631
+201720927
+201721115
+201721630
+201720926
+201721114
+201721113
+201720924
+201721111
+201720923
+201721110
+201720922
+201721109
+201720921
+201720920
+201721627
+201720919
+201721108
+201720917
+201720916
+201720915
+201720914
+201720913
+201720892
+201721106
+201720891
+201720890
+201721626
+201720889
+201720888
+201720887
+201720886
+201720885
+201721103
+201720884
+201721625
+201721102
+201720883
+201720882
+201720881
+201721101
+201721624
+201721100
+201721099
+201721098
+201721096
+201720878
+201721623
+201721093
+201720877
+201720876
+201721621
+201721092
+201721620
+201721619
+201721091
+201720872
+201720871
+201720870
+201721090
+201721618
+201721089
+201721088
+201721087
+201720867
+201721086
+201721085
+201721084
+201721083
+201721082
+201721081
+201720866
+201720865
+201721080
+201720864
+201721079
+201721078
+201721617
+201720863
+201720862
+201721616
+201721076
+201721075
+201721074
+201721073
+201721072
+201720859
+201720858
+201721071
+201721070
+201720856
+201720855
+201721068
+201720854
+201720853
+201720852
+201720850
+201720849
+201721614
+201721613
+201720848
+201721612
+201720847
+201721067
+201721066
+201721611
+201720845
+201720846
+201720844
+201721609
+201721065
+201720842
+201721608
+201721064
+201720840
+201721063
+201720839
+201721607
+201720838
+201721062
+201721061
+201721058
+201721606
+201721216
+201720837
+201721605
+201720836
+201721215
+201721604
+201720835
+201720834
+201721603
+201721602
+201721601
+201720833
+201721600
+201721214
+201720832
+201721213
+201721599
+201721211
+201720831
+201720830
+201720829
+201721598
+201721209
+201721595
+201721594
+201721208
+201721206
+201721593
+201721592
+201720827
+201721591
+201721590
+201721589
+201721588
+201721201
+201720826
+201721587
+201721586
+201720825
+201721200
+201721198
+201721585
+201721584
+201721583
+201721582
+201721581
+201720824
+201720823
+201721196
+201720822
+201721195
+201720820
+201720819
+201721580
+201721192
+201721191
+201720817
+201721188
+201720816
+201720815
+201721186
+201721185
+201721578
+201721577
+201721576
+201720813
+201721183
+201720812
+201720811
+201721575
+201721181
+201720810
+201721180
+201721574
+201721573
+201720808
+201721177
+201721572
+201720807
+201721175
+201720806
+201720805
+201720804
+201721571
+201720803
+201721570
+201721174
+201720802
+201721173
+201721172
+201720801
+201721171
+201721170
+201721169
+201721168
+201721568
+201720798
+201721165
+201720797
+201721162
+201720795
+201721161
+201720794
+201721567
+201721157
+201720793
+201721155
+201721564
+201720792
+201720789
+201721822
+201721821
+201721820
+201721562
+201721561
+201721560
+201721819
+201720786
+201721817
+201721816
+201721559
+201721815
+201720782
+201721557
+201721814
+201720781
+201721813
+201721810
+201721808
+201720777
+201721804
+201721554
+201721553
+201721552
+201721800
+201721799
+201720768
+201721550
+201721549
+201720765
+201721795
+201721548
+201721546
+201721545
+201720764
+201720763
+201721543
+201721542
+201721787
+201721541
+201721783
+201721539
+201721782
+201721781
+201720756
+201721538
+201720755
+201721779
+201720754
+201720753
+201721536
+201720752
+201720751
+201721776
+201721773
+201720748
+201720747
+201721535
+201720746
+201721534
+201721533
+201721532
+201721771
+201721531
+201721530
+201721529
+201721770
+201721528
+201721764
+201721527
+201721762
+201720745
+201720743
+201720742
+201721759
+201721756
+201720739
+201721526
+201721525
+201721524
+201721523
+201720737
+201721753
+201720736
+201721522
+201720735
+201720734
+201721521
+201721750
+201721749
+201720733
+201720732
+201720731
+201720730
+201721520
+201720729
+201720726
+201721518
+201721517
+201720724
+201720723
+201721747
+201721515
+201720722
+201720721
+201721514
+201720719
+201721513
+201721744
+201721742
+201721741
+201720718
+201720717
+201720716
+201721512
+201720715
+201721511
+201720714
+201721510
+201721740
+201721739
+201721509
+201720713
+201721508
+201721738
+201720712
+201721737
+201721736
+201721735
+201721734
+201720711
+201721732
+201720710
+201720709
+201721731
+201721507
+201720708
+201721506
+201720707
+201721505
+201721504
+201721728
+201720706
+201720705
+201721727
+201721726
+201720704
+201720703
+201720702
+201721725
+201721724
+201721503
+201721502
+201721501
+201721500
+201721723
+201720701
+201721722
+201721720
+201720700
+201720699
+201721837
+201721719
+201721718
+201721717
+201721835
+201720698
+201721715
+201721714
+201720696
+201721834
+201720695
+201721833
+201721712
+201721711
+201720694
+201721832
+201721831
+201721709
+201721708
+201720692
+201721830
+201720691
+201721938
+201721937
+201721936
+201720690
+201720689
+201720688
+201721935
+201721934
+201721829
+201720687
+201720686
+201721931
+201721929
+201721927
+201721926
+201720685
+201721827
+201721826
+201720684
+201720683
+201721923
+201721922
+201721921
+201721920
+201721484
+201722735
+201722596
+201722578
+201722800
+201722942
+201722827
+201721427
+201722540
+201722997
+201722547
+201722996
+201722595
+201722511
+201722993
+201722941
+201722919
+201722508
+201722573
+201722523
+201722536
+201721435
+201722975
+201721475
+201721485
+201721398
+201722565
+201722718
+201722974
+201721448
+201722516
+201721493
+201722728
+201722719
+201722510
+201721223
+201722819
+201722933
+201722948
+201721467
+201721388
+201721356
+201722932
+201721426
+201722786
+201721374
+201722799
+201722808
+201722905
+201721414
+201722949
+201722904
+201722502
+201722796
+201721355
+201722795
+201722515
+201722931
+201722514
+201722930
+201721437
+201722716
+201722794
+201721425
+201722501
+201722738
+201722929
+201722798
+201721411
+201722715
+201722912
+201722820
+201722785
+201721378
+201721391
+201722526
+201722517
+201722611
+201721416
+201722727
+201722913
+201721362
+201722906
+201722810
+201722723
+201722903
+201721354
+201722908
+201722936
+201721443
+201722707
+201721364
+201721151
+201722911
+201722706
+201722708
+201721449
+201721492
+201722821
+201721360
+201722991
+201722910
+201722705
+201722721
+201721350
+201721359
+201721401
+201722603
+201721346
+201722909
+201722791
+201721325
+201722726
+201722922
+201722722
+201721324
+201721345
+201722730
+201722607
+201722896
+201721348
+201721357
+201722704
+201721420
+201721344
+201722897
+201721343
+201721322
+201722895
+201721341
+201722822
+201722918
+201722702
+201722703
+201722604
+201721323
+201721331
+201722940
+201722674
+201722689
+201722688
+201722701
+201722792
+201721299
+201722894
+201722700
+201722981
+201722574
+201722699
+201721342
+201721340
+201722697
+201722698
+201721413
+201721471
+201722883
+201722731
+201722690
+201721338
+201722696
+201722665
+201722725
+201721488
+201722893
+201722887
+201721339
+201722892
+201722984
+201722891
+201722695
+201722694
+201721433
+201721330
+201721383
+201722890
+201722866
+201721373
+201722686
+201721318
+201722693
+201721375
+201721328
+201721337
+201722664
+201722978
+201722923
+201721153
+201722687
+201721394
+201722692
+201722886
+201721336
+201722685
+201721327
+201722889
+201721352
+201722684
+201721384
+201722683
+201722542
+201722921
+201721314
+201722713
+201722691
+201721334
+201721296
+201722885
+201722882
+201722865
+201721335
+201722682
+201722864
+201721295
+201721333
+201722888
+201721332
+201721329
+201722680
+201721434
+201721430
+201722884
+201722954
+201722928
+201722712
+201722823
+201721326
+201722608
+201721395
+201722681
+201722590
+201722541
+201722570
+201722881
+201722987
+201722870
+201721450
+201722857
+201722663
+201722678
+201721351
+201722734
+201721297
+201721317
+201722563
+201722534
+201722672
+201721464
+201721321
+201722582
+201721367
+201722872
+201721465
+201722858
+201722802
+201722673
+201721316
+201722667
+201721313
+201721320
+201721386
+201722880
+201722869
+201722916
+201722879
+201721293
+201722868
+201722679
+201721310
+201721239
+201722863
+201721292
+201721447
+201722862
+201722861
+201721294
+201722601
+201722648
+201721279
+201721249
+201722900
+201721262
+201722852
+201722631
+201721476
+201721278
+201722636
+201722630
+201721256
+201721276
+201721366
+201721397
+201722637
+201722629
+201722533
+201722644
+201722851
+201722647
+201721477
+201722591
+201722902
+201722917
+201721478
+201721275
+201721261
+201722850
+201721272
+201722849
+201722845
+201721248
+201721240
+201721396
+201721259
+201722847
+201722848
+201722638
+201721265
+201721258
+201721266
+201722828
+201721365
+201721376
+201721264
+201721260
+201721291
+201722846
+201721319
+201721252
+201721257
+201722662
+201722633
+201721247
+201722628
+201722874
+201722520
+201722635
+201722854
+201722677
+201722972
+201721472
+201721251
+201721255
+201722860
+201722632
+201721290
+201722660
+201721250
+201722859
+201721304
+201722528
+201722878
+201721308
+201722797
+201722659
+201722676
+201721466
+201722814
+201721307
+201722675
+201721312
+201722876
+201722666
+201721315
+201721301
+201722668
+201722877
+201721311
+201722871
+201722875
+201722661
+201722671
+201721305
+201721288
+201722710
+201722670
+201721289
+201721300
+201722669
+201721309
+201722873
+201722856
+201721303
+201721306
+201721460
+201721270
+201721438
+201721282
+201722855
+201722656
+201721368
+201721302
+201722639
+201722979
+201721287
+201722555
+201721286
+201722642
+201722853
+201722658
+201721269
+201721281
+201721285
+201721284
+201722977
+201721363
+201722643
+201722641
+201722943
+201721268
+201721408
+201722657
+201721283
+201721222
+201722655
+201722843
+201721267
+201722960
+201722640
+201722783
+201722650
+201722616
+201722654
+201721280
+201722995
+201722652
+201722651
+201722938
+201722649
+201722653
+201721271
+201721455
+201721409
+201722615
+201722646
+201722645
+201722545
+201721277
+201721479
+201721274
+201721263
+201721273
+201722539
+201721152
+201721246
+201721245
+201722627
+201722944
+201721146
+201722521
+201722625
+201722732
+201722626
+201722538
+201721238
+201721244
+201721254
+201722982
+201722613
+201722592
+201722609
+201721242
+201721220
+201722915
+201721253
+201721487
+201722844
+201722842
+201721241
+201722634
+201721459
+201722983
+201722624
+201722621
+201722606
+201722840
+201721236
+201721381
+201722841
+201722968
+201721243
+201722546
+201721149
+201721147
+201721237
+201722838
+201722826
+201721235
+201721234
+201722839
+201722830
+201721369
+201722829
+201721221
+201722824
+201722614
+201722623
+201721219
+201721382
+201722988
+201722832
+201722804
+201722927
+201722835
+201722831
+201722833
+201722825
+201721232
+201722836
+201722837
+201721233
+201722612
+201721491
+201722620
+201722622
+201722729
+201722976
+201721227
+201721229
+201721469
+201721231
+201721228
+201721226
+201721405
+201721230
+201722834
+201721415
+201721379
+201722602
+201722543
+201721361
+201721392
+201722524
+201722711
+201722509
+201721495
+201722564
+201722963
+201721419
+201722952
+201721370
+201722998
+201722544
+201721400
+201722597
+201721422
+201722967
+201721451
+201722594
+201721494
+201722901
+201722537
+201722962
+201721486
+201722989
+201722986
+201721436
+201721482
+201722966
+201721358
+201722951
+201722522
+201721154
+201721458
+201722714
+201722965
+201721349
+201722957
+201722969
+201722809
+201722971
+201722572
+201721481
+201722553
+201721457
+201721418
+201722945
+201721454
+201722956
+201722811
+201721417
+201721453
+201721456
+201722955
+201722964
+201722525
+201721452
+201722512
+201721424
+201722925
+201721429
+201722924
+201722937
+201722947
+201721402
+201722513
+201722816
+201721148
+201722867
+201722801
+201721407
+201721474
+201721387
+201722959
+201722926
+201721372
+201722920
+201721423
+201722787
+201721217
+201722950
+201721440
+201722994
+201721412
+201722898
+201722531
+201722907
+201722805
+201722717
+201722958
+201721389
+201722946
+201722600
+201722899
+201721428
+201721393
+201722793
+201722552
+201721298
+201721444
+201722914
+201721410
+201721442
+201721490
+201721403
+201722781
+201723148
+201723147
+201723715
+201723146
+201722779
+201722778
+201723144
+201723267
+201722777
+201722775
+201723142
+201722774
+201723368
+201723140
+201722773
+201722772
+201722771
+201722770
+201722769
+201723138
+201723137
+201722767
+201723366
+201723365
+201722765
+201723136
+201723364
+201722764
+201722762
+201722761
+201722760
+201722759
+201722758
+201722757
+201722756
+201722755
+201723363
+201723135
+201723362
+201723361
+201723360
+201722753
+201722752
+201722750
+201722749
+201723359
+201723133
+201723358
+201723356
+201723132
+201722748
+201722747
+201723131
+201722746
+201723130
+201722745
+201723354
+201722744
+201723353
+201722742
+201723129
+201723351
+201723350
+201722741
+201723128
+201723127
+201723126
+201723125
+201722069
+201723124
+201722068
+201723349
+201722067
+201722066
+201723347
+201722065
+201722064
+201722062
+201722061
+201722060
+201722059
+201722058
+201722057
+201723123
+201722056
+201722055
+201722053
+201722052
+201722051
+201723344
+201723122
+201723343
+201723342
+201723121
+201722049
+201722048
+201723341
+201723340
+201722047
+201722045
+201723338
+201722044
+201722043
+201722042
+201722040
+201723120
+201722039
+201722038
+201723119
+201722036
+201722035
+201723336
+201723334
+201722034
+201722033
+201722032
+201723333
+201723332
+201723331
+201723330
+201723329
+201723118
+201722028
+201723328
+201722027
+201722026
+201723327
+201723326
+201723116
+201723325
+201723324
+201722024
+201722023
+201722022
+201722021
+201723115
+201722020
+201723114
+201722019
+201723322
+201722018
+201723112
+201723111
+201722016
+201723110
+201722015
+201722014
+201723109
+201723319
+201722011
+201723318
+201723108
+201722010
+201722009
+201723107
+201723315
+201722008
+201722007
+201722006
+201723314
+201722005
+201723313
+201723105
+201723104
+201722004
+201722003
+201723311
+201722002
+201723309
+201722001
+201722000
+201722198
+201723308
+201723307
+201723101
+201723306
+201723305
+201723304
+201722196
+201722195
+201723302
+201722194
+201722193
+201723301
+201722192
+201723100
+201723099
+201722190
+201723299
+201723098
+201723298
+201723097
+201723297
+201723295
+201722187
+201722186
+201722185
+201722184
+201722183
+201722182
+201722181
+201722180
+201723294
+201722179
+201723293
+201722177
+201723096
+201722176
+201722175
+201723292
+201722174
+201723291
+201722172
+201723290
+201722171
+201722169
+201723288
+201722167
+201723287
+201723286
+201723285
+201722164
+201722163
+201723283
+201722161
+201722160
+201723279
+201722159
+201722158
+201722157
+201723278
+201722156
+201722155
+201722154
+201722153
+201722152
+201722151
+201722150
+201723275
+201723274
+201722149
+201722147
+201722146
+201723156
+201722144
+201722143
+201722142
+201723153
+201722141
+201723092
+201722140
+201723091
+201723152
+201723151
+201723090
+201722137
+201723150
+201723149
+201723273
+201723272
+201723089
+201722135
+201723266
+201722134
+201722133
+201722132
+201722131
+201723087
+201723268
+201722130
+201723086
+201722129
+201722128
+201722127
+201722126
+201722125
+201722123
+201723498
+201722122
+201723497
+201722121
+201723496
+201723495
+201722120
+201723493
+201723085
+201722118
+201723490
+201722117
+201723084
+201723489
+201723488
+201723083
+201722116
+201723487
+201723082
+201723081
+201723485
+201723484
+201723483
+201723080
+201723481
+201723482
+201723480
+201722113
+201722112
+201723079
+201723479
+201722110
+201723478
+201723477
+201723475
+201723474
+201723473
+201723472
+201722109
+201723471
+201722108
+201723470
+201722107
+201723469
+201722106
+201723468
+201722105
+201723467
+201723466
+201723464
+201722104
+201722103
+201723463
+201723078
+201723077
+201723076
+201722102
+201723461
+201722101
+201723075
+201723074
+201723073
+201722100
+201723460
+201723072
+201723458
+201723071
+201723070
+201722099
+201723456
+201723455
+201723454
+201722098
+201723452
+201722097
+201723451
+201722095
+201722096
+201722094
+201722093
+201722092
+201723450
+201723449
+201722091
+201722090
+201723447
+201722089
+201722088
+201723446
+201723445
+201723444
+201722086
+201722085
+201723068
+201723443
+201723442
+201722082
+201723067
+201723441
+201723439
+201722081
+201723438
+201722080
+201723437
+201723436
+201722079
+201722078
+201722076
+201722075
+201722074
+201723435
+201723065
+201723433
+201723432
+201723431
+201723430
+201723429
+201723428
+201722073
+201722072
+201723427
+201723426
+201723425
+201723424
+201723423
+201722071
+201723421
+201722070
+201723064
+201723027
+201723420
+201723419
+201723417
+201723026
+201723024
+201723025
+201723023
+201723416
+201723415
+201723414
+201723413
+201723021
+201723019
+201723018
+201723017
+201723014
+201723411
+201723013
+201723012
+201723410
+201723011
+201723010
+201723408
+201723009
+201723407
+201723406
+201723405
+201723404
+201723403
+201723063
+201723402
+201723401
+201723400
+201723008
+201723399
+201723007
+201723398
+201723397
+201723006
+201723396
+201723395
+201723394
+201723393
+201723392
+201723391
+201723390
+201723061
+201723059
+201723389
+201723058
+201723388
+201723387
+201723057
+201723386
+201723002
+201723001
+201723385
+201723384
+201723383
+201723000
+201723056
+201723382
+201723381
+201723380
+201723055
+201722315
+201723379
+201723378
+201723377
+201723376
+201722312
+201723375
+201723054
+201723374
+201723373
+201723053
+201722311
+201723372
+201722309
+201722308
+201722307
+201723051
+201722305
+201723370
+201723596
+201722304
+201722303
+201722302
+201723594
+201723593
+201723050
+201723592
+201723591
+201722301
+201723590
+201722300
+201722299
+201723589
+201723588
+201722298
+201723587
+201723586
+201723585
+201723584
+201722296
+201722294
+201723583
+201723582
+201722293
+201722292
+201723581
+201723580
+201723048
+201723579
+201722291
+201723576
+201723575
+201723047
+201722289
+201722290
+201722288
+201723574
+201723573
+201722287
+201722286
+201722285
+201722284
+201723571
+201723570
+201723569
+201723567
+201722283
+201722282
+201723565
+201723046
+201722280
+201722279
+201722278
+201723045
+201723564
+201722277
+201722276
+201722275
+201723044
+201723563
+201722274
+201723562
+201723561
+201722273
+201723043
+201723560
+201722272
+201722271
+201722270
+201722269
+201722268
+201723558
+201722266
+201722265
+201722264
+201722263
+201722262
+201723557
+201723556
+201723555
+201723041
+201723554
+201722260
+201723553
+201722259
+201723552
+201722258
+201723040
+201723039
+201723550
+201723038
+201723037
+201722256
+201723549
+201723548
+201723036
+201722255
+201723035
+201722254
+201723033
+201723032
+201722253
+201722251
+201723546
+201723544
+201723031
+201723543
+201723030
+201723541
+201723540
+201723539
+201723537
+201722248
+201723029
+201722246
+201722244
+201722243
+201723536
+201722242
+201723535
+201723028
+201723534
+201722240
+201723533
+201723532
+201723265
+201723531
+201723530
+201723264
+201722239
+201723529
+201723263
+201722238
+201723527
+201722237
+201722236
+201722235
+201722233
+201722232
+201723525
+201723524
+201722231
+201723523
+201723522
+201723521
+201723520
+201723262
+201723519
+201722230
+201723518
+201723261
+201723260
+201723516
+201723515
+201723514
+201723259
+201723258
+201723257
+201722228
+201722227
+201722225
+201723256
+201722224
+201723511
+201722222
+201723255
+201722221
+201723254
+201722220
+201722219
+201723510
+201722216
+201723509
+201723508
+201722215
+201723507
+201722214
+201722213
+201722212
+201722210
+201722207
+201723505
+201723251
+201723504
+201722203
+201723250
+201723502
+201723501
+201723249
+201723669
+201723668
+201722201
+201723666
+201723248
+201723247
+201722199
+201723664
+201723663
+201722415
+201722414
+201723661
+201723660
+201722413
+201722412
+201723246
+201722411
+201723659
+201723658
+201723657
+201723245
+201723244
+201723656
+201723655
+201722409
+201722408
+201722407
+201723243
+201723242
+201723653
+201723241
+201723652
+201722406
+201723651
+201723650
+201723240
+201722404
+201723238
+201722403
+201722402
+201722401
+201723237
+201722400
+201723235
+201722399
+201722398
+201723234
+201723645
+201723644
+201722397
+201722396
+201723642
+201723233
+201723640
+201723639
+201722394
+201722393
+201722391
+201722389
+201722388
+201722386
+201723232
+201722385
+201722382
+201723638
+201723230
+201723229
+201722380
+201723228
+201723227
+201722377
+201722374
+201722373
+201723637
+201723226
+201723225
+201722371
+201723223
+201723636
+201722370
+201723635
+201723634
+201723633
+201722367
+201722365
+201723632
+201723631
+201723630
+201722364
+201723629
+201723627
+201722361
+201723222
+201723221
+201722360
+201723220
+201723626
+201722358
+201723624
+201722357
+201723219
+201723623
+201722355
+201723218
+201723622
+201723621
+201723620
+201722354
+201723619
+201723217
+201722352
+201722351
+201723216
+201722350
+201723618
+201722349
+201723215
+201723214
+201723213
+201723617
+201722346
+201722345
+201723212
+201722344
+201722343
+201723211
+201722341
+201722340
+201722339
+201722338
+201722337
+201723209
+201722336
+201723616
+201722334
+201722333
+201723208
+201722332
+201723207
+201723615
+201722331
+201722330
+201723614
+201723206
+201723205
+201722328
+201723204
+201722327
+201722326
+201723201
+201723202
+201722325
+201722324
+201723200
+201723612
+201722322
+201723611
+201723610
+201722321
+201723199
+201722320
+201723609
+201722319
+201723198
+201722318
+201723608
+201722317
+201723606
+201723197
+201723605
+201723196
+201723604
+201723194
+201722497
+201722496
+201723602
+201722495
+201722494
+201723601
+201722492
+201723600
+201722491
+201723192
+201723599
+201723191
+201723598
+201723597
+201723780
+201722488
+201722487
+201723779
+201723778
+201722486
+201723777
+201722485
+201723190
+201722484
+201723776
+201723775
+201722483
+201723189
+201722482
+201722481
+201722480
+201723774
+201722479
+201723773
+201723772
+201722478
+201723771
+201723770
+201723188
+201723187
+201722475
+201723186
+201723769
+201722473
+201722472
+201723185
+201722471
+201722469
+201723184
+201722468
+201723183
+201723767
+201723766
+201723182
+201723765
+201722467
+201723764
+201723763
+201723762
+201723181
+201723760
+201723180
+201723759
+201723758
+201723757
+201723756
+201722465
+201722464
+201723755
+201723179
+201722462
+201723178
+201723754
+201722461
+201722459
+201723177
+201723753
+201722457
+201723752
+201723176
+201723175
+201722456
+201722455
+201723174
+201723751
+201722454
+201722453
+201723750
+201723749
+201723748
+201722450
+201722449
+201723173
+201723747
+201722448
+201723746
+201723745
+201723172
+201723171
+201723170
+201723169
+201722447
+201723743
+201723168
+201723741
+201723167
+201723166
+201722445
+201722444
+201722443
+201722442
+201723739
+201723738
+201722441
+201722440
+201723737
+201723165
+201723736
+201722439
+201722438
+201723164
+201722437
+201722436
+201723163
+201723735
+201723734
+201723162
+201722435
+201723733
+201723732
+201723731
+201723730
+201723729
+201722432
+201723728
+201723727
+201722430
+201723726
+201722429
+201722428
+201722427
+201723725
+201722425
+201723160
+201722422
+201722421
+201722420
+201723723
+201722419
+201723721
+201723159
+201723720
+201722417
+201723719
+201722416
+201723158
+201723718
+201723157
+201723716
+201723869
+201723868
+201723935
+201723867
+201723934
+201723933
+201723927
+201723926
+201723931
+201724499
+201723866
+201724498
+201723865
+201724497
+201723864
+201723925
+201723924
+201724496
+201724495
+201724494
+201724493
+201724492
+201724491
+201723923
+201724490
+201723863
+201724489
+201723922
+201724488
+201723921
+201723920
+201724487
+201724486
+201723919
+201724484
+201723918
+201724483
+201724482
+201724481
+201723917
+201723916
+201724480
+201723915
+201723861
+201723914
+201723913
+201724478
+201723912
+201724477
+201724476
+201724475
+201724474
+201724473
+201723910
+201724472
+201723909
+201724470
+201723908
+201724469
+201724468
+201723907
+201723906
+201724467
+201724466
+201724465
+201724463
+201723904
+201723903
+201724462
+201723860
+201723902
+201724460
+201723859
+201723900
+201724459
+201724458
+201723858
+201724457
+201723899
+201724456
+201723898
+201723897
+201723896
+201723857
+201724455
+201724454
+201723894
+201724453
+201724452
+201723892
+201723856
+201724451
+201724450
+201724449
+201723890
+201723855
+201724448
+201724447
+201724446
+201724445
+201723889
+201723888
+201724443
+201723853
+201724442
+201724441
+201724440
+201723852
+201724436
+201724435
+201724434
+201723886
+201723851
+201723885
+201723850
+201723849
+201723884
+201724433
+201724432
+201724431
+201724430
+201724427
+201724425
+201724423
+201724422
+201724421
+201724419
+201723847
+201724418
+201723846
+201724416
+201723881
+201724414
+201724413
+201724412
+201723879
+201724411
+201724409
+201724408
+201723878
+201723877
+201724407
+201723876
+201724404
+201724403
+201724402
+201723875
+201723874
+201723873
+201723872
+201724400
+201723845
+201723844
+201723871
+201724399
+201723870
+201724397
+201724396
+201724607
+201723842
+201724395
+201724394
+201724606
+201723841
+201724393
+201723840
+201724392
+201723839
+201724605
+201723838
+201724391
+201723837
+201724604
+201724603
+201724389
+201724388
+201724600
+201723836
+201724598
+201724386
+201724385
+201724384
+201724597
+201724383
+201724382
+201724595
+201724594
+201724593
+201724380
+201723833
+201724378
+201723832
+201724377
+201724376
+201724375
+201724374
+201724373
+201723831
+201724592
+201724372
+201724371
+201724591
+201724370
+201724369
+201724367
+201724589
+201724366
+201724588
+201724587
+201724365
+201724586
+201724364
+201723829
+201724363
+201724362
+201724361
+201723827
+201724583
+201724582
+201723826
+201724360
+201723825
+201724359
+201723824
+201724580
+201724579
+201724358
+201724577
+201724576
+201724357
+201724574
+201723823
+201724571
+201724355
+201724353
+201724570
+201724352
+201724349
+201723822
+201724348
+201724347
+201724568
+201723821
+201724346
+201723820
+201723819
+201724345
+201724567
+201724566
+201724565
+201723818
+201724344
+201724564
+201723817
+201724563
+201724562
+201724561
+201723816
+201724342
+201724340
+201723815
+201723814
+201724559
+201724338
+201724337
+201723813
+201724558
+201723812
+201724336
+201724335
+201724334
+201724557
+201724556
+201723811
+201724555
+201724554
+201723810
+201724333
+201724332
+201723809
+201723808
+201724331
+201724553
+201724552
+201724330
+201724550
+201724549
+201724548
+201724547
+201723807
+201724546
+201724329
+201723806
+201724328
+201724545
+201724544
+201724327
+201724883
+201724541
+201724540
+201724539
+201724538
+201724537
+201724536
+201724535
+201724534
+201724532
+201724325
+201724531
+201724324
+201724323
+201724529
+201724528
+201724527
+201724526
+201724322
+201724525
+201724524
+201724523
+201724522
+201724521
+201724321
+201724320
+201724319
+201724520
+201724318
+201724519
+201724518
+201724517
+201724516
+201724317
+201724316
+201724515
+201724514
+201724513
+201724512
+201724315
+201724511
+201723805
+201724314
+201724313
+201724508
+201724311
+201724310
+201724309
+201723804
+201724307
+201724305
+201724304
+201723803
+201724507
+201723802
+201724301
+201724506
+201724505
+201724300
+201724299
+201724298
+201724297
+201723801
+201724296
+201724503
+201724295
+201724502
+201724501
+201724294
+201724500
+201724293
+201724292
+201723800
+201723799
+201724291
+201724290
+201724289
+201724718
+201724717
+201724288
+201724287
+201724716
+201724715
+201724286
+201724285
+201724714
+201723797
+201724284
+201724283
+201724282
+201724713
+201724712
+201724280
+201724279
+201724278
+201724710
+201724709
+201724277
+201724708
+201724276
+201724275
+201724706
+201724274
+201723796
+201724705
+201724704
+201723795
+201724703
+201724273
+201723794
+201723793
+201723792
+201724272
+201724702
+201724701
+201723791
+201724700
+201724271
+201724270
+201724699
+201724698
+201724269
+201724696
+201724695
+201723790
+201723789
+201724267
+201724266
+201724694
+201724265
+201724693
+201724692
+201724691
+201724264
+201724263
+201724262
+201724690
+201723788
+201724688
+201724687
+201724261
+201724686
+201724259
+201724881
+201724257
+201724683
+201724682
+201724256
+201724255
+201724880
+201724254
+201724253
+201724250
+201724679
+201724678
+201724677
+201724249
+201724676
+201724248
+201724675
+201724879
+201724673
+201724247
+201724246
+201724245
+201724244
+201724671
+201724243
+201724669
+201724668
+201724667
+201724242
+201724241
+201724240
+201723785
+201723784
+201724665
+201724237
+201723783
+201724235
+201724662
+201723781
+201724234
+201724233
+201724232
+201724661
+201723714
+201724231
+201724229
+201724228
+201724658
+201724226
+201724225
+201724224
+201724657
+201724223
+201724222
+201724656
+201724655
+201724654
+201724219
+201724878
+201724218
+201724651
+201724650
+201723930
+201724649
+201724648
+201723711
+201724216
+201724645
+201724644
+201724643
+201724642
+201724215
+201724641
+201724214
+201724640
+201724213
+201724211
+201724210
+201724209
+201724639
+201724208
+201723709
+201724207
+201724206
+201724205
+201724204
+201724637
+201724636
+201724635
+201724202
+201724201
+201724634
+201724633
+201724200
+201724199
+201724198
+201724632
+201723708
+201724197
+201724631
+201724630
+201724195
+201724629
+201723707
+201724628
+201724194
+201724193
+201724192
+201724627
+201724625
+201723706
+201724191
+201724624
+201723705
+201724189
+201724623
+201724622
+201724621
+201724620
+201724619
+201724188
+201724187
+201724876
+201724617
+201723704
+201724186
+201724185
+201724616
+201724615
+201724184
+201724183
+201723703
+201724182
+201724181
+201724614
+201724612
+201724180
+201723702
+201724179
+201724611
+201723701
+201724875
+201724609
+201724836
+201724177
+201724176
+201724834
+201724173
+201723700
+201724833
+201723699
+201724171
+201724832
+201724170
+201724831
+201724830
+201724829
+201724828
+201724169
+201723698
+201724826
+201724825
+201723697
+201724168
+201724166
+201724824
+201724165
+201724823
+201724164
+201724163
+201724822
+201724820
+201723696
+201723695
+201724162
+201724819
+201724818
+201724817
+201724159
+201724816
+201724158
+201724815
+201723693
+201724814
+201723692
+201724812
+201724811
+201724810
+201724809
+201724157
+201724155
+201723691
+201724154
+201724153
+201723690
+201724152
+201724151
+201724808
+201724150
+201724148
+201724807
+201724806
+201724805
+201724147
+201724146
+201724804
+201724145
+201724143
+201724141
+201724802
+201724140
+201724801
+201724139
+201724138
+201724137
+201724800
+201724136
+201724135
+201724134
+201724799
+201724133
+201723687
+201724132
+201724131
+201724797
+201724796
+201723686
+201724795
+201724125
+201724123
+201724794
+201723685
+201724793
+201724792
+201723684
+201724791
+201723683
+201724790
+201723682
+201724118
+201724117
+201724116
+201724789
+201724788
+201724114
+201724113
+201724786
+201724787
+201723680
+201724112
+201724111
+201724110
+201724785
+201724784
+201724783
+201724108
+201724781
+201723679
+201724780
+201724779
+201723678
+201723677
+201723676
+201724107
+201724106
+201723674
+201724105
+201724104
+201723673
+201724777
+201724776
+201724775
+201724774
+201724772
+201724773
+201724103
+201723672
+201724102
+201723671
+201724101
+201724100
+201724771
+201724099
+201724098
+201723670
+201724769
+201723999
+201723998
+201724768
+201724097
+201724767
+201723996
+201724766
+201724095
+201724094
+201724093
+201723995
+201723994
+201723993
+201724765
+201724764
+201723991
+201724763
+201724762
+201724760
+201724092
+201723990
+201724090
+201724759
+201724758
+201724089
+201724757
+201723989
+201724088
+201724087
+201724086
+201724756
+201724755
+201723988
+201724754
+201723987
+201724084
+201724083
+201724082
+201723986
+201724080
+201724753
+201723985
+201724751
+201724079
+201724750
+201724749
+201724748
+201723984
+201723983
+201724077
+201724076
+201724075
+201724074
+201723982
+201724073
+201724747
+201723981
+201723980
+201724072
+201724071
+201724746
+201724070
+201723979
+201723978
+201724745
+201724069
+201724744
+201723977
+201724743
+201723976
+201724742
+201723975
+201724741
+201724067
+201723974
+201724066
+201723973
+201723972
+201723971
+201723970
+201724065
+201724064
+201724063
+201724062
+201724740
+201724739
+201724061
+201723969
+201724060
+201724058
+201724738
+201724056
+201724736
+201724054
+201724053
+201724735
+201724734
+201724733
+201724051
+201724050
+201723968
+201723967
+201724048
+201724047
+201724046
+201723966
+201724731
+201724044
+201724730
+201724043
+201723965
+201724729
+201724728
+201723964
+201724726
+201723963
+201724037
+201723962
+201724036
+201724724
+201724723
+201724035
+201724722
+201724721
+201724034
+201724032
+201724030
+201724719
+201724914
+201723960
+201724912
+201724028
+201723958
+201724027
+201724910
+201724909
+201724025
+201723957
+201723956
+201724908
+201724023
+201724907
+201724906
+201724905
+201724904
+201724022
+201724021
+201724903
+201724902
+201724019
+201723954
+201723953
+201724901
+201724017
+201724016
+201723952
+201724015
+201723951
+201723950
+201723949
+201723948
+201724012
+201724011
+201723947
+201724010
+201724898
+201723946
+201724897
+201723945
+201724896
+201723944
+201724895
+201724894
+201723943
+201724893
+201723942
+201724892
+201724891
+201724890
+201724006
+201723940
+201724889
+201724888
+201724887
+201724003
+201723939
+201723938
+201724886
+201724002
+201723937
+201724001
+201724000
+201724884
+201724999
+201725666
+201725044
+201725043
+201725665
+201725042
+201725040
+201725662
+201725039
+201725661
+201725660
+201725038
+201725659
+201724998
+201725658
+201725037
+201724997
+201725036
+201724996
+201725656
+201725655
+201724995
+201724994
+201725654
+201725653
+201724993
+201725652
+201725035
+201724992
+201725650
+201725649
+201725034
+201725648
+201725647
+201725645
+201725644
+201725032
+201725643
+201724989
+201724988
+201724987
+201725641
+201725030
+201725613
+201725028
+201725026
+201724986
+201725612
+201725025
+201725610
+201725608
+201725607
+201725024
+201725606
+201725605
+201725604
+201725603
+201725022
+201725602
+201725601
+201725600
+201724985
+201725020
+201725597
+201725598
+201725596
+201725595
+201725594
+201725593
+201724983
+201724982
+201725592
+201725019
+201724981
+201725018
+201724980
+201725591
+201724978
+201724977
+201724976
+201725589
+201725016
+201724975
+201725588
+201724973
+201725587
+201725586
+201725585
+201725015
+201725014
+201725584
+201724972
+201725583
+201724971
+201725013
+201725010
+201725009
+201725582
+201725007
+201725008
+201725006
+201725581
+201725005
+201725580
+201725004
+201725579
+201725578
+201725577
+201724970
+201724969
+201725576
+201725002
+201725001
+201725000
+201725185
+201724967
+201725573
+201725572
+201725571
+201725570
+201725183
+201725568
+201725567
+201725566
+201725565
+201725182
+201724966
+201725564
+201724965
+201725563
+201725562
+201724964
+201725561
+201725181
+201725560
+201725180
+201725558
+201725555
+201725179
+201725553
+201725177
+201725552
+201725551
+201725176
+201725175
+201725550
+201725549
+201724962
+201725174
+201725547
+201724961
+201725546
+201725172
+201725171
+201725170
+201725545
+201725544
+201725169
+201725168
+201725542
+201724960
+201725167
+201725166
+201725540
+201725165
+201725539
+201724959
+201725537
+201725536
+201725164
+201725163
+201725162
+201725535
+201725533
+201725161
+201724958
+201725160
+201725530
+201725529
+201725159
+201724957
+201725158
+201725528
+201725527
+201725526
+201724956
+201725525
+201725157
+201725524
+201725156
+201725523
+201724954
+201725155
+201725522
+201725521
+201725154
+201725152
+201725520
+201725151
+201725150
+201725519
+201725518
+201725517
+201725515
+201725514
+201725512
+201725149
+201725148
+201725147
+201724953
+201725146
+201725510
+201725509
+201725144
+201725143
+201725141
+201725140
+201725139
+201724952
+201724951
+201725507
+201724950
+201724949
+201724948
+201725136
+201725135
+201725505
+201725504
+201725134
+201725133
+201725503
+201724947
+201725131
+201725130
+201725129
+201724946
+201725128
+201724945
+201724944
+201725126
+201724943
+201725245
+201725500
+201725627
+201725243
+201725626
+201725625
+201724942
+201724941
+201725622
+201725619
+201725242
+201724940
+201725241
+201725239
+201725238
+201725617
+201725237
+201725236
+201725235
+201724938
+201724937
+201724936
+201725616
+201725615
+201725234
+201725233
+201725232
+201725231
+201725230
+201725229
+201725228
+201725640
+201725639
+201725227
+201725226
+201724935
+201725225
+201725224
+201725223
+201725222
+201725221
+201724934
+201725219
+201725218
+201724933
+201725216
+201725637
+201725215
+201725214
+201725636
+201725213
+201725212
+201725211
+201725210
+201724931
+201725209
+201725206
+201724930
+201725205
+201725204
+201725203
+201725633
+201725632
+201725202
+201725628
+201725738
+201725201
+201725737
+201725200
+201725736
+201725199
+201725198
+201725735
+201724929
+201725734
+201725733
+201725197
+201725196
+201725195
+201724928
+201725194
+201725193
+201725731
+201725192
+201724927
+201725730
+201725191
+201725190
+201725729
+201725189
+201725188
+201725187
+201724925
+201725186
+201725728
+201725373
+201725372
+201725371
+201725370
+201725727
+201725726
+201724924
+201725725
+201725369
+201725368
+201725367
+201725366
+201725365
+201725364
+201724922
+201725363
+201724921
+201725722
+201724920
+201724919
+201725361
+201724918
+201725360
+201725359
+201725720
+201725358
+201725357
+201725356
+201725355
+201724917
+201725354
+201725353
+201725719
+201724916
+201725718
+201725717
+201725352
+201724915
+201725351
+201725716
+201724874
+201724873
+201725349
+201725714
+201725348
+201725347
+201725345
+201725344
+201725713
+201725343
+201725342
+201725341
+201725712
+201725340
+201725339
+201725338
+201725711
+201725337
+201724872
+201724871
+201724870
+201725336
+201725710
+201724869
+201724868
+201725334
+201725708
+201725333
+201725332
+201725706
+201725331
+201725330
+201725705
+201725329
+201725328
+201725327
+201725326
+201725325
+201725704
+201725703
+201725324
+201725322
+201724866
+201725740
+201725321
+201725739
+201725320
+201725700
+201725318
+201725317
+201725316
+201725699
+201725314
+201725313
+201725312
+201725698
+201725311
+201725310
+201725309
+201725308
+201725697
+201725306
+201725696
+201725695
+201725305
+201725304
+201724865
+201725693
+201725692
+201725303
+201725691
+201724864
+201724863
+201725302
+201725690
+201724862
+201725689
+201725300
+201725299
+201725688
+201724861
+201725687
+201724860
+201725686
+201725297
+201725296
+201724859
+201724858
+201725685
+201725294
+201724857
+201724856
+201725293
+201725291
+201724855
+201725290
+201725289
+201724854
+201725681
+201725680
+201724852
+201725286
+201725679
+201725678
+201724851
+201725284
+201724850
+201724849
+201724848
+201725282
+201725281
+201725280
+201725674
+201724847
+201725673
+201724846
+201724845
+201725672
+201725277
+201725671
+201725276
+201724844
+201725670
+201724842
+201725669
+201724841
+201725274
+201724840
+201725272
+201725848
+201725271
+201725270
+201725847
+201725269
+201725846
+201725268
+201725266
+201724839
+201725265
+201725263
+201725262
+201724838
+201725844
+201724837
+201725261
+201725260
+201725841
+201725259
+201725256
+201725840
+201725839
+201725125
+201725124
+201725255
+201725837
+201725836
+201725123
+201725835
+201725122
+201725121
+201725253
+201725834
+201725120
+201725252
+201725251
+201725250
+201725119
+201725249
+201725117
+201725116
+201725115
+201725248
+201725247
+201725246
+201725114
+201725499
+201725498
+201725497
+201725496
+201725494
+201725831
+201725113
+201725830
+201725829
+201725828
+201725112
+201725492
+201725827
+201725111
+201725491
+201725826
+201725490
+201725825
+201725489
+201725488
+201725109
+201725487
+201725486
+201725485
+201725822
+201725108
+201725821
+201725105
+201725820
+201725819
+201725104
+201725103
+201725102
+201725816
+201725101
+201725484
+201725814
+201725481
+201725100
+201725813
+201725812
+201725811
+201725810
+201725480
+201725099
+201725479
+201725098
+201725097
+201725478
+201725809
+201725096
+201725095
+201725808
+201725807
+201725806
+201725094
+201725805
+201725804
+201725093
+201725092
+201725476
+201725803
+201725802
+201725475
+201725474
+201725473
+201725471
+201725091
+201725800
+201725469
+201725799
+201725090
+201725089
+201725088
+201725468
+201725467
+201725087
+201725086
+201725466
+201725085
+201725084
+201725798
+201725082
+201725083
+201725797
+201725465
+201725464
+201725796
+201725463
+201725081
+201725794
+201725792
+201725791
+201725080
+201725462
+201725789
+201725787
+201725461
+201725079
+201725078
+201725460
+201725786
+201725459
+201725784
+201725077
+201725458
+201725783
+201725457
+201725456
+201725076
+201725780
+201725778
+201725777
+201725075
+201725776
+201725775
+201725074
+201725073
+201725455
+201725072
+201725774
+201725071
+201725070
+201725454
+201725069
+201725068
+201725453
+201725067
+201725451
+201725450
+201725449
+201725772
+201725447
+201725771
+201725770
+201725066
+201725768
+201725767
+201725765
+201725065
+201725763
+201725446
+201725064
+201725762
+201725445
+201725444
+201725443
+201725442
+201725063
+201725062
+201725759
+201725440
+201725757
+201725061
+201725060
+201725059
+201725439
+201725756
+201725755
+201725058
+201725438
+201725754
+201725057
+201725437
+201725056
+201725055
+201725436
+201725435
+201725753
+201725053
+201725750
+201725052
+201725433
+201725432
+201725431
+201725049
+201725748
+201725747
+201725430
+201725429
+201725428
+201725427
+201725426
+201725048
+201725425
+201725047
+201725746
+201725424
+201725745
+201725423
+201725422
+201725744
+201725421
+201725045
+201725742
+201726132
+201725897
+201725896
+201726131
+201725895
+201725894
+201726130
+201725893
+201726129
+201726698
+201726128
+201725892
+201726127
+201725890
+201726125
+201726124
+201726697
+201726122
+201725887
+201726696
+201726121
+201726120
+201726119
+201726118
+201726117
+201726694
+201726116
+201726115
+201726114
+201726113
+201725885
+201725884
+201726693
+201726692
+201726112
+201726111
+201725883
+201726110
+201726109
+201726108
+201726106
+201726691
+201725881
+201726105
+201726690
+201726689
+201726103
+201726688
+201726687
+201726102
+201726101
+201726685
+201726100
+201726684
+201726683
+201726682
+201726681
+201725879
+201726099
+201726098
+201726097
+201726096
+201726095
+201726679
+201726094
+201726093
+201726091
+201726677
+201725876
+201726676
+201726675
+201725875
+201726674
+201726672
+201726673
+201726089
+201726088
+201726671
+201726087
+201726086
+201726668
+201725874
+201726085
+201726667
+201726666
+201726083
+201725872
+201726082
+201725871
+201726081
+201726664
+201726663
+201726080
+201725869
+201726662
+201726660
+201726076
+201726658
+201726657
+201726656
+201726655
+201726074
+201726654
+201725868
+201726071
+201726651
+201726068
+201725866
+201726067
+201726066
+201726650
+201726649
+201726062
+201726648
+201726061
+201726060
+201726059
+201726057
+201726647
+201726646
+201726056
+201726645
+201726055
+201726054
+201726644
+201725864
+201725863
+201725862
+201726643
+201726052
+201725861
+201726050
+201726049
+201726641
+201726048
+201725860
+201726640
+201726047
+201726639
+201725859
+201725858
+201726046
+201726638
+201725857
+201726045
+201726637
+201726636
+201725856
+201725855
+201726042
+201726041
+201726635
+201726039
+201726038
+201726634
+201726633
+201726632
+201726037
+201726035
+201725854
+201726034
+201726033
+201725853
+201726631
+201726032
+201726629
+201726031
+201726628
+201726030
+201726627
+201726625
+201725852
+201726029
+201726624
+201726028
+201726623
+201726027
+201726026
+201726622
+201726025
+201726621
+201726024
+201726620
+201726023
+201725851
+201726619
+201726618
+201726617
+201725850
+201725849
+201726616
+201725420
+201726022
+201726021
+201726614
+201726018
+201725419
+201725418
+201726613
+201726612
+201726016
+201726611
+201726015
+201726014
+201726610
+201726013
+201726609
+201726608
+201726010
+201726009
+201726607
+201725417
+201726006
+201726606
+201726605
+201726005
+201725416
+201726604
+201726603
+201725415
+201726004
+201726245
+201726244
+201726243
+201726602
+201726601
+201726241
+201726600
+201726239
+201726599
+201726598
+201726238
+201726597
+201726596
+201725414
+201726237
+201725413
+201726594
+201726593
+201725412
+201726236
+201726592
+201725411
+201726235
+201726591
+201726233
+201726590
+201726589
+201726588
+201726587
+201726586
+201726585
+201725410
+201726584
+201726231
+201726583
+201726582
+201725409
+201726581
+201726580
+201726578
+201726577
+201725408
+201726230
+201725407
+201726818
+201726817
+201726816
+201726815
+201726813
+201726228
+201726812
+201726811
+201726810
+201726809
+201726808
+201726227
+201726806
+201725406
+201726226
+201726805
+201726804
+201726803
+201726225
+201726802
+201726801
+201726799
+201726800
+201726798
+201726224
+201726797
+201726796
+201726795
+201726223
+201726794
+201726792
+201726222
+201726791
+201726790
+201726789
+201726788
+201726787
+201726786
+201726785
+201726784
+201725404
+201725403
+201725402
+201726220
+201726783
+201726782
+201726219
+201725401
+201726781
+201726780
+201726779
+201726218
+201726778
+201726777
+201726217
+201726216
+201726215
+201725399
+201726775
+201726214
+201726774
+201726773
+201726213
+201726212
+201726211
+201726772
+201726771
+201726210
+201726770
+201726209
+201725397
+201726207
+201726768
+201726767
+201726204
+201725396
+201726766
+201726203
+201726765
+201726764
+201726763
+201726202
+201726201
+201726761
+201725395
+201726759
+201726200
+201726758
+201726198
+201726757
+201725394
+201726755
+201725393
+201726754
+201726752
+201725392
+201726750
+201726749
+201726748
+201726747
+201726746
+201726745
+201725391
+201726196
+201726744
+201726743
+201726195
+201726194
+201725390
+201726742
+201726741
+201726193
+201726739
+201726192
+201726191
+201726738
+201725389
+201726737
+201726736
+201726735
+201726189
+201726734
+201726733
+201726732
+201726188
+201725388
+201726731
+201725387
+201726187
+201726730
+201726729
+201726728
+201726727
+201726726
+201726725
+201726723
+201726576
+201726721
+201726720
+201726185
+201726719
+201726718
+201726183
+201726717
+201726182
+201726716
+201726715
+201726181
+201726714
+201726713
+201726711
+201726710
+201726709
+201726708
+201726707
+201726706
+201726180
+201726705
+201726179
+201725383
+201726704
+201726178
+201726177
+201726703
+201726701
+201726176
+201725382
+201726174
+201726700
+201726936
+201726935
+201726173
+201726172
+201726934
+201726933
+201726932
+201726931
+201726170
+201726169
+201726930
+201726929
+201726928
+201726926
+201726925
+201726167
+201725380
+201726924
+201726166
+201726923
+201726922
+201726165
+201726164
+201726163
+201726162
+201726161
+201726160
+201726921
+201726920
+201726919
+201726918
+201726917
+201725378
+201725377
+201726916
+201726915
+201725376
+201725375
+201726913
+201726912
+201726157
+201726911
+201725999
+201726910
+201726909
+201726907
+201726906
+201726154
+201726905
+201726153
+201726152
+201726151
+201726904
+201726903
+201726901
+201725997
+201725996
+201726900
+201726150
+201726149
+201725995
+201726148
+201726899
+201726147
+201726146
+201726145
+201726897
+201725992
+201726143
+201726142
+201726895
+201726141
+201725991
+201726140
+201726893
+201725990
+201726891
+201726890
+201726138
+201726889
+201725988
+201726888
+201726887
+201726134
+201726133
+201725987
+201726365
+201725986
+201726885
+201726884
+201726883
+201726882
+201725984
+201726364
+201726881
+201726880
+201726879
+201725983
+201726878
+201725982
+201726877
+201726876
+201726875
+201726362
+201726874
+201726872
+201726871
+201726358
+201726869
+201725981
+201726867
+201726357
+201726356
+201726355
+201726354
+201726865
+201726353
+201726864
+201726863
+201726862
+201726861
+201726860
+201726722
+201726858
+201726856
+201726351
+201726349
+201725979
+201726348
+201725977
+201726347
+201726346
+201726855
+201726345
+201726344
+201725976
+201726343
+201726854
+201726853
+201726852
+201725974
+201726341
+201725973
+201726851
+201726850
+201726340
+201726339
+201726338
+201726849
+201726337
+201725972
+201726336
+201726335
+201726848
+201726847
+201726846
+201725971
+201725970
+201726845
+201725969
+201726844
+201726843
+201726333
+201726331
+201725968
+201726329
+201726328
+201726327
+201726326
+201726325
+201726839
+201726838
+201726837
+201726836
+201726324
+201726835
+201725967
+201726323
+201726834
+201725966
+201725965
+201726321
+201726320
+201726833
+201726319
+201726318
+201726316
+201726832
+201726831
+201726314
+201726830
+201726829
+201726312
+201726311
+201726309
+201725962
+201726827
+201726826
+201725961
+201726307
+201726306
+201726825
+201726824
+201725960
+201726305
+201726823
+201726822
+201726304
+201725959
+201725958
+201726820
+201726301
+201725957
+201726300
+201726299
+201726298
+201726819
+201725956
+201726999
+201726295
+201725955
+201725954
+201726998
+201726294
+201725953
+201726292
+201726291
+201726997
+201726996
+201725952
+201726995
+201726994
+201726290
+201725951
+201725950
+201726993
+201726992
+201726991
+201725949
+201726990
+201726289
+201725948
+201726989
+201725947
+201726988
+201725946
+201725945
+201725944
+201726987
+201726986
+201725942
+201726985
+201725941
+201725940
+201726984
+201725939
+201726288
+201725938
+201726982
+201726980
+201726979
+201726287
+201726978
+201725937
+201725936
+201725935
+201726976
+201726283
+201726975
+201726282
+201726974
+201726973
+201725934
+201726972
+201725933
+201726971
+201725931
+201726281
+201726970
+201726280
+201725930
+201726279
+201725929
+201726278
+201726968
+201725928
+201726967
+201726966
+201726965
+201725927
+201726964
+201726274
+201725925
+201725924
+201726963
+201726962
+201726273
+201726272
+201726961
+201726960
+201725923
+201725922
+201726959
+201725921
+201725920
+201725919
+201725918
+201725917
+201726958
+201726957
+201726956
+201725916
+201726268
+201725915
+201725914
+201726267
+201726955
+201726265
+201726264
+201726263
+201725912
+201725911
+201726953
+201725910
+201726952
+201725909
+201726260
+201725908
+201726258
+201726951
+201725907
+201726256
+201726255
+201726950
+201726254
+201726253
+201725906
+201725905
+201725904
+201726949
+201726252
+201725903
+201725902
+201726947
+201725900
+201725899
+201725898
+201726250
+201726003
+201726002
+201726944
+201726000
+201726942
+201726941
+201726940
+201726938
+201726246
+201726937
+"@.replace("`r","").split("`n")
+
+$sqlConnection = New-Object System.Data.SqlClient.SqlConnection
+#$sqlConnection.ConnectionString = 'Server=REJK-P-SQL020\SQL02;Database=PDWH;Trusted_Connection=True;'
+$sqlConnection.ConnectionString = 'Server=REJK-P-SQL003\SQL01;Database=AfcCookedIFSv2;Trusted_Connection=True;'
+$sqlConnection.Open()
+$sqlCommand = $sqlConnection.CreateCommand()
+$sqlCommand.CommandTimeout = 6000
+
+$increment = 100
+
+$result = for($i = 0; $i -lt $cards.Count; $i += $increment) {
+ Write-Progress -Activity 'Processing' -Status "Card series $i to $($i+$increment)" -PercentComplete ($i / $cards.Count * 100)
+
+ $currentCards = $cards | select -first $increment -skip $i
+
+ $sqlCommand.CommandText = @"
+select
+ t.CardEngravedID
+-- ,count(tu.transactionid) as 'PreEngagementCount'
+ ,t.transactionid
+
+
+from trk.ObjTransaction t with(readuncommitted)
+left join trk.ObjTransactionUsage tu with(readuncommitted)
+ on t.TransactionID = tu.TransactionID
+
+where
+ t.CardEngravedID in (
+ $($currentCards -join ',')
+ )
+and tu.ValidationModel = 8
+"@
+
+ $reader = $sqlCommand.ExecuteReader()
+
+ if($reader.HasRows) {
+ $transactions = while($reader.Read()) {
+ [pscustomobject]@{
+ CardEngravedId = $reader['CardEngravedID']
+ TransactionId = $reader['TransactionID']
+ }
+ }
+
+ $transactions | Group-Object -NoElement CardEngravedId
+ }
+
+ $reader.Close()
+}
+
+$sqlConnection.Close()
\ No newline at end of file
diff --git a/Dennis_Scripts/Cert Finder.ps1 b/Dennis_Scripts/Cert Finder.ps1
new file mode 100644
index 0000000..55ce216
--- /dev/null
+++ b/Dennis_Scripts/Cert Finder.ps1
@@ -0,0 +1,11 @@
+. T:\m.nielsen\Scripts\Get-ADComputers.ps1
+
+$servers = $servers | Sort-Object
+$creds = Get-Credential
+
+
+foreach($server in $servers) {
+ Invoke-Command -ComputerName $server -Credential $creds -ScriptBlock {
+ Get-ChildItem -Recurse Cert:\LocalMachine\ | Where { $_.Thumbprint -match '557ba2083765ab8be7d5a12272b698a7e79b0f8b' }
+ }
+}
\ No newline at end of file
diff --git a/Dennis_Scripts/DCP_Mover.ps1 b/Dennis_Scripts/DCP_Mover.ps1
new file mode 100644
index 0000000..bece8dc
--- /dev/null
+++ b/Dennis_Scripts/DCP_Mover.ps1
@@ -0,0 +1,24 @@
+$dateToday = Get-Date
+$dateYesterday = $dateToday.AddDays(-1)
+
+$logfile = "D:\IFSBOSystem\Log\DCP_Mover.log"
+
+Set-Location ("D:\IFSBOData\FSV\Incoming\DCP_ud\{0:d4}\{1:d2}" -f $dateYesterday.Year, $dateYesterday.Month)
+
+$dateToday.ToString('[yyyy-MM-dd HH:mm:ss] ') | Out-File -FilePath $logfile -NoNewline -Append
+"------ New run starting ------" | Out-File -FilePath $logfile -Append
+
+$files = Get-ChildItem * -Recurse | Where-Object { $_.Attributes -notmatch 'Directory' } | Where-Object { $_.Directory -notmatch ("IFSBOData\\FSV\\Incoming\\DCP_ud\\{0:d4}\\{1:d2}\\{2:d2}" -f $dateToday.Year, $dateToday.Month, $dateToday.Day) }
+
+$destination = 'D:\IFSBOData\FSV\Incoming\DCP_ud'
+
+foreach($file in $files) {
+
+ $dateToday.ToString('[yyyy-MM-dd HH:mm:ss] ') | Out-File -FilePath $logfile -NoNewline -Append
+ "Moving '$($file.FullName)' to '$destination'" | Out-File -FilePath $logfile -Append
+
+ $file | Move-Item -Destination $destination
+}
+
+$dateToday.ToString('[yyyy-MM-dd HH:mm:ss] ') | Out-File -FilePath $logfile -NoNewline -Append
+"------ Run ended ------" | Out-File -FilePath $logfile -Append
\ No newline at end of file
diff --git a/Dennis_Scripts/EInvoiceScan.ps1 b/Dennis_Scripts/EInvoiceScan.ps1
new file mode 100644
index 0000000..eaebfef
--- /dev/null
+++ b/Dennis_Scripts/EInvoiceScan.ps1
@@ -0,0 +1,88 @@
+$date = Get-Date 'September 15, 2016'
+
+#$path = 'C:\Users\ewpmni\Desktop\einvoice\'
+$path = '\\rjkprod.local\axfileshare\AXFiles\EInvoice\'
+
+$pathSent = $path + 'sent'
+$pathArchive = $path + 'archive'
+$pathProcessed = $path + 'processed files'
+
+Write-host 'Loading sent items'
+$itemsSent = Get-Item "$pathSent\*.xml" | where { $_.LastWriteTime.Date -ge $date.AddMonths(-1).Date }
+Write-host 'Loading processed items'
+$itemsProcessed = Get-Item "$pathProcessed\*.xml" | where { $_.LastWriteTime.Date -ge $date.AddMonths(-1).Date }
+Write-host 'Loading archived items'
+$itemsArchive = Get-Item "$pathArchive\*.xml" | where { $_.LastWriteTime.Date -ge $date.AddMonths(-1).Date }
+
+Write-Host 'Scanning processed items'
+$processed = foreach($item in $itemsProcessed) {
+ $xml = [xml](Get-Content $item)
+
+ [pscustomobject]@{
+ Path = "Processed Files\" + $item.Name
+ InvoiceId = $xml.Envelope.Body.MessageParts.SalesInvoice_Einvoice.CustInvoiceJour.InvoiceId
+ LastChange = $item.LastWriteTime
+ }
+}
+
+Write-host 'Scanning archived items'
+$archived = foreach($item in $itemsArchive) {
+ $xml = [xml](Get-Content $item)
+
+ [pscustomobject]@{
+ Path = "Archived\" + $item.Name
+ InvoiceId = $xml.StatusMessage.DocumentResponse.DocumentReference.ID
+ LastChange = $item.LastWriteTime
+ }
+}
+
+Write-Host 'Scanning sent items'
+$sent = foreach($item in $itemsSent) {
+ $invoiceId = $item.Name.Substring('DKDSB'.Length).Replace('.xml','')
+
+ [pscustomobject]@{
+ Path = "Sent\" + $item.Name
+ InvoiceId = $invoiceId
+ LastChange = $item.LastWriteTime
+ }
+}
+
+
+# logic happens here
+
+Write-Host 'Finding sent-processed-archived relations'
+$relation = foreach($item in ($archived | sort LastChange)) {
+ # we dont want to look at archived files more than 7 days older than the $date specified
+
+ if($item.LastChange.Date -lt $date.AddDays(-7).Date) {
+ continue
+ }
+
+ [pscustomobject]@{
+ ArchivedItem = $item
+ ProcessedItem = $processed | where { $_.InvoiceId -eq $item.InvoiceId } | Select-Object Path, LastChange
+ SentItem = $sent | where { $_.InvoiceId -eq $item.InvoiceId } | Select-Object Path, LastChange
+ }
+}
+
+$i = 0
+$dupes = foreach($item in ($sent | sort LastChange)) {
+ if($item.LastChange.Date -lt $date.AddDays(-7).Date) {
+ continue
+ }
+
+ [pscustomobject]@{
+ ArchivedItem = ($archived | where { $_.InvoiceId -eq $item.InvoiceId } | % { "Path:$($_.Path), InvoiceId:$($_.InvoiceId);" }) -join "`n"
+ ProcessedItem = ($processed | where { $_.InvoiceId -eq $item.InvoiceId } | % { "Path:$($_.Path), InvoiceId:$($_.InvoiceId);" }) -join "`n"
+ #SentItem = $sent | where { $_.InvoiceId -eq $item.InvoiceId } | Select-Object Path, LastChange
+ SentItem = $item
+ }
+
+ $i++
+ Write-Progress -Activity "Finding dupes" -Status "$i of $(@($sent).Count))"
+}
+
+
+
+$relation | ConvertTo-Html -Head '' | Set-Content relations.html
+$dupes | ConvertTo-Html -Head '' | Set-Content dupes.html
\ No newline at end of file
diff --git a/Dennis_Scripts/FSV.EWOPS.Mover.ps1 b/Dennis_Scripts/FSV.EWOPS.Mover.ps1
new file mode 100644
index 0000000..8db44db
--- /dev/null
+++ b/Dennis_Scripts/FSV.EWOPS.Mover.ps1
@@ -0,0 +1,43 @@
+
+$time = Get-Date -Format 'yyyy-MM-dd HH:mm:ss'
+$logfile = 'D:\ifsbosystem\log\FSV.EWOPS.Mover.log'
+$destination = 'D:\IFSBOData\FSV\Outgoing\REJK-P-MDL003V\DCP_ud'
+$notprocessedpath = 'D:\ifsbodata\fsv\outgoing_notprocessed_files\*'
+
+Add-Content -Path $logfile -Value "$time - Job start"
+
+$folders = Get-Item -Path $notprocessedpath | Where { [int]::Parse($_.Name) -ge 20161030 }
+if(-not $folders) {
+ Add-Content -Path $logfile -Value "$time - Job stopping prematurely - No folders found"
+
+}
+else {
+ $folderCount = @($folders).Count
+
+ Add-Content -Path $logfile -Value "$time - Found $folderCount folder(s)"
+
+ $files = $folders | Get-ChildItem -Recurse | Where { $_.Attributes -notcontains 'directory' -and $_.Name -notmatch 'csv.gz' }
+ if(-not $files) {
+ Add-Content -Path $logfile -Value "$time - Job stopping prematurely - No files found"
+ }
+ else {
+
+ $fileCount = @($files).Count
+
+ Add-Content -Path $logfile -Value "$time - Found $fileCount file(s)"
+
+ $files | % {
+ $file = $_
+ try {
+ Add-Content -Path $logfile -Value "$time - Moving $($file.Name)"
+ $file | Move-Item -Destination $destination -ErrorAction Stop
+ }
+ catch {
+ Add-Content -Path $logfile -Value "$time - Failed: $($_.ToString().Trim())"
+ }
+
+ }
+
+ Add-Content -Path $logfile -Value "$time - Job complete"
+ }
+}
\ No newline at end of file
diff --git a/Dennis_Scripts/FSVScan.ps1 b/Dennis_Scripts/FSVScan.ps1
new file mode 100644
index 0000000..b46c395
--- /dev/null
+++ b/Dennis_Scripts/FSVScan.ps1
@@ -0,0 +1,152 @@
+function Start-FSVScanDPS {
+
+ Clear-Host
+ Write-Host ""
+ Write-Host ""
+ Write-Host ""
+ Write-Host ""
+ Write-Host ""
+ Write-Host ""
+ Write-Host ""
+ Write-Host ""
+ Write-Host ""
+ Write-Host ""
+
+
+ while($true) {
+
+ $servers = @"
+REJK-P-DPS001
+REJK-P-DPS003
+REJK-P-DPS005
+"@.split("`r`n")
+
+ for($i = 0; $i -lt $servers.Count; $i++) {
+ Write-Progress -Activity "Scanning DPS" -Status $servers[$i] -PercentComplete ($i / $servers.Count * 100)
+
+ $files = @(Get-ChildItem -Path "\\$($servers[$i])\D-Drive\IFSBOData\FSV\Outgoing\REJK-P-MDL003V\DCP_ud\2015\" -Recurse -File)
+ Write-Host "$($servers[$i]) Outgoing\DCP_ud\2015: $($files.Count)"
+ }
+
+ Write-Host "-----"
+ }
+}
+
+function Start-FSVScanSPS {
+ Clear-Host
+ Write-Host ""
+ Write-Host ""
+ Write-Host ""
+ Write-Host ""
+ Write-Host ""
+ Write-Host ""
+ Write-Host ""
+ Write-Host ""
+ Write-Host ""
+ Write-Host ""
+
+ while($true) {
+
+
+
+ $servers = @"
+REJK-P-SPS001
+REJK-P-SPS002
+REJK-P-SPS003
+REJK-P-SPS004
+REJK-P-SPS005
+REJK-P-SPS006
+REJK-P-SPS007
+REJK-P-SPS008
+REJK-P-SPS009
+REJK-P-SPS010
+"@.split("`r`n")
+
+ for($i = 0; $i -lt $servers.Count; $i++) {
+ Write-Progress -Activity "Scanning SPS" -Status $servers[$i] -PercentComplete ($i / $servers.Count * 100)
+
+ $files = @(Get-ChildItem -Path "\\$($servers[$i])\D-Drive\IFSBOData\FSV\Outgoing\REJK-P-MDL003V\DCP_ud\2015\" -Recurse -File)
+ Write-Host "$($servers[$i]) Outgoing\DCP_ud\2015: $($files.Count)"
+
+ $files = @(Get-ChildItem -Path "\\$($servers[$i])\D-Drive\IFSBOData\FSV\Incoming\DCP_ud\2015\" -Recurse -File)
+ Write-Host "$($servers[$i]) Incoming\DCP_ud\2015: $($files.Count)"
+
+ $files = @(Get-ChildItem -Path "\\$($servers[$i])\D-Drive\IFSBOData\FSV\Incoming\DCP_ud\" -File)
+ Write-Host "$($servers[$i]) Incoming\DCP_ud\: $($files.Count)"
+ }
+
+ Write-Host "-----"
+ }
+}
+
+function Start-FSVScanMDL {
+
+ Clear-Host
+ Write-Host ""
+ Write-Host ""
+ Write-Host ""
+ Write-Host ""
+ Write-Host ""
+ Write-Host ""
+ Write-Host ""
+ Write-Host ""
+ Write-Host ""
+ Write-Host ""
+
+ $server = "REJK-P-MDL001"
+
+ while($true) {
+
+ Write-Progress -Activity "Scanning MDL" -Status $server
+
+ $files = @(Get-ChildItem -Path "\\$server\D-Drive\IFSBOData\FSV\Incoming\DCP_ud\2015\" -Recurse -File)
+ Write-Host "$server Incoming\DCP_ud\2015: $($files.Count)"
+
+ $files = @(Get-ChildItem -Path "\\$server\D-Drive\IFSBOData\FSV\Incoming\DCP_ud\" -File)
+ Write-Host "$server Incoming\DCP_ud\: $($files.Count)"
+
+ sleep -Seconds 10
+
+ Write-Host "-----"
+ }
+}
+
+function Start-FSVScanTCS {
+ Clear-Host
+ Write-Host ""
+ Write-Host ""
+ Write-Host ""
+ Write-Host ""
+ Write-Host ""
+ Write-Host ""
+ Write-Host ""
+ Write-Host ""
+ Write-Host ""
+ Write-Host ""
+
+ while($true) {
+
+ $servers = @"
+REJK-P-TCS001
+REJK-P-TCS003
+REJK-P-TCS005
+REJK-P-TCS007
+REJK-P-TCS009
+REJK-P-TCS011
+REJK-P-TCS013
+REJK-P-TCS015
+REJK-P-TCS017
+"@.split("`r`n")
+
+ for($i = 0; $i -lt $servers.Count; $i++) {
+ Write-Progress -Activity "Scanning TCS" -Status $servers[$i] -PercentComplete ($i / $servers.Count * 100)
+
+ $files = @(Get-ChildItem -Path "\\$($servers[$i])\D-Drive\IFSBOData\FSV\Outgoing\REJK-P-MDL003V\DCP_ud\2015\" -Recurse -File)
+ Write-Host "$($servers[$i]) Outgoing\DCP_ud\2015: $($files.Count)"
+ }
+
+ sleep -Seconds 10
+
+ Write-Host "-----"
+ }
+}
\ No newline at end of file
diff --git a/Dennis_Scripts/FTPoverTLS.ps1 b/Dennis_Scripts/FTPoverTLS.ps1
new file mode 100644
index 0000000..13e9384
--- /dev/null
+++ b/Dennis_Scripts/FTPoverTLS.ps1
@@ -0,0 +1,29 @@
+& {
+ $request = [System.Net.FtpWebRequest]::Create('ftp://ftp.cpr.dk:321/ud')
+
+ $request.EnableSsl = $true
+
+ $request.Credentials = New-Object System.Net.NetworkCredential 'WREJKOR','Skum@be666'
+
+ $request.Method = 'NLST'
+
+ #$sp = $request.ServicePoint
+ #$sp.ConnectionLimit = 1
+
+ $response = [System.Net.FtpWebResponse]$request.GetResponse()
+
+ $responseStream = $response.GetResponseStream()
+
+ $readStream = New-Object System.IO.StreamReader( $responseStream, [System.Text.Encoding]::UTF8 )
+
+ if($readStream -ne $null) {
+
+ $readStream.ReadToEnd()
+
+ }
+
+ $readStream.Close()
+
+ $response.Close()
+}
+
diff --git a/Dennis_Scripts/Find duplicates.ps1 b/Dennis_Scripts/Find duplicates.ps1
new file mode 100644
index 0000000..3d0b7c2
--- /dev/null
+++ b/Dennis_Scripts/Find duplicates.ps1
@@ -0,0 +1,29 @@
+$select = Select-String -Path .\Reconciliation-NonPersistent-AX-510-20151119-H.xml -Pattern '(.*?)<\/OrderID>'
+
+$matches = foreach($s in $select) { $s.Matches.Groups[1].Value }
+
+$sorted = $matches | Sort-Object
+$unique = $matches | Sort-Object -Unique
+
+$lastIndex = 0
+$indexes = for($i = 0; $i -lt $unique.Count; $i++) {
+ if($i % 100) { Write-Progress -Activity 'Scanning' -Status "$i / $($unique.Count)" -PercentComplete ($i / $unique.Count * 100) }
+
+ $lastIndex = GetIndexOf -uniqueIndex $i -startIndex $lastIndex
+
+ Write-Output ([pscustomobject]@{
+ Index = $lastIndex
+ Value = $unique[$i]
+ Count = (GetIndexOf -uniqueIndex ($i+1) -startIndex $lastIndex) - $lastIndex
+ })
+}
+
+function GetIndexOf($uniqueIndex, $startIndex) {
+ for($i = $startIndex; $i -lt $sorted.Count; $i++) {
+ if($sorted[$i] -eq $unique[$uniqueIndex]) {
+ return $i;
+ }
+ }
+
+ return -1
+}
\ No newline at end of file
diff --git a/Dennis_Scripts/Find logfiles where filenames occur.ps1 b/Dennis_Scripts/Find logfiles where filenames occur.ps1
new file mode 100644
index 0000000..657975f
--- /dev/null
+++ b/Dennis_Scripts/Find logfiles where filenames occur.ps1
@@ -0,0 +1,12 @@
+$date = 'September 22, 2015'
+$filenamelist = '1A00021K.024','1A00021K.024','1A00021K.024','1A00021K.024','1A00021K.025','1A00021K.025','1A00021K.026','1A00021K.027'
+
+$items = get-item *
+$items = $items | where { $_.lastwritetime -gt (get-date $date) }
+foreach($item in $items) {
+ $content = Get-Content -path $item.FullName;
+ foreach($filename in $filenamelist) {
+ if($content -match $filename) { write-host "$($item.Name) has $filename" }
+ }
+}
+
diff --git a/Dennis_Scripts/FindCardClosureCards.ps1 b/Dennis_Scripts/FindCardClosureCards.ps1
new file mode 100644
index 0000000..aebd82e
--- /dev/null
+++ b/Dennis_Scripts/FindCardClosureCards.ps1
@@ -0,0 +1,35 @@
+$data = @"
+3084302012306380
+3084302012306711
+3084302012309459
+3084302012309475
+3084302012309509
+3084302012309525
+3084302012309574
+"@
+
+$cards = $data.Split("`r`n", [System.StringSplitOptions]::RemoveEmptyEntries)
+
+foreach($card in $cards ) {
+ Write-Verbose -Verbose "Processing $card"
+
+ $pattern1 = $card.Substring('308430'.Length)
+ $pattern1 = $pattern1.Remove($pattern1.Length-1, 1)
+
+ $pattern2 = ""
+ for($i = 0; $i -lt $pattern1.Length; $i++) {
+ $pattern2 += $pattern1[$i]
+ if($i -ne 0 -and ($i+1) % 3 -eq 0) {
+ $pattern2 += " "
+ }
+ }
+
+ $items = Get-Item "\\rejk-p-bcm001\d-drive\ifsbosystem\log\CardClosure*"
+ Write-Verbose -Verbose "Processing $($items.Count) items"
+ $items | Select-String -Pattern $pattern1
+ $items | Select-String -Pattern $pattern2
+
+ $items = Get-Item "\\rejk-p-bcm002\d-drive\ifsbosystem\log\CardClosure*"
+ $items | Select-String -Pattern $pattern1
+ $items | Select-String -Pattern $pattern2
+}
\ No newline at end of file
diff --git a/Dennis_Scripts/FindMissingTransactionsInSQL.ps1 b/Dennis_Scripts/FindMissingTransactionsInSQL.ps1
new file mode 100644
index 0000000..6940823
--- /dev/null
+++ b/Dennis_Scripts/FindMissingTransactionsInSQL.ps1
@@ -0,0 +1,177 @@
+$csv = Import-Csv -Delimiter ';' -Path "\\client\c$\Users\m.nielsen\Documents\Thales\SV1612090061\data.csv"
+
+$group = $csv | group CardEngravedID
+
+$sqlConnection = new-object System.Data.SqlClient.SqlConnection
+$sqlConnection.ConnectionString = 'Server=rejk-p-sql003\sql01;Database=AfcCookedIFSv2;Trusted_Connection=True;'
+$sqlConnection.Open()
+$sqlCommand = $sqlConnection.CreateCommand()
+
+$missingATSN = New-Object System.Collections.Generic.List`[int`]
+$foundATSN = New-Object System.Collections.Generic.List`[int`]
+$missingTransactions = New-Object System.Collections.Generic.List`[object`]
+$foundTransactions = New-Object System.Collections.Generic.List`[object`]
+
+$i = 0
+foreach($entry in $group) {
+ $i++
+
+ Write-Progress -Activity 'Looking' -Status "$i / $($group.Count)" -PercentComplete ($i * 100 / $group.Count)
+
+ if($entry.Group[0].KnownTransactionID -lt 0) { continue }
+
+ Write-Verbose "New entry:$($entry.Name)"
+
+ [int]$maxATSN = 0
+ [int]$minATSN = [int32]::MaxValue
+
+ $missingATSN.Clear()
+ $foundATSN.Clear()
+
+ foreach($item in $entry.Group) {
+ Write-Verbose ". New item - MissingATSN:$($item.MissingATSN) KnownTransactionID:$($item.KnownTransactionID)"
+
+ if([int]$item.MissingATSN -gt $maxATSN) {
+ $maxATSN = [int]$item.MissingATSN
+ }
+
+ if([int]$item.MissingATSN -lt $minATSN) {
+ $minATSN = [int]$item.MissingATSN
+ }
+
+ $missingATSN.Add([int]$item.MissingATSN)
+ }
+
+
+ ##
+ Write-verbose "Missing ATSN:$(($missingATSN | sort) -join ', ')"
+ Write-Verbose "Finding CardEngravedID:$($entry.Name) ATSN BETWEEN $minATSN AND $maxATSN in ObjTransaction"
+
+ $sqlCommand.CommandText = @"
+select t.TransactionID, t.ApplicationTransactionSequenceNumber as ATSN, t.TransactionMediaLastDeviceID as LastDeviceID, t.DeviceID, t.MsgReportDate from trk.objtransaction t with(readuncommitted)
+where t.CardEngravedID = $($entry.Name)
+ and t.ApplicationTransactionSequenceNumber between $minATSN and $maxATSN
+order by t.ApplicationTransactionSequenceNumber
+"@
+
+ $foundCount = 0
+
+ try {
+ $reader = $sqlCommand.ExecuteReader()
+
+ if($reader.HasRows) {
+ while($reader.Read()) {
+
+ $msgReportDate = $reader['MsgReportDate']
+ $transactionID = $reader['TransactionID']
+ $ATSN = $reader['ATSN']
+ $lastDeviceID = $reader['LastDeviceID']
+ $deviceID = $reader['DeviceID']
+
+ if($missingATSN -contains $ATSN) {
+ Write-Verbose ". Found transaction - T.ID:$transactionID MRD:$msgReportDate ATSN:$ATSN DeviceID:$deviceID LastDeviceID:$lastDeviceID - Unexpected, supposed to be missing?"
+ $foundCount++
+ if(-not ($missingATSN.Remove([int]$ATSN))) {
+ Write-Warning "Couldn't remove ATSN:$ATSN from MissingATSN:$($missingATSN -join ', ')"
+ }
+
+ $foundATSN.Add([int]$ATSN)
+ $foundTransactions.Add(
+ [pscustomobject]@{
+ TransactionID = $transactionID
+ CardEngravedID = $entry.Name
+ ATSN = $ATSN
+ MsgReportDate = $msgReportDate
+ DeviceID = $deviceID
+ LastDeviceID = $lastDeviceID
+
+ Exception = $false
+ ExceptionText = $null
+ TransactionExceptionID = $null
+ }
+ )
+ }
+ else {
+ Write-Verbose ". Ignoring $ATSN"
+ }
+ }
+ }
+ }
+ finally {
+ $reader.Close()
+ }
+
+
+ Write-Verbose "Finding CardEngravedID:$($entry.Name) ATSN BETWEEN $minATSN AND $maxATSN in ObjTransactionException"
+
+ $sqlCommand.CommandText = @"
+select te.TransactionID, te.TransactionExceptionID, te.ApplicationTransactionSequenceNumber as ATSN, te.TransactionMediaLastDeviceID as LastDeviceID, te.DeviceID, te.MsgReportDate, te.ExceptionText
+from dcp.ObjTransactionException te with(readuncommitted)
+where te.CardEngravedID = $($entry.Name)
+ and te.ApplicationTransactionSequenceNumber between $minATSN and $maxATSN
+order by te.ApplicationTransactionSequenceNumber
+"@
+
+ $exceptionCount = 0
+
+ try {
+ $reader = $sqlCommand.ExecuteReader()
+
+ if($reader.HasRows) {
+ while($reader.Read()) {
+
+ $transactionID = $reader['TransactionID']
+ $transactionExceptionID = $reader['TransactionExceptionID']
+ $ATSN = $reader['ATSN']
+ $lastDeviceID = $reader['LastDeviceID']
+ $deviceID = $reader['DeviceID']
+ $msgReportDate = $reader['MsgReportDate']
+ $exceptionText = $reader['ExceptionText']
+
+ if($missingATSN -contains $ATSN) {
+ Write-Verbose "Found exception - T.ID:$transactionID TEID:$transactionExceptionID MRD:$msgReportDate ATSN:$ATSN DeviceID:$deviceID LastDeviceID:$lastDeviceID - ExceptionText:$exceptionText"
+ $exceptionCount++
+ if(-not ($missingATSN.Remove([int]$ATSN))) {
+ Write-Warning "Couldn't remove ATNS:$ATSN from List:$($missingATSN -join ', ')"
+ }
+
+ $foundATSN.Add([int]$ATSN)
+ $foundTransactions.Add(
+ [pscustomobject]@{
+ TransactionID = $transactionID
+ CardEngravedID = $entry.Name
+ ATSN = $ATSN
+ MsgReportDate = $msgReportDate
+ DeviceID = $deviceID
+ LastDeviceID = $lastDeviceID
+
+ Exception = $true
+ ExceptionText = $exceptionText
+ TransactionExceptionID = $transactionExceptionID
+ }
+ )
+ }
+ }
+ }
+ }
+ finally {
+ $reader.Close()
+ }
+
+
+ Write-Verbose "Found $($foundCount + $exceptionCount) transactions for CardEngravedID:$($entry.Name) ATSN BETWEEN $minATSN AND $maxATSN` - FoundATSN:$($foundATSN -join ', ')"
+
+ if($missingATSN.Count -gt 0) {
+ Write-Warning "CardEngravedID:$($entry.Name) StartATSN:$minATSN EndATSN:$maxATSN Missing ATSN:$($missingATSN -join ', ')"
+
+ foreach($ATSN in $missingATSN) {
+ $missingTransactions.Add(
+ [pscustomobject]@{
+ CardEngravedID = $entry.Name
+ ATSN = $ATSN
+ }
+ )
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/Dennis_Scripts/Get-ADComputers.ps1 b/Dennis_Scripts/Get-ADComputers.ps1
new file mode 100644
index 0000000..749b2dc
--- /dev/null
+++ b/Dennis_Scripts/Get-ADComputers.ps1
@@ -0,0 +1,20 @@
+$domain = $env:userdomain
+$domain = "dc=$domain,dc=local"
+$serverfilter = "{0}*" -f $env:COMPUTERNAME.Substring(0, 'REJK-x-'.Length)
+
+$de = [ADSI] "LDAP://$domain"
+$ds = [adsisearcher] $de
+$ds.Filter = "(&(objectClass=computer)(name=$serverfilter)(!(description=Failover*)))"
+$searchResult = $ds.FindAll()
+$servers = foreach($sr in $searchResult) { $sr.Properties['name'][0] }
+$serverip = @{}
+foreach($s in $servers) {
+ $serverip[$s] = [System.Net.Dns]::GetHostByName($s).AddressList[0].IPAddressToString
+}
+$ds.Filter = "(&(objectClass=computer)(name=$serverfilter)(description=Failover*))"
+$searchResult = $ds.FindAll()
+$clusters = foreach($sr in $searchResult) { $sr.Properties['name'][0] }
+
+
+
+#$servers | where { $_ -match 'bcm' -or $_ -match 'sps' } | % { "$_ - $($serverip[$_])" }
\ No newline at end of file
diff --git a/Dennis_Scripts/Get-BCMExportStatus.ps1 b/Dennis_Scripts/Get-BCMExportStatus.ps1
new file mode 100644
index 0000000..6467c56
--- /dev/null
+++ b/Dennis_Scripts/Get-BCMExportStatus.ps1
@@ -0,0 +1,24 @@
+$process = Get-Process -Name "Batches_Export2DataWH" -ErrorAction SilentlyContinue
+$processCount = ($process | Measure-Object).Count
+if($processCount -gt 1) {
+ Write-Warning "Too many ($processCount) processes found with name 'BATCHES_Export2DataWH'"
+}
+elseif($processCount -eq 0) {
+ Write-Warning "No process found with name 'BATCHES_Export2DataWH'"
+}
+else {
+ $logPath = "D:\IFSBOSystem\Log\BATCHES_Export2DataWH_$($process.Id).log"
+
+ if(-not (Test-Path -Path $logPath)) { Write-Warning "Could not find logfile for process id $($process.Id) 'BATCHES_Export2DataWH_$($process.Id).log" }
+ else {
+ $content = Get-Content -Path $logPath
+ $lastLine = $content | Select-Object -Last 1
+
+ if($lastLine -notmatch 'BATCHES_DATA_EXPORT_STEP_END in package BATCHES : agentName = , arg1 = NonPersistent') {
+ Write-Warning "Export is running"
+ }
+ else {
+ Write-Warning "Export is complete"
+ }
+ }
+}
\ No newline at end of file
diff --git a/Dennis_Scripts/Get-Connections.ps1 b/Dennis_Scripts/Get-Connections.ps1
new file mode 100644
index 0000000..a6ab7b8
--- /dev/null
+++ b/Dennis_Scripts/Get-Connections.ps1
@@ -0,0 +1,83 @@
+function Get-Connections {
+
+ [CmdletBinding()]
+ param(
+ [Parameter(Mandatory)][string[]]$Server
+ )
+
+
+ foreach($currentServer in $Server) {
+ #$ipaddresslist = [System.Net.Dns]::GetHostByName($server).AddressList | Select-Object -ExpandProperty IPAddressToString
+ Write-Verbose "Invoke-Command Get-WmiObject Win32_NetworkAdapterConfiguration"
+ $networkadapterconfiguration = Invoke-Command -ComputerName $currentServer -ScriptBlock { Get-WmiObject -Class Win32_NetworkAdapterConfiguration }
+ $ipaddresslist = foreach($adapter in $networkadapterconfiguration) {
+ if(-not $adapter.IPAddress) {
+ Write-Verbose "$($adapter.Description) IPAddress `$null"
+ continue
+ }
+
+ foreach($entry in $adapter.IPAddress) {
+ Write-Verbose "$($adapter.Description) IPAddress $entry"
+ Write-Output $entry
+ }
+ }
+ $ipaddresslist += '[::]','0.0.0.0','127.0.0.1'
+
+ Write-Verbose "Invoke-Command netstat -na"
+ $netstat = Invoke-Command -ComputerName $currentServer -ScriptBlock { netstat -na }
+ Write-Verbose "Result:`n$netstat"
+
+ foreach($line in $netstat) {
+ $str = $line.Trim() -replace " +", " "
+ Write-Verbose "Processing: $str"
+
+ if(-not $str.StartsWith("TCP")) {
+ Write-Verbose "'$str' is not TCP"
+ continue
+ }
+
+ $split = $str.Split(' ')
+ #[0] protocol
+ #[1] source:port
+ #[2] destination:port
+ #[3] state
+
+ if(-not $split[1].StartsWith('[')) { #IPv6
+ $source = $split[1].Split(':')
+ }
+ else {
+ $index = $split[1].IndexOf(']') + 1
+ $source = @(
+ $split[1].Substring(0, $index)
+ $split[1].Substring($index + 1)
+ )
+ }
+ #[0] ip
+ #[1] port
+
+ if(-not $split[2].StartsWith('[')) { #IPv6
+ $destination = $split[2].Split(':')
+ }
+ else {
+ $index = $split[1].IndexOf(']') + 1
+ $destination = @(
+ $split[2].Substring(0, $index)
+ $split[2].Substring($index + 1)
+ )
+ }
+ #[0] ip
+ #[1] port
+
+ Write-Output ([pscustomobject]@{
+ Server = $currentServer.ToUpper()
+ SourceIP = $source[0]
+ SourcePort = $source[1]
+ DestinationIP = $destination[0]
+ DestinationPort = $destination[1]
+ ServerIsSource = ($ipaddresslist -contains $source[0])
+ ServerIsDestination = ($ipaddresslist -contains $destination[0])
+ ConnectionState = $split[3]
+ })
+ }
+ }
+}
\ No newline at end of file
diff --git a/Dennis_Scripts/Get-DeviceTransactions.ps1 b/Dennis_Scripts/Get-DeviceTransactions.ps1
new file mode 100644
index 0000000..1800796
--- /dev/null
+++ b/Dennis_Scripts/Get-DeviceTransactions.ps1
@@ -0,0 +1,540 @@
+$devices = @"
+DeviceId FromDate ToDate
+0x13C71C 2016-12-18 2016-12-18
+0x13C6C0 2016-12-18 2016-12-18
+0x1389F4 2016-12-18 2016-12-18
+0x1389B0 2016-12-18 2016-12-18
+0x13C6DE 2016-12-18 2016-12-18
+0x13CABB 2016-12-18 2016-12-18
+0x13C6A9 2016-12-18 2016-12-18
+0x138A1A 2016-12-18 2016-12-18
+0x13CB87 2016-12-18 2016-12-18
+0x138A0A 2016-12-18 2016-12-18
+0x1393CE 2016-12-10 2016-12-18
+0x138951 2016-12-18 2016-12-18
+0x13F401 2016-12-18 2016-12-18
+0x13CB8A 2016-12-18 2016-12-18
+0x13C715 2016-12-18 2016-12-18
+0x13D024 2016-12-09 2016-12-18
+0x13CF4D 2016-12-09 2016-12-18
+0x138905 2016-12-10 2016-12-18
+0x13CF55 2016-12-18 2016-12-18
+0x138A04 2016-12-18 2016-12-18
+0x13891F 2016-12-18 2016-12-18
+0x13C89A 2016-12-18 2016-12-18
+0x13F431 2016-12-18 2016-12-18
+0x13D2AE 2016-12-09 2016-12-18
+0x13F5FA 2016-12-18 2016-12-18
+0x13893D 2016-12-18 2016-12-18
+0x1389FF 2016-12-18 2016-12-18
+0x139DB1 2016-12-18 2016-12-18
+0x13CC95 2016-12-18 2016-12-18
+0x138911 2016-12-18 2016-12-18
+0x138909 2016-12-18 2016-12-18
+0x13C6E2 2016-12-18 2016-12-18
+0x1389A7 2016-12-09 2016-12-18
+0x13C5AE 2016-12-18 2016-12-18
+0x13C934 2016-12-18 2016-12-18
+0x13C7A8 2016-12-18 2016-12-18
+0x13F4C2 2016-12-18 2016-12-18
+0x139293 2016-12-09 2016-12-18
+0x13F5F9 2016-12-18 2016-12-18
+0x13CD10 2016-12-18 2016-12-18
+0x138996 2016-12-18 2016-12-18
+0x13935C 2016-12-18 2016-12-18
+0x13C5CD 2016-12-18 2016-12-18
+0x13D19B 2016-12-18 2016-12-18
+0x13D1A8 2016-12-18 2016-12-18
+0x13F49D 2016-12-18 2016-12-18
+0x138918 2016-12-09 2016-12-18
+0x13CF6D 2016-12-18 2016-12-18
+0x1392F5 2016-12-18 2016-12-18
+0x138900 2016-12-09 2016-12-18
+0x138900 2016-12-09 2016-12-18
+0x1391CE 2016-12-09 2016-12-18
+0x13C6FB 2016-12-18 2016-12-18
+0x138900 2016-12-09 2016-12-18
+0x138900 2016-12-09 2016-12-18
+0x139D01 2016-12-18 2016-12-18
+0x13C741 2016-12-18 2016-12-18
+0x13C650 2016-12-09 2016-12-18
+0x13F765 2016-12-18 2016-12-18
+0x13893C 2016-12-09 2016-12-16
+0x1389EA 2016-12-18 2016-12-18
+0x13CF33 2016-12-18 2016-12-18
+0x13C615 2016-12-18 2016-12-18
+0x13C7AB 2016-12-18 2016-12-18
+0x13F32A 2016-12-18 2016-12-18
+0x13934A 2016-12-18 2016-12-18
+0x138962 2016-12-18 2016-12-18
+0x13CBE7 2016-12-18 2016-12-18
+0x139CF7 2016-12-18 2016-12-18
+0x13935F 2016-12-18 2016-12-18
+0x13F79D 2016-12-18 2016-12-18
+0x13C7F2 2016-12-18 2016-12-18
+0x138915 2016-12-10 2016-12-18
+0x138907 2016-12-18 2016-12-18
+0x13F5ED 2016-12-18 2016-12-18
+0x1389B3 2016-12-18 2016-12-18
+0x13F5F0 2016-12-18 2016-12-18
+0x13898B 2016-12-18 2016-12-18
+0x13D1E3 2016-12-18 2016-12-18
+0x13CAAD 2016-12-09 2016-12-18
+0x13F4C8 2016-12-18 2016-12-18
+0x13F48A 2016-12-18 2016-12-18
+0x13928E 2016-12-18 2016-12-18
+0x1389D0 2016-12-18 2016-12-18
+0x13D1AA 2016-12-18 2016-12-18
+0x13C571 2016-12-18 2016-12-18
+0x13D022 2016-12-18 2016-12-18
+0x13F58F 2016-12-18 2016-12-18
+0x13CF20 2016-12-09 2016-12-18
+0x1389CD 2016-12-13 2016-12-18
+0x138916 2016-12-18 2016-12-18
+0x13CBDE 2016-12-18 2016-12-18
+0x13C8E0 2016-12-18 2016-12-18
+0x1389C3 2016-12-09 2016-12-18
+0x139D25 2016-12-18 2016-12-18
+0x13CFEC 2016-12-09 2016-12-18
+0x13F4F3 2016-12-18 2016-12-18
+0x139237 2016-12-18 2016-12-18
+0x13F740 2016-12-18 2016-12-18
+0x13C626 2016-12-18 2016-12-18
+0x13CD3C 2016-12-18 2016-12-18
+0x13892D 2016-12-09 2016-12-12
+0x13F342 2016-12-18 2016-12-18
+0x13C5D6 2016-12-09 2016-12-18
+0x139171 2016-12-09 2016-12-18
+0x13C765 2016-12-18 2016-12-18
+0x139CB7 2016-12-18 2016-12-18
+0x13CD02 2016-12-18 2016-12-18
+0x13CCEB 2016-12-18 2016-12-18
+0x13F3AD 2016-12-18 2016-12-18
+0x139D38 2016-12-18 2016-12-18
+0x13F425 2016-12-18 2016-12-18
+0x13F405 2016-12-18 2016-12-18
+0x13893F 2016-12-18 2016-12-18
+0x13C7B4 2016-12-18 2016-12-18
+0x13F40A 2016-12-18 2016-12-18
+0x13F544 2016-12-18 2016-12-18
+0x13CCA1 2016-12-18 2016-12-18
+0x13C708 2016-12-18 2016-12-18
+0x139206 2016-12-18 2016-12-18
+0x13C604 2016-12-18 2016-12-18
+0x131F38 2016-12-09 2016-12-09
+0x13895C 2016-12-18 2016-12-18
+0x13C7B6 2016-12-18 2016-12-18
+0x138949 2016-12-18 2016-12-18
+0x1392FC 2016-12-18 2016-12-18
+0x13937A 2016-12-18 2016-12-18
+0x13F36D 2016-12-18 2016-12-18
+0x13F61E 2016-12-18 2016-12-18
+0x13F72E 2016-12-18 2016-12-18
+0x138923 2016-12-18 2016-12-18
+0x13CB7B 2016-12-09 2016-12-09
+0x13CC06 2016-12-09 2016-12-18
+0x13C55D 2016-12-18 2016-12-18
+0x13F553 2016-12-18 2016-12-18
+0x13CBFA 2016-12-18 2016-12-18
+0x13CF82 2016-12-09 2016-12-18
+0x13F502 2016-12-18 2016-12-18
+0x13C86D 2016-12-18 2016-12-18
+0x13C6DF 2016-12-18 2016-12-18
+0x139176 2016-12-10 2016-12-18
+0x139296 2016-12-18 2016-12-18
+0x139409 2016-12-12 2016-12-14
+0x13C873 2016-12-18 2016-12-18
+0x13CF5E 2016-12-18 2016-12-18
+0x138953 2016-12-18 2016-12-18
+0x13F744 2016-12-18 2016-12-18
+0x138952 2016-12-18 2016-12-18
+0x13C6B2 2016-12-09 2016-12-12
+0x13C613 2016-12-18 2016-12-18
+0x13C7BD 2016-12-18 2016-12-18
+0x13F42C 2016-12-18 2016-12-18
+0x13F299 2016-12-18 2016-12-18
+0x139CAB 2016-12-18 2016-12-18
+0x13F435 2016-12-18 2016-12-18
+0x13C771 2016-12-18 2016-12-18
+0x13CC17 2016-12-18 2016-12-18
+0x13CC99 2016-12-18 2016-12-18
+0x13CBCC 2016-12-18 2016-12-18
+0x138A11 2016-12-18 2016-12-18
+0x138924 2016-12-18 2016-12-18
+0x138960 2016-12-18 2016-12-18
+0x1389E5 2016-12-18 2016-12-18
+0x13D290 2016-12-18 2016-12-18
+0x13D297 2016-12-14 2016-12-18
+0x1392AE 2016-12-18 2016-12-18
+0x13C93E 2016-12-18 2016-12-18
+0x13D1E4 2016-12-09 2016-12-18
+0x13F6A1 2016-12-18 2016-12-18
+0x13CFEB 2016-12-18 2016-12-18
+0x13C924 2016-12-18 2016-12-18
+0x139246 2016-12-18 2016-12-18
+0x13CAAE 2016-12-18 2016-12-18
+0x13F4C4 2016-12-18 2016-12-18
+0x13F2E3 2016-12-18 2016-12-18
+0x13C8B2 2016-12-18 2016-12-18
+0x13F77F 2016-12-18 2016-12-18
+0x13C603 2016-12-18 2016-12-18
+0x13C89B 2016-12-18 2016-12-18
+0x13F664 2016-12-18 2016-12-18
+0x138969 2016-12-10 2016-12-11
+0x13F771 2016-12-18 2016-12-18
+0x13942C 2016-12-10 2016-12-18
+0x13CB43 2016-12-09 2016-12-10
+0x13D234 2016-12-18 2016-12-18
+0x13D1FE 2016-12-18 2016-12-18
+0x13CAB9 2016-12-18 2016-12-18
+0x13C886 2016-12-18 2016-12-18
+0x139212 2016-12-18 2016-12-18
+0x13F668 2016-12-18 2016-12-18
+0x13F542 2016-12-18 2016-12-18
+0x13C769 2016-12-12 2016-12-18
+0x13D20A 2016-12-09 2016-12-18
+0x13CAB0 2016-12-18 2016-12-18
+0x13F442 2016-12-18 2016-12-18
+0x1389FA 2016-12-18 2016-12-18
+0x13F3DD 2016-12-18 2016-12-18
+0x13C69E 2016-12-18 2016-12-18
+0x13F7AC 2016-12-18 2016-12-18
+0x13CF52 2016-12-18 2016-12-18
+0x13C927 2016-12-18 2016-12-18
+0x139345 2016-12-18 2016-12-18
+0x13CC8D 2016-12-18 2016-12-18
+0x13D164 2016-12-18 2016-12-18
+0x13CC21 2016-12-18 2016-12-18
+0x13D254 2016-12-18 2016-12-18
+0x138930 2016-12-18 2016-12-18
+0x1389C4 2016-12-18 2016-12-18
+0x13CB67 2016-12-18 2016-12-18
+0x13F5C7 2016-12-18 2016-12-18
+0x13CBE8 2016-12-09 2016-12-09
+0x139331 2016-12-18 2016-12-18
+0x139284 2016-12-18 2016-12-18
+0x13F552 2016-12-18 2016-12-18
+0x13F45B 2016-12-18 2016-12-18
+0x13F742 2016-12-18 2016-12-18
+0x13CD57 2016-12-18 2016-12-18
+0x13C7E3 2016-12-09 2016-12-09
+0x13C946 2016-12-18 2016-12-18
+0x13939C 2016-12-18 2016-12-18
+0x13CC0E 2016-12-18 2016-12-18
+0x13CD7A 2016-12-18 2016-12-18
+0x13F2BD 2016-12-18 2016-12-18
+0x13C663 2016-12-18 2016-12-18
+0x13F475 2016-12-18 2016-12-18
+0x13CCE7 2016-12-18 2016-12-18
+0x13CD6E 2016-12-18 2016-12-18
+0x13CD1F 2016-12-18 2016-12-18
+0x1392EC 2016-12-18 2016-12-18
+0x13F34E 2016-12-18 2016-12-18
+0x13943E 2016-12-18 2016-12-18
+0x13C84E 2016-12-18 2016-12-18
+0x138986 2016-12-09 2016-12-09
+0x1391C3 2016-12-18 2016-12-18
+0x13CCE1 2016-12-10 2016-12-10
+0x13D1DE 2016-12-18 2016-12-18
+0x13CC59 2016-12-18 2016-12-18
+0x13F64C 2016-12-18 2016-12-18
+0x13D251 2016-12-09 2016-12-09
+0x1388F5 2016-12-18 2016-12-18
+0x13C889 2016-12-11 2016-12-11
+0x13CF1E 2016-12-18 2016-12-18
+0x13F560 2016-12-18 2016-12-18
+0x13CF60 2016-12-18 2016-12-18
+0x13D1DB 2016-12-18 2016-12-18
+0x13CFFE 2016-12-18 2016-12-18
+0x13F79E 2016-12-18 2016-12-18
+0x13C6CF 2016-12-18 2016-12-18
+0x139D3E 2016-12-18 2016-12-18
+0x13F332 2016-12-18 2016-12-18
+0x139297 2016-12-18 2016-12-18
+0x13C4E2 2016-12-18 2016-12-18
+0x139C48 2016-12-18 2016-12-18
+0x13F4D9 2016-12-18 2016-12-18
+0x139453 2016-12-18 2016-12-18
+0x13899F 2016-12-09 2016-12-09
+0x138942 2016-12-09 2016-12-09
+0x13F623 2016-12-18 2016-12-18
+0x13892A 2016-12-09 2016-12-09
+0x13CD0C 2016-12-18 2016-12-18
+0x13899B 2016-12-18 2016-12-18
+0x1389EB 2016-12-18 2016-12-18
+0x13D033 2016-12-15 2016-12-15
+0x13F69D 2016-12-18 2016-12-18
+0x13D203 2016-12-18 2016-12-18
+0x13F653 2016-12-18 2016-12-18
+0x13F5D0 2016-12-18 2016-12-18
+0x13C538 2016-12-18 2016-12-18
+0x13C751 2016-12-09 2016-12-09
+0x1392D7 2016-12-18 2016-12-18
+0x13D189 2016-12-09 2016-12-09
+0x13D01D 2016-12-18 2016-12-18
+0x13F460 2016-12-18 2016-12-18
+0x13F540 2016-12-18 2016-12-18
+0x13C776 2016-12-09 2016-12-09
+0x13D218 2016-12-18 2016-12-18
+0x13F59C 2016-12-18 2016-12-18
+0x13F6B7 2016-12-18 2016-12-18
+0x13CB95 2016-12-18 2016-12-18
+0x13CB99 2016-12-18 2016-12-18
+0x13F570 2016-12-18 2016-12-18
+0x13C7F0 2016-12-18 2016-12-18
+0x139220 2016-12-18 2016-12-18
+0x13C8C8 2016-12-18 2016-12-18
+0x13C65A 2016-12-09 2016-12-09
+0x13C90E 2016-12-18 2016-12-18
+0x13CC9B 2016-12-18 2016-12-18
+0x13CC49 2016-12-18 2016-12-18
+0x139424 2016-12-18 2016-12-18
+0x1391BD 2016-12-18 2016-12-18
+0x13CF63 2016-12-18 2016-12-18
+0x13C67D 2016-12-18 2016-12-18
+0x13C668 2016-12-10 2016-12-10
+0x13F4F1 2016-12-18 2016-12-18
+0x13CFE3 2016-12-18 2016-12-18
+0x13C8BC 2016-12-18 2016-12-18
+0x13F6C9 2016-12-18 2016-12-18
+0x13F3D0 2016-12-18 2016-12-18
+0x13F466 2016-12-18 2016-12-18
+0x13F682 2016-12-18 2016-12-18
+0x13C65C 2016-12-18 2016-12-18
+0x139C73 2016-12-18 2016-12-18
+0x13F6B3 2016-12-18 2016-12-18
+0x13CF70 2016-12-18 2016-12-18
+0x1391BE 2016-12-18 2016-12-18
+0x13CFDB 2016-12-18 2016-12-18
+0x13F6D2 2016-12-18 2016-12-18
+0x13CAB5 2016-12-18 2016-12-18
+0x139D47 2016-12-18 2016-12-18
+0x13CCF5 2016-12-18 2016-12-18
+0x13C780 2016-12-18 2016-12-18
+0x13C6A5 2016-12-18 2016-12-18
+0x139C61 2016-12-09 2016-12-09
+0x13C6FA 2016-12-18 2016-12-18
+0x139201 2016-12-18 2016-12-18
+0x13CD3D 2016-12-18 2016-12-18
+0x13F739 2016-12-18 2016-12-18
+0x13F2CF 2016-12-18 2016-12-18
+0x13F420 2016-12-18 2016-12-18
+0x13D165 2016-12-18 2016-12-18
+0x13CD25 2016-12-18 2016-12-18
+0x13F489 2016-12-18 2016-12-18
+0x13C705 2016-12-18 2016-12-18
+0x13F37D 2016-12-18 2016-12-18
+0x13CB3B 2016-12-18 2016-12-18
+0x13C50B 2016-12-18 2016-12-18
+0x13C649 2016-12-18 2016-12-18
+0x13CD65 2016-12-18 2016-12-18
+0x13CF32 2016-12-18 2016-12-18
+0x139C6A 2016-12-18 2016-12-18
+0x13CBD7 2016-12-18 2016-12-18
+0x13CB8E 2016-12-18 2016-12-18
+0x138913 2016-12-18 2016-12-18
+0x138946 2016-12-18 2016-12-18
+0x138929 2016-12-13 2016-12-13
+0x13CC60 2016-12-18 2016-12-18
+0x138921 2016-12-18 2016-12-18
+0x1389C9 2016-12-12 2016-12-12
+0x138956 2016-12-18 2016-12-18
+0x138935 2016-12-18 2016-12-18
+0x138959 2016-12-18 2016-12-18
+0x13F67C 2016-12-18 2016-12-18
+0x13892C 2016-12-18 2016-12-18
+0x1388FF 2016-12-18 2016-12-18
+0x1389F9 2016-12-18 2016-12-18
+0x13C788 2016-12-18 2016-12-18
+0x13F445 2016-12-18 2016-12-18
+0x13D1D8 2016-12-18 2016-12-18
+0x13CF56 2016-12-10 2016-12-10
+0x13D269 2016-12-18 2016-12-18
+0x13D275 2016-12-12 2016-12-12
+0x13F516 2016-12-18 2016-12-18
+0x13CC92 2016-12-18 2016-12-18
+0x13C6FD 2016-12-12 2016-12-12
+0x13CCDC 2016-12-18 2016-12-18
+0x13D169 2016-12-18 2016-12-18
+0x13D1EC 2016-12-13 2016-12-13
+0x13C614 2016-12-18 2016-12-18
+0x13C81B 2016-12-18 2016-12-18
+0x139308 2016-12-18 2016-12-18
+0x13C79B 2016-12-18 2016-12-18
+0x13C8D8 2016-12-18 2016-12-18
+0x13D288 2016-12-18 2016-12-18
+0x13895E 2016-12-18 2016-12-18
+0x13CAAA 2016-12-18 2016-12-18
+0x1390FF 2016-12-18 2016-12-18
+0x13C52F 2016-12-18 2016-12-18
+0x13C5F7 2016-12-18 2016-12-18
+0x13C93F 2016-12-18 2016-12-18
+0x13D209 2016-12-18 2016-12-18
+0x13C540 2016-12-12 2016-12-12
+0x139CA4 2016-12-18 2016-12-18
+0x13F586 2016-12-18 2016-12-18
+0x13F3C9 2016-12-18 2016-12-18
+0x13CFFF 2016-12-18 2016-12-18
+0x13F5A8 2016-12-18 2016-12-18
+0x133569 2016-12-18 2016-12-18
+0x1389AF 2016-12-18 2016-12-18
+0x13CFC6 2016-12-18 2016-12-18
+0x1391EF 2016-12-18 2016-12-18
+0x13C8F5 2016-12-18 2016-12-18
+0x13CFA5 2016-12-09 2016-12-09
+0x13F532 2016-12-18 2016-12-18
+0x13944A 2016-12-18 2016-12-18
+0x13F5F6 2016-12-18 2016-12-18
+0x13F3CC 2016-12-18 2016-12-18
+0x13C8EE 2016-12-18 2016-12-18
+0x13931C 2016-12-18 2016-12-18
+0x13D1AE 2016-12-18 2016-12-18
+0x13D1EE 2016-12-18 2016-12-18
+0x13C837 2016-12-10 2016-12-10
+0x13C607 2016-12-18 2016-12-18
+0x13C839 2016-12-18 2016-12-18
+0x13F6AF 2016-12-18 2016-12-18
+0x13CB39 2016-12-18 2016-12-18
+0x13CC0A 2016-12-18 2016-12-18
+0x13C63A 2016-12-18 2016-12-18
+0x13C7C4 2016-12-18 2016-12-18
+0x13CD81 2016-12-18 2016-12-18
+0x13F3C3 2016-12-18 2016-12-18
+0x138944 2016-12-18 2016-12-18
+0x13CD13 2016-12-18 2016-12-18
+0x13CFCF 2016-12-17 2016-12-17
+0x1389B1 2016-12-09 2016-12-09
+0x13F6B1 2016-12-18 2016-12-18
+0x13893E 2016-12-18 2016-12-18
+0x13F48F 2016-12-18 2016-12-18
+0x13F732 2016-12-18 2016-12-18
+0x13D166 2016-12-18 2016-12-18
+0x13890A 2016-12-18 2016-12-18
+0x13C710 2016-12-18 2016-12-18
+0x13CF46 2016-12-18 2016-12-18
+0x13D1D0 2016-12-18 2016-12-18
+0x138991 2016-12-18 2016-12-18
+0x13F5EC 2016-12-18 2016-12-18
+0x13C72E 2016-12-18 2016-12-18
+0x13890B 2016-12-12 2016-12-12
+0x138964 2016-12-18 2016-12-18
+0x13897A 2016-12-09 2016-12-09
+0x13F488 2016-12-18 2016-12-18
+0x13C56C 2016-12-09 2016-12-09
+0x13C6E5 2016-12-18 2016-12-18
+0x13D299 2016-12-18 2016-12-18
+0x13C5C3 2016-12-18 2016-12-18
+0x13D2A5 2016-12-10 2016-12-10
+0x139CCB 2016-12-18 2016-12-18
+0x13CD0F 2016-12-18 2016-12-18
+0x13C737 2016-12-18 2016-12-18
+0x13C82B 2016-12-18 2016-12-18
+0x13C6EE 2016-12-18 2016-12-18
+0x13C890 2016-12-09 2016-12-09
+0x13CF7B 2016-12-09 2016-12-09
+0x13CCF2 2016-12-18 2016-12-18
+0x13C930 2016-12-10 2016-12-10
+0x13CC2A 2016-12-11 2016-12-11
+0x13C853 2016-12-09 2016-12-09
+0x13D20E 2016-12-15 2016-12-15
+0x13D185 2016-12-18 2016-12-18
+0x139149 2016-12-18 2016-12-18
+0x13CAAB 2016-12-18 2016-12-18
+0x1391A1 2016-12-18 2016-12-18
+0x13CC1D 2016-12-09 2016-12-09
+0x139D16 2016-12-11 2016-12-11
+0x139D74 2016-12-09 2016-12-09
+0x13CFDF 2016-12-11 2016-12-11
+0x13C72D 2016-12-09 2016-12-09
+0x13F484 2016-12-18 2016-12-18
+0x13C7EC 2016-12-18 2016-12-18
+0x1389A6 2016-12-18 2016-12-18
+0x13CCAF 2016-12-18 2016-12-18
+0x13D02C 2016-12-18 2016-12-18
+0x13C8FC 2016-12-18 2016-12-18
+0x13CCE6 2016-12-18 2016-12-18
+0x13C5D1 2016-12-18 2016-12-18
+0x13D237 2016-12-10 2016-12-10
+0x133250 2016-12-14 2016-12-14
+"@ | ConvertFrom-Csv -Delimiter "`t"
+
+Write-Progress -Activity 'Get-DeviceTransactions' -Status 'Connecting to SQL' -Id 1
+
+$sqlConnection = New-Object System.Data.SqlClient.SqlConnection
+$sqlConnection.ConnectionString = 'Server=rejk-p-sql020\sql02;Database=PDWH;Trusted_Connection=True;'
+$sqlConnection.Open()
+$sqlCommand = $sqlConnection.CreateCommand()
+$sqlCommand.CommandTimeout = 360
+
+$deviceCount = 1
+foreach($device in $devices) {
+
+ $deviceIdHex = $device.DeviceId
+ $startDate = $device.FromDate
+ $endDate = $device.ToDate
+
+ Write-Progress -Activity "Get-DeviceTransactions" -Status "Device $deviceIdHex" -PercentComplete (100 / $devices.Count * $deviceCount++) -Id 1
+
+
+ $sqlCommand.CommandText = "select FileCreationDate, FileHeaderTag, FileSequenceNumber from dcp.ObjFileInformation fi with(readuncommitted) where fi.deviceid = $deviceIdHex and cast(fi.FileCreationDate as date) between '$startDate' and '$endDate'"
+
+ Write-Progress -Activity "Get-DeviceTransactions" -Status "Executing SQL reader" -ParentId 1 -Id 2
+ $reader = $sqlCommand.ExecuteReader()
+
+ if(-not $reader.HasRows) {
+ Write-Warning "Query returned no data : $($sqlCommand.CommandText)"
+ }
+
+ $data = while($reader.Read()) {
+ [pscustomobject]@{
+ FileCreationDate = $reader['FileCreationDate']
+ FileHeaderTag = $reader['FileHeaderTag']
+ FileSequenceNumber = $reader['FileSequenceNumber']
+ }
+ }
+
+ $reader.Close()
+
+ Write-Debug "Found $($data.Count) rows"
+
+ foreach($group in ($data | group FileHeaderTag)) {
+
+ Write-Debug "Processing FileHeaderTag:$($group.Name) - $($group.Group.Count) rows"
+
+ $files = $group.Group | sort FileCreationDate
+ $fileList = $transactions | select -ExpandProperty FileSequenceNumber
+
+ $prevSequenceNumber = -2
+
+ $fileCount = 1
+ foreach($file in $files) {
+ Write-Progress -Activity 'Get-DeviceTransactions' -Status "Processing '$($file.FileSequenceNumber)' in group '$($group.Name)'" -PercentComplete (100 / $files.Count * $fileCount++) -ParentId 1 -Id 2
+
+ if($file.FileSequenceNumber -eq 0) {
+ Write-Debug "Rollover"
+ $prevSequenceNumber = -1
+ }
+
+ if(($prevSequenceNumber + 1) -ne $file.FileSequenceNumber) {
+ if($prevSequenceNumber -eq -2) { continue }
+
+ if($prevSequenceNumber -eq $file.FileSequenceNumber) {
+ Write-Debug "$prevSequenceNumber + 1: $($prevSequenceNumber + 1)"
+ Write-Debug "$($prevSequenceNumber + 1) -ne $($file.FileSequenceNumber): $($($prevSequenceNumber + 1) -ne $file.FileSequenceNumber)"
+ Write-Warning "Duplicate sequence: $prevSequenceNumber to $($file.FileSequenceNumber)"
+ }
+ else {
+ Write-Debug "$prevSequenceNumber + 1: $($prevSequenceNumber + 1)"
+ Write-Debug "$($prevSequenceNumber + 1) -ne $($file.FileSequenceNumber): $($($prevSequenceNumber + 1) -ne $file.FileSequenceNumber)"
+ Write-Warning "Sequence skip: $prevSequenceNumber to $($file.FileSequenceNumber)"
+ }
+ }
+
+ $prevSequenceNumber = $file.FileSequenceNumber
+ }
+
+ Write-Host "$deviceIdHex - $($group.Name) - Processed $($fileCount-1) files"
+ }
+}
+
+$sqlConnection.Close()
\ No newline at end of file
diff --git a/Dennis_Scripts/Get-Inspiration.ps1 b/Dennis_Scripts/Get-Inspiration.ps1
new file mode 100644
index 0000000..016448f
--- /dev/null
+++ b/Dennis_Scripts/Get-Inspiration.ps1
@@ -0,0 +1,46 @@
+ function Get-SwansonQuote {
+ param(
+ [int]$Level = 1
+ )
+
+ for($i = 0; $i -lt $level; $i++) {
+ try {
+ Write-Output (Invoke-RestMethod 'http://ron-swanson-quotes.herokuapp.com/v2/quotes' -Method Get).Trim()
+ }
+ catch {
+ Write-Warning "Failed attempt $i : $_"
+ }
+ }
+ }
+
+ function Talk-Back {
+ [CmdletBinding()]
+ param(
+ [Parameter(ValueFromPipeline)]
+ [string]$Quote
+ )
+ Begin {
+ Write-Verbose "Begin!"
+ $voice = New-Object -ComObject "SAPI.SPvoice"
+ }
+
+ Process {
+ Write-Verbose $quote
+ $voice.speak($Quote) | Out-Null
+ }
+
+ End {
+ Write-Verbose "End!"
+ Remove-Variable Voice
+ }
+ }
+
+ function Get-Inspiration {
+ param(
+ [int]$Count
+ )
+
+ Get-SwansonQuote -Level $Count | Talk-Back -Verbose
+ }
+
+ Get-Inspiration -Count 3
\ No newline at end of file
diff --git a/Dennis_Scripts/Get-LogAggregate.ps1 b/Dennis_Scripts/Get-LogAggregate.ps1
new file mode 100644
index 0000000..0261133
--- /dev/null
+++ b/Dennis_Scripts/Get-LogAggregate.ps1
@@ -0,0 +1,15 @@
+function Get-LogAggregate {
+ param(
+ [switch]$CWS,
+
+ [datetime]$FromDate = (Get-Date).AddDays(-7)
+ )
+
+
+ if($CWS) {
+ 5..8 | foreach { Get-Item "\\rejk-p-web00$_\d-drive\ifsbosystem\log\cws.log*" } | where { $_.LastWriteTime -gt $FromDate }
+ }
+}
+
+
+$logs = Get-LogAggregate -CWS
\ No newline at end of file
diff --git a/Dennis_Scripts/Get-RejkLogfiles.ps1 b/Dennis_Scripts/Get-RejkLogfiles.ps1
new file mode 100644
index 0000000..1afc4ba
--- /dev/null
+++ b/Dennis_Scripts/Get-RejkLogfiles.ps1
@@ -0,0 +1,102 @@
+function Search-RejkLogfiles {
+ param(
+ [switch]$APP,
+ [switch]$CWS,
+ [switch]$BORIS,
+ [switch]$BackOffice,
+ [switch]$TCS,
+ [switch]$TCF,
+ [switch]$API,
+
+ [int]$NewerThanDays = 3,
+
+ [string]$Pattern
+ )
+
+ $logs = Get-RejkLogfiles -API:$API -APP:$APP -CWS:$CWS -BORIS:$BORIS -BackOffice:$BackOffice -TCS:$TCS -TCF:$TCF -NewerThanDays:$NewerThanDays
+
+ $logs | Select-String -Pattern $Pattern | Sort-Object Line | Out-GridView -PassThru
+}
+
+
+
+function Get-RejkLogfiles {
+ param(
+ [switch]$APP,
+ [switch]$CWS,
+ [switch]$BORIS,
+ [switch]$BackOffice,
+ [switch]$TCS,
+ [switch]$TCF,
+ [switch]$API,
+
+ [int]$NewerThanDays = 3
+ )
+
+ if($NewerThanDays -gt 0) { $NewerThanDays *= -1 }
+
+ $platform = $env:COMPUTERNAME.Substring('REJK-'.Length, 1)
+ $postfix = & {
+ switch($platform) {
+ 'A' { '2{0:d2}' }
+ 'C' { '3{0:d2}' }
+ 'E' { '4{0:d2}' }
+ 'Q' { '1{0:d2}' }
+ 'P' { '0{0:d2}' }
+ }
+ }
+
+
+ $logs = & {
+ if($APP) {
+ 1..4 | % {
+ $server = ("rejk-$platform-app$postfix" -f $_)
+ Get-Item "\\$server\d-drive\ifsbosystem\log\*.log*"
+ }
+ }
+
+ if($CWS) {
+ 5..8 | % {
+ $server = ("rejk-$platform-web$postfix" -f $_)
+ Get-Item "\\$server\d-drive\ifsbosystem\log\*.log*"
+ }
+ }
+
+ if($BORIS) {
+ 3..4 | % {
+ $server = ("rejk-$platform-web$postfix" -f $_)
+ Get-Item "\\$server\d-drive\ifsbosystem\log\*.log*"
+ }
+ }
+
+ if($BackOffice) {
+ 1..2 | % {
+ $server = ("rejk-$platform-web$postfix" -f $_)
+ Get-Item "\\$server\d-drive\ifsbosystem\log\*.log*"
+ }
+ }
+
+ if($TCS) {
+ 1..18 | % {
+ $server = ("rejk-$platform-tcs$postfix" -f $_)
+ Get-Item "\\$server\d-drive\ifsbosystem\log\*.log*"
+ }
+ }
+
+ if($TCF) {
+ 1..2 | % {
+ $server = ("rejk-$platform-tcf$postfix" -f $_)
+ Get-Item "\\$server\d-drive\ifsbosystem\log\*.log*"
+ }
+ }
+
+ if($API) {
+ 1..2 | % {
+ $server = ("rejk-$platform-api$postfix" -f $_)
+ Get-Item "\\$server\d-drive\ifsbosystem\log\*.log*"
+ }
+ }
+ }
+
+ $logs | where { $_.LastWriteTime -gt (Get-Date).AddDays($NewerThanDays) }
+}
\ No newline at end of file
diff --git a/Dennis_Scripts/Get-WebLogs.ps1 b/Dennis_Scripts/Get-WebLogs.ps1
new file mode 100644
index 0000000..0c5b49c
--- /dev/null
+++ b/Dennis_Scripts/Get-WebLogs.ps1
@@ -0,0 +1,8 @@
+mkdir T:\m.nielsen\spam -ea silentlycontinue
+foreach($i in (5..8)) {
+ $items = get-item \\rejk-p-web00$i\d-drive\logfiles\w3svc1\*.log | where { $_.lastwritetime -ge (get-date 'august 22, 2016') }
+
+ foreach($item in $items) {
+ Copy-Item -Path $item.fullname -Destination "T:\m.nielsen\spam\web00$i.$($item.name)"
+ }
+}
\ No newline at end of file
diff --git a/Dennis_Scripts/GetDataFromSQL.ps1 b/Dennis_Scripts/GetDataFromSQL.ps1
new file mode 100644
index 0000000..36d0b12
--- /dev/null
+++ b/Dennis_Scripts/GetDataFromSQL.ps1
@@ -0,0 +1,62 @@
+$nums = Get-Content C:\users\ewpmni\desktop\cardnumbers.txt
+$ptos = Import-Csv C:\users\ewpmni\desktop\ptos.txt -Delimiter "`t" -Encoding UTF8
+
+$sqlConnection = New-Object System.Data.SqlClient.SqlConnection
+$sqlConnection.ConnectionString = 'Server=rejk-p-sql003\sql01;Database=AfcCookedIFSv2;Trusted_Connection=True;'
+$sqlConnection.Open()
+$sqlCommand = $sqlConnection.CreateCommand()
+$i = 1
+
+$result = foreach($num in $nums) {
+ Write-Progress -Activity 'SQL' -Status "$num - $i of $($nums.Count)" -PercentComplete (100 / $nums.Count * $i)
+ $i++
+
+ $sqlCommand.CommandText = @"
+ select top 5 r.enumeratorwording as EquipmentType, t.FileName as FileName, t.cardengravedid as CardEngravedID, t.messagereceptiondate as MessageReceptionDate, t.serviceproviderid as ServiceProviderID, t.contractorid as ContractorID, t.staffid as StaffID, t.deviceid as DeviceID from trk.objtransaction t with(readuncommitted)
+ inner join eqm.objequipment e with(readuncommitted) on (t.deviceid = e.deviceid)
+ inner join cmn.refconfiguration r with(readuncommitted) on (r.enumeratorkey = e.equipmenttypeid and r.enumeratordomain = 'EquipmentType' and r.languagecode = 'en-GB')
+
+ where t.CardEngravedID = $num
+
+ order by t.TransactionID desc
+"@
+
+ $reader = $sqlCommand.ExecuteReader()
+
+ if($reader.HasRows) {
+ while($reader.read()) {
+ $sid = $reader['ServiceProviderID']
+ $cid = $reader['ContractorID']
+
+ [pscustomobject]@{
+ CardEngravedID = $reader['CardEngravedID']
+ EquipmentType = $reader['EquipmentType']
+ FileName = $reader['FileName']
+ MessageReceptionDate = $reader['MessageReceptionDate']
+ ServiceProviderID = $reader['ServiceProviderID']
+ ContractorID = $reader['ContractorID']
+ StaffID = $reader['StaffID']
+ DeviceID = $reader['DeviceID']
+ Contractor = ($ptos | where { $_.ReferenceNumber -eq $cid }).LongName
+ ServiceProvider = ($ptos | where { $_.ReferenceNumber -eq $sid }).LongName
+ }
+ }
+ } else {
+ [pscustomobject]@{
+ CardEngravedID = $num
+ EquipmentType = ''
+ FileName = ''
+ MessageReceptionDate = ''
+ ServiceProviderID = ''
+ ContractorID = ''
+ StaffID = ''
+ DeviceID = ''
+ Contractor = ''
+ ServiceProvider = ''
+ }
+ }
+
+ $reader.Close()
+}
+
+$sqlConnection.Close()
\ No newline at end of file
diff --git a/Dennis_Scripts/GetEODZipFileFromDB.ps1 b/Dennis_Scripts/GetEODZipFileFromDB.ps1
new file mode 100644
index 0000000..0756edf
--- /dev/null
+++ b/Dennis_Scripts/GetEODZipFileFromDB.ps1
@@ -0,0 +1,14 @@
+$connection = New-Object System.Data.SqlClient.SqlConnection
+$connection.ConnectionString = 'Server=REJK-P-SQL003\SQL01;Database=BCM;Trusted_Connection=True;'
+$connection.Open()
+$command = $connection.CreateCommand()
+$command.CommandText = 'SELECT [XmlDocumentContent] FROM eod.ObjXmlDocument xd WITH (NOLOCK) WHERE [XmlDocumentID] = 12660'
+$result = $command.ExecuteReader()
+$result.Read()
+$blob = New-Object Byte[] ($result.GetBytes(0, 0, $null, 0, [int]::MaxValue))
+$result.GetBytes(0, 0, $blob, 0, $blob.Length)
+$filestream = New-Object System.IO.FileStream 'C:\users\ewpmni\desktop\sqlblob.zip', ([System.IO.FileMode]::Create), ([System.IO.FileAccess]::Write)
+$filestream.Write($blob, 0, $blob.Length)
+$filestream.Close()
+$command.Dispose()
+$connection.Close()
\ No newline at end of file
diff --git a/Dennis_Scripts/GetIpFromCwsLog.ps1 b/Dennis_Scripts/GetIpFromCwsLog.ps1
new file mode 100644
index 0000000..624f81e
--- /dev/null
+++ b/Dennis_Scripts/GetIpFromCwsLog.ps1
@@ -0,0 +1,14 @@
+$logs = get-item \\rejk-p-web005\d-drive\ifsbosystem\log\cws.log*
+$logs += get-item \\rejk-p-web006\d-drive\ifsbosystem\log\cws.log*
+$logs += get-item \\rejk-p-web007\d-drive\ifsbosystem\log\cws.log*
+$logs += get-item \\rejk-p-web008\d-drive\ifsbosystem\log\cws.log*
+
+$logs = $logs | Where { $_.LastWriteTime -gt (Get-Date).AddHours(-24) }
+
+$strings = $logs | Select-String -Pattern 'X-Forwarded-For=([0-9\.]*)'
+
+$ips = $strings | % { $_.Matches[0].Groups[1].Value }
+
+$group = $ips | group
+
+$group | sort count | select -last 10
\ No newline at end of file
diff --git a/Dennis_Scripts/GetPhotoDataFromSQL.ps1 b/Dennis_Scripts/GetPhotoDataFromSQL.ps1
new file mode 100644
index 0000000..4fb5ae4
--- /dev/null
+++ b/Dennis_Scripts/GetPhotoDataFromSQL.ps1
@@ -0,0 +1,37 @@
+$sqlConnection = New-Object System.Data.SqlClient.SqlConnection
+$sqlConnection.ConnectionString = 'Server=rejk-p-sql003\sql01;Database=AfcCookedIFSv2;Trusted_Connection=True;'
+$sqlConnection.Open()
+$sqlCommand = $sqlConnection.CreateCommand()
+
+
+$sqlCommand.CommandText = @"
+--select datalength(photodata) as Len, PhotoData from cmn.ObjCustomer where CustomerRefNumber = 102111037
+select photodata from pom.objordercardordering where orderid = 9712549
+"@
+
+$reader = $sqlCommand.ExecuteReader()
+
+if($reader.HasRows) {
+ while($reader.read()) {
+ $data = $reader['PhotoData']
+ $len = $reader['Len']
+ }
+} else {
+ [pscustomobject]@{
+ CardEngravedID = $num
+ EquipmentType = ''
+ FileName = ''
+ MessageReceptionDate = ''
+ ServiceProviderID = ''
+ ContractorID = ''
+ StaffID = ''
+ DeviceID = ''
+ Contractor = ''
+ ServiceProvider = ''
+ }
+}
+
+$reader.Close()
+$sqlConnection.Close()
+
+[System.Text.Encoding]::Default.GetString($data) | Set-Content -Path C:\users\ewpmni\desktop\test.png
\ No newline at end of file
diff --git a/Dennis_Scripts/GetValModeDataFromSQL.ps1 b/Dennis_Scripts/GetValModeDataFromSQL.ps1
new file mode 100644
index 0000000..f816aec
--- /dev/null
+++ b/Dennis_Scripts/GetValModeDataFromSQL.ps1
@@ -0,0 +1,69 @@
+$sqlConnection = New-Object System.Data.SqlClient.SqlConnection
+$sqlConnection.ConnectionString = 'Server=rejk-p-sql003\sql01;Database=SMCDB;Trusted_Connection=True;'
+$sqlConnection.Open()
+$sqlCommand = $sqlConnection.CreateCommand()
+
+
+$sqlCommand.CommandText = @"
+SELECT [eventId]
+ --,[description]
+ --,[eqptValue]
+ ,[explanation]
+ ,[generationDate]
+ ,[type]
+ ,[receptionDate]
+ ,[source]
+ ,[sourceSamId]
+ ,[sourceLabelName]
+ ,[sourceLocalization]
+ ,[sourceOperator]
+ ,[sourceContractor]
+
+ FROM [SMCDB].[dbo].[STCS_Event]
+
+ where type = 'VAL_MODE' and generationdate > '2017-12-15'
+ order by source, generationDate
+"@
+
+$reader = $sqlCommand.ExecuteReader()
+
+if($reader.HasRows) {
+ $i = 0
+
+ while($true) {
+ $data = while($morerows = $reader.read()) {
+
+ [pscustomobject]@{
+ eventId = $reader['eventId']
+ explanation = $reader['explanation']
+ generationDate = $reader['generationDate']
+ type = $reader['type']
+ receptionDate = $reader['receptionDate']
+ source = $reader['source']
+ sourceSamId = $reader['sourceSamId']
+ sourceLocalization = $reader['sourceLocalization']
+ sourceOperator = $reader['sourceOperator']
+ sourceContractor = $reader['sourceContractor']
+ }
+
+ $i++
+
+ if($i % 10000 -eq 0) {
+ Write-Verbose "row $i" -verbose
+ break
+ }
+ }
+
+ $data | Export-Csv -Delimiter "`t" -NoTypeInformation -Path C:\users\ewpmni\desktop\ValMode.csv -Append -Encoding utf8
+
+ if(-not $morerows) {
+ break
+ }
+ }
+}
+
+
+
+$reader.Close()
+$sqlConnection.Close()
+
diff --git a/Dennis_Scripts/InstallWindowsUpdatesOnTESTD.ps1 b/Dennis_Scripts/InstallWindowsUpdatesOnTESTD.ps1
new file mode 100644
index 0000000..597a7a1
--- /dev/null
+++ b/Dennis_Scripts/InstallWindowsUpdatesOnTESTD.ps1
@@ -0,0 +1,287 @@
+$directoryEntry = New-Object System.DirectoryServices.DirectoryEntry("LDAP://dc=rjktest,dc=local")
+$directorySearcher = New-Object System.DirectoryServices.DirectorySearcher($directoryEntry)
+$directorySearcher.Filter = "(&(objectClass=computer)(cn=rejk-a-*))"
+$directorySearcher.PropertiesToLoad.Add('name')
+$result = $directorySearcher.FindAll()
+$servers = $result | % { $_.Properties['name'] }
+
+$count = 0
+$hotfixes = foreach($server in $servers) {
+ Write-Progress -Activity 'Getting hotfixes' -Status $server -PercentComplete ($count++ / $servers.Count * 100)
+ Write-Output (Invoke-Command -ComputerName $server -ScriptBlock { Get-HotFix | Select-Object HotFixID })
+}
+Write-Progress -Activity 'Getting hotfixes' -Completed
+
+$result = foreach($entry in $hotfixes) {
+ Write-Output ([pscustomobject]@{
+ Server = $entry.ComputerName
+ Hotfixes = $entry.Hotfixes.HotFixID
+ })
+}
+
+
+<#
+InputObject SideIndicator
+----------- -------------
+KB974405 <=
+
+CIT202 missing update KB974405
+#>
+
+
+$hotfixresult = foreach($item in $result) { foreach($hotfix in $item.Hotfixes) { Write-Output ([pscustomobject]@{ Server = $item.Server; Hotfix = $hotfix }) } }
+
+$testdserverequivalent = @(
+ [pscustombobject]@{ Source = 'REJK-A-AOS201'; Targets = 'BTYIDR52DAX' }
+ [pscustombobject]@{ Source = 'REJK-A-APP201'; Targets = 'BTYIDR52APS' }
+ [pscustombobject]@{ Source = 'REJK-A-BCM201'; Targets = 'BTYIDR52BCM' }
+ [pscustombobject]@{ Source = 'REJK-A-CAC201'; Targets = 'BTYIDR52CACHE01', 'BTYIDR52CACHE02' }
+ [pscustombobject]@{ Source = 'REJK-A-DPS201'; Targets = 'BTYIDR52DPS' }
+ [pscustombobject]@{ Source = 'REJK-A-MDL201'; Targets = 'BTYIDR52MWS' }
+ [pscustombobject]@{ Source = 'REJK-A-REP201'; Targets = 'BTYIDR52REP' }
+ [pscustombobject]@{ Source = 'REJK-A-SPS201'; Targets = 'BTYIDR52SPS' }
+ [pscustombobject]@{ Source = 'REJK-A-SQL201'; Targets = 'BTYIDR52SQL' }
+ [pscustombobject]@{ Source = 'REJK-A-TCF201'; Targets = 'BTYIDR52TCFE' }
+ [pscustombobject]@{ Source = 'REJK-A-TCS201'; Targets = 'BTYIDR52TCS' }
+ [pscustombobject]@{ Source = 'REJK-A-TCS202'; Targets = 'BTYIDR52TCS2' }
+ [pscustombobject]@{ Source = 'REJK-A-WEB201'; Targets = 'BTYIDR52FWS','BTYIDR52API','BTYIDR52SMTP','BTYIDR52FTP' }
+)
+
+
+$masterlist = $hotfixes.hotfixes | where server -eq 'rejk-a-' sort hotfixid | Select-Object -ExpandProperty hotfixid -Unique
+
+$csv = foreach($entry in $hotfixes) {
+ foreach($hotfix in $entry.hotfixes) {
+ Write-Output ([pscustomobject]@{ Server = $entry.ComputerName; HotfixId = $hotfix.HotFixID; Installed = ($hotfix.HotFixID -in $masterlist) })
+ }
+}
+
+$csv | group server
+
+$csv | where server -eq 'rejk-a-mdl201' | select -expand hotfixid | sort | out-file hotfixes.txt
+
+
+
+$log = @"
+15-10-2015 13:56:07,18 - Info: Starting WSUS Offline Update download (v. 10.2) for w61-x64 glb
+15-10-2015 13:56:07,18 - Info: Option /verify detected
+15-10-2015 13:56:07,20 - Info: Option /exitonerror detected
+15-10-2015 13:56:07,27 - Info: Set time zone to LOC-2:00
+2015-10-15 13:56:07 URL:http://download.wsusoffline.net/StaticDownloadFiles-modified.txt [0/0] -> "../static/StaticDownloadFiles-modified.txt" [1]
+15-10-2015 13:56:07,40 - Info: Updated static download definitions
+15-10-2015 13:56:07,82 - Info: Downloaded/validated mkisofs tool
+15-10-2015 13:56:07,98 - Info: Downloaded Sysinternals' tools Autologon, Sigcheck and Streams
+15-10-2015 13:56:23,70 - Info: Downloaded/validated most recent Windows Update Agent installation and catalog files
+15-10-2015 13:56:23,70 - Info: Verified digital file signatures of Windows Update Agent installation and catalog files
+15-10-2015 13:56:23,70 - Info: Created integrity database for Windows Update Agent installation and catalog files
+15-10-2015 13:56:27,00 - Info: Determined static update urls for win glb
+15-10-2015 14:01:17,88 - Info: Determined superseded updates
+15-10-2015 14:01:20,79 - Info: Downloaded/validated 2 statically defined updates for win glb
+15-10-2015 14:01:20,83 - Info: Cleaned up client directory for win glb
+15-10-2015 14:01:20,84 - Info: Removed NTFS alternate data streams for win glb
+15-10-2015 14:01:21,15 - Info: Verified digital file signatures for win glb
+15-10-2015 14:01:21,39 - Info: Created integrity database for win glb
+15-10-2015 14:01:21,43 - Info: Determined static update urls for w61-x64 glb
+15-10-2015 14:01:22,10 - Info: Found valid list of superseded updates
+15-10-2015 14:01:33,20 - Info: Determined dynamic update urls for w61-x64 glb
+15-10-2015 14:06:58,87 - Info: Downloaded/validated 26 statically defined updates for w61-x64 glb
+2015-10-15 14:06:59 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2011/07/windows6.1-kb2560656-x64_a68ffedc9b03d6c95129e468baf42cd06bdc9853.cab [558669/558669] -> "../client/w61-x64/glb/windows6.1-kb2560656-x64_a68ffedc9b03d6c95129e468baf42cd06bdc9853.cab" [1]
+2015-10-15 14:06:59 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2011/03/windows6.1-kb2511455-x64_ecfb3fe8e2378fe6f613d723cff6f97ea6798d90.cab [376271/376271] -> "../client/w61-x64/glb/windows6.1-kb2511455-x64_ecfb3fe8e2378fe6f613d723cff6f97ea6798d90.cab" [1]
+2015-10-15 14:06:59 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2011/12/windows6.1-kb2644615-x64_29dd7e13efb5d772252c60cd3120094499ca88df.cab [1430301/1430301] -> "../client/w61-x64/glb/windows6.1-kb2644615-x64_29dd7e13efb5d772252c60cd3120094499ca88df.cab" [1]
+2015-10-15 14:06:59 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/12/windows6.1-kb3020387-x64_6228bdc51ff9c97c09c51dc76b78402451657e79.cab [61657/61657] -> "../client/w61-x64/glb/windows6.1-kb3020387-x64_6228bdc51ff9c97c09c51dc76b78402451657e79.cab" [1]
+2015-10-15 14:06:59 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2014/11/windows6.1-kb3018238-x64_e044f3e0e6f4ccfccadaaa8294f9472f15d4db9a.cab [190533/190533] -> "../client/w61-x64/glb/windows6.1-kb3018238-x64_e044f3e0e6f4ccfccadaaa8294f9472f15d4db9a.cab" [1]
+2015-10-15 14:06:59 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/06/windows6.1-kb3046339-x64_d1e5906323763fc2ee2159ad6d1858f55277f8ab.cab [187295/187295] -> "../client/w61-x64/glb/windows6.1-kb3046339-x64_d1e5906323763fc2ee2159ad6d1858f55277f8ab.cab" [1]
+2015-10-15 14:07:02 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/09/windows6.1-kb3093983-x64_610a95b2698cd5a2468b1204b4bdda7dad8e974c.cab [23661605/23661605] -> "../client/w61-x64/glb/windows6.1-kb3093983-x64_610a95b2698cd5a2468b1204b4bdda7dad8e974c.cab" [1]
+2015-10-15 14:07:02 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2013/01/windows6.1-kb2789644-x64_4b0403b2579b47a107630e0f8e5bdab44c002491.cab [4734519/4734519] -> "../client/w61-x64/glb/windows6.1-kb2789644-x64_4b0403b2579b47a107630e0f8e5bdab44c002491.cab" [1]
+2015-10-15 14:07:03 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2010/12/windows6.1-kb2393802-x64_1eba297f187b449686436c1071edf2312804a4e3.cab [6327379/6327379] -> "../client/w61-x64/glb/windows6.1-kb2393802-x64_1eba297f187b449686436c1071edf2312804a4e3.cab" [1]
+2015-10-15 14:07:03 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2012/09/windows6.1-kb2705219-v2-x64_8e8e0175d46b5a8d52c4856fa3d282faa12acd63.cab [199093/199093] -> "../client/w61-x64/glb/windows6.1-kb2705219-v2-x64_8e8e0175d46b5a8d52c4856fa3d282faa12acd63.cab" [1]
+2015-10-15 14:07:03 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/08/windows6.1-kb3084135-x64_5cde883ae29efdfbdb5ff290dc58365c1941ff8c.cab [428043/428043] -> "../client/w61-x64/glb/windows6.1-kb3084135-x64_5cde883ae29efdfbdb5ff290dc58365c1941ff8c.cab" [1]
+2015-10-15 14:07:03 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/08/windows6.1-kb2993651-x64_06840603b0e19aa7ae59098d3e7c07138b03a0aa.cab [1855919/1855919] -> "../client/w61-x64/glb/windows6.1-kb2993651-x64_06840603b0e19aa7ae59098d3e7c07138b03a0aa.cab" [1]
+2015-10-15 14:07:04 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2011/05/windows6.1-kb2536275-x64_ac86ae4ce126344bd7913ba527f112c717a385ec.cab [808395/808395] -> "../client/w61-x64/glb/windows6.1-kb2536275-x64_ac86ae4ce126344bd7913ba527f112c717a385ec.cab" [1]
+2015-10-15 14:07:04 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2012/12/windows6.1-kb2756920-x64_2957fdf8a23872f7631f0d680df678ef5795e4c2.cab [5762384/5762384] -> "../client/w61-x64/glb/windows6.1-kb2756920-x64_2957fdf8a23872f7631f0d680df678ef5795e4c2.cab" [1]
+2015-10-15 14:07:04 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/07/windows6.1-kb3046017-x64_fbf99e261fdfef137b62c12b820d1954558e901b.cab [206993/206993] -> "../client/w61-x64/glb/windows6.1-kb3046017-x64_fbf99e261fdfef137b62c12b820d1954558e901b.cab" [1]
+2015-10-15 14:07:05 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2014/06/windows6.1-kb2961072-x64_db3c16c8c9ff6f0403720b387923097366a971d1.cab [265167/265167] -> "../client/w61-x64/glb/windows6.1-kb2961072-x64_db3c16c8c9ff6f0403720b387923097366a971d1.cab" [1]
+2015-10-15 14:07:05 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2011/08/windows6.1-kb2571621-x64_bf0eec81e9e284494c5ac7d7093356dd38ddd729.cab [224011/224011] -> "../client/w61-x64/glb/windows6.1-kb2571621-x64_bf0eec81e9e284494c5ac7d7093356dd38ddd729.cab" [1]
+2015-10-15 14:07:05 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/10/windows6.1-kb3006226-x64_594ee035966fa5cf51188f04451d65ddf3d1a99a.cab [643507/643507] -> "../client/w61-x64/glb/windows6.1-kb3006226-x64_594ee035966fa5cf51188f04451d65ddf3d1a99a.cab" [1]
+2015-10-15 14:07:05 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/07/windows6.1-kb3075220-x64_9f192e290e17d1a064e63bd25f8ae563c908ce05.cab [3965897/3965897] -> "../client/w61-x64/glb/windows6.1-kb3075220-x64_9f192e290e17d1a064e63bd25f8ae563c908ce05.cab" [1]
+2015-10-15 14:07:05 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/08/windows6.1-kb3086255-x64_b7ce579bb27fb562fa8e2aa00c173c0ae0347459.cab [47683/47683] -> "../client/w61-x64/glb/windows6.1-kb3086255-x64_b7ce579bb27fb562fa8e2aa00c173c0ae0347459.cab" [1]
+2015-10-15 14:07:05 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2013/07/windows6.1-kb2864202-x64_3c74356ef1b73e7ca4fbb84eb3915c4919f45825.cab [351395/351395] -> "../client/w61-x64/glb/windows6.1-kb2864202-x64_3c74356ef1b73e7ca4fbb84eb3915c4919f45825.cab" [1]
+2015-10-15 14:07:06 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/06/windows6.1-kb3067904-x64_e1eaa895232ebec13e92e03cd6cd42c536b5a501.cab [1072027/1072027] -> "../client/w61-x64/glb/windows6.1-kb3067904-x64_e1eaa895232ebec13e92e03cd6cd42c536b5a501.cab" [1]
+2015-10-15 14:07:07 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/08/windows6.1-kb3072305-x64_183ac3b173dc02ba932c181e555f74e860cec878.cab [7858270/7858270] -> "../client/w61-x64/glb/windows6.1-kb3072305-x64_183ac3b173dc02ba932c181e555f74e860cec878.cab" [1]
+2015-10-15 14:07:07 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2015/06/windows6.1-kb3072630-x64_bab6a4d643d8e6031c1c2a0ce3391839b70b06b3.cab [3485529/3485529] -> "../client/w61-x64/glb/windows6.1-kb3072630-x64_bab6a4d643d8e6031c1c2a0ce3391839b70b06b3.cab" [1]
+2015-10-15 14:07:08 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2015/05/windows6.1-kb3061518-x64_82d0349698f383a84ae6a1476023200ecbb71a23.cab [5969049/5969049] -> "../client/w61-x64/glb/windows6.1-kb3061518-x64_82d0349698f383a84ae6a1476023200ecbb71a23.cab" [1]
+2015-10-15 14:07:08 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2011/03/windows6.1-kb2491683-x64_ab7326434d6b1ba8f04b4f53f82fd85a64912f6a.cab [880806/880806] -> "../client/w61-x64/glb/windows6.1-kb2491683-x64_ab7326434d6b1ba8f04b4f53f82fd85a64912f6a.cab" [1]
+2015-10-15 14:07:11 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2015/09/ie9-windows6.1-kb3093983-x64_7859973f527c96afa1f79509a0bd89ee0c558c3a.cab [30845485/30845485] -> "../client/w61-x64/glb/ie9-windows6.1-kb3093983-x64_7859973f527c96afa1f79509a0bd89ee0c558c3a.cab" [1]
+2015-10-15 14:07:11 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/06/windows6.1-kb2973351-x64_69e386b2997576d366447f5f6a4f64cef793dd89.cab [5693110/5693110] -> "../client/w61-x64/glb/windows6.1-kb2973351-x64_69e386b2997576d366447f5f6a4f64cef793dd89.cab" [1]
+2015-10-15 14:07:12 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2014/04/windows6.1-kb2928120-x64_148127c749ba6dcadf8fae47139306ee496e70b1.cab [4319567/4319567] -> "../client/w61-x64/glb/windows6.1-kb2928120-x64_148127c749ba6dcadf8fae47139306ee496e70b1.cab" [1]
+2015-10-15 14:07:12 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/12/windows6.1-kb3014029-x64_6bc7aad152af72325de5d690e97a55b321a315fe.cab [227323/227323] -> "../client/w61-x64/glb/windows6.1-kb3014029-x64_6bc7aad152af72325de5d690e97a55b321a315fe.cab" [1]
+2015-10-15 14:07:12 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2011/06/windows6.1-kb2532531-x64_4625e47e04e8708b66895de5439ec7221cccd41b.cab [415374/415374] -> "../client/w61-x64/glb/windows6.1-kb2532531-x64_4625e47e04e8708b66895de5439ec7221cccd41b.cab" [1]
+2015-10-15 14:07:12 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2015/01/windows6.1-kb3019215-x64_6a00c2abcd380817a951435a57b976354c54c774.cab [433241/433241] -> "../client/w61-x64/glb/windows6.1-kb3019215-x64_6a00c2abcd380817a951435a57b976354c54c774.cab" [1]
+2015-10-15 14:07:13 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2012/10/windows6.1-kb2758857-x64_5e0aa18e88295276eb27aee6161c6a0ba3093d70.cab [10540921/10540921] -> "../client/w61-x64/glb/windows6.1-kb2758857-x64_5e0aa18e88295276eb27aee6161c6a0ba3093d70.cab" [1]
+2015-10-15 14:07:14 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2012/03/windows6.1-kb2653956-x64_5cfdaba5a52326088faab671f21fcd807c8b8768.cab [386417/386417] -> "../client/w61-x64/glb/windows6.1-kb2653956-x64_5cfdaba5a52326088faab671f21fcd807c8b8768.cab" [1]
+2015-10-15 14:07:14 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2012/06/windows6.1-kb2698365-x64_bf20bb36fc73c0d1f53ea1e635b8aa46c71d7b1f.cab [2496330/2496330] -> "../client/w61-x64/glb/windows6.1-kb2698365-x64_bf20bb36fc73c0d1f53ea1e635b8aa46c71d7b1f.cab" [1]
+2015-10-15 14:07:14 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2012/05/windows6.1-kb2667402-v2-x64_69f4c36d8349e589b0e8937efea6134de881c5b5.cab [162497/162497] -> "../client/w61-x64/glb/windows6.1-kb2667402-v2-x64_69f4c36d8349e589b0e8937efea6134de881c5b5.cab" [1]
+2015-10-15 14:07:15 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2012/04/windows6.1-kb2676562-x64_ef1435c87d5e42d6866549733e10b5df59b48990.cab [6693057/6693057] -> "../client/w61-x64/glb/windows6.1-kb2676562-x64_ef1435c87d5e42d6866549733e10b5df59b48990.cab" [1]
+2015-10-15 14:07:15 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2013/05/windows6.1-kb2839894-x64_b431aca90bafec22e5581d5d5e8de17dd9899605.cab [516381/516381] -> "../client/w61-x64/glb/windows6.1-kb2839894-x64_b431aca90bafec22e5581d5d5e8de17dd9899605.cab" [1]
+2015-10-15 14:07:15 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2011/11/windows6.1-kb2585542-x64_e72f3f3a9af91a9ed6b3e444954a53fbf33e1b0d.cab [1840674/1840674] -> "../client/w61-x64/glb/windows6.1-kb2585542-x64_e72f3f3a9af91a9ed6b3e444954a53fbf33e1b0d.cab" [1]
+2015-10-15 14:07:16 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2014/09/windows6.1-kb2984976-x64_ac83e96da53ec3b3ae7e67599c8ea8bfc65fb6de.cab [6470955/6470955] -> "../client/w61-x64/glb/windows6.1-kb2984976-x64_ac83e96da53ec3b3ae7e67599c8ea8bfc65fb6de.cab" [1]
+2015-10-15 14:07:16 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/03/windows6.1-kb3046269-x64_a26f42ec6c4508c07f4a037987df9e2beb7e8d2d.cab [31703/31703] -> "../client/w61-x64/glb/windows6.1-kb3046269-x64_a26f42ec6c4508c07f4a037987df9e2beb7e8d2d.cab" [1]
+2015-10-15 14:07:16 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/07/windows6.1-kb3076895-x64_f768deb1befe18df15ed13501ba823a653cd4588.cab [2277597/2277597] -> "../client/w61-x64/glb/windows6.1-kb3076895-x64_f768deb1befe18df15ed13501ba823a653cd4588.cab" [1]
+2015-10-15 14:07:17 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2014/08/windows6.1-kb2973112-x64_780a68d2b265578468a47b147745577af54c804d.cab [5429669/5429669] -> "../client/w61-x64/glb/windows6.1-kb2973112-x64_780a68d2b265578468a47b147745577af54c804d.cab" [1]
+2015-10-15 14:07:18 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2012/04/windows6.1-kb2656410-x64_eedb105f4dacad913eedfb90e5764189865a17a3.cab [7881306/7881306] -> "../client/w61-x64/glb/windows6.1-kb2656410-x64_eedb105f4dacad913eedfb90e5764189865a17a3.cab" [1]
+2015-10-15 14:07:19 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/08/windows6.1-kb2972211-x64_1e338f9b0335d3b69a8fa9709e01d4712cd7039f.cab [13406969/13406969] -> "../client/w61-x64/glb/windows6.1-kb2972211-x64_1e338f9b0335d3b69a8fa9709e01d4712cd7039f.cab" [1]
+2015-10-15 14:07:20 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2013/06/windows6.1-kb2847927-x64_54e1e9670c22adabc3fe48e2914391f9be73a54e.cab [1494960/1494960] -> "../client/w61-x64/glb/windows6.1-kb2847927-x64_54e1e9670c22adabc3fe48e2914391f9be73a54e.cab" [1]
+2015-10-15 14:07:20 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2012/01/windows6.1-kb2654428-x64_47bc9f3fd4bac1e6d5263fd71ad4e9611e6a209f.cab [616547/616547] -> "../client/w61-x64/glb/windows6.1-kb2654428-x64_47bc9f3fd4bac1e6d5263fd71ad4e9611e6a209f.cab" [1]
+2015-10-15 14:07:20 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2011/09/windows6.1-kb2564958-x64_656c242c83fae2c63b243e1c8941d7253a4114eb.cab [941261/941261] -> "../client/w61-x64/glb/windows6.1-kb2564958-x64_656c242c83fae2c63b243e1c8941d7253a4114eb.cab" [1]
+2015-10-15 14:07:20 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2012/11/windows6.1-kb2770660-x64_8b9d890a943130e35b7c7c1c729fcc7f112b2487.cab [516269/516269] -> "../client/w61-x64/glb/windows6.1-kb2770660-x64_8b9d890a943130e35b7c7c1c729fcc7f112b2487.cab" [1]
+2015-10-15 14:07:21 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/09/windows6.1-kb3042058-x64_7be364251bd1ff06ba872bb50a53d738942e0af7.cab [6169585/6169585] -> "../client/w61-x64/glb/windows6.1-kb3042058-x64_7be364251bd1ff06ba872bb50a53d738942e0af7.cab" [1]
+2015-10-15 14:07:21 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/02/windows6.1-kb3030377-x64_2e9e49b05199075820b8f596583557976f57810d.cab [223779/223779] -> "../client/w61-x64/glb/windows6.1-kb3030377-x64_2e9e49b05199075820b8f596583557976f57810d.cab" [1]
+2015-10-15 14:07:21 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2015/04/windows6.1-kb3032655-x64_7149b1f0ebb72b46d7fd8a9b0bc673284e9aad55.cab [324314/324314] -> "../client/w61-x64/glb/windows6.1-kb3032655-x64_7149b1f0ebb72b46d7fd8a9b0bc673284e9aad55.cab" [1]
+2015-10-15 14:07:21 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2012/12/windows6.1-kb2736418-x64_5699216a6c5a5e736af288a4b746ec3501c94525.cab [460534/460534] -> "../client/w61-x64/glb/windows6.1-kb2736418-x64_5699216a6c5a5e736af288a4b746ec3501c94525.cab" [1]
+2015-10-15 14:07:21 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/12/windows6.1-kb3020393-x64_b0fdd468feae602419e332a14984b3ec3256399d.cab [81987/81987] -> "../client/w61-x64/glb/windows6.1-kb3020393-x64_b0fdd468feae602419e332a14984b3ec3256399d.cab" [1]
+2015-10-15 14:07:21 URL:http://download.windowsupdate.com/msdownload/update/software/updt/2011/08/windows6.1-kb2570791-x64_9f32e0144f188f15690d8a51efc87cc43ab01141.cab [1179705/1179705] -> "../client/w61-x64/glb/windows6.1-kb2570791-x64_9f32e0144f188f15690d8a51efc87cc43ab01141.cab" [1]
+2015-10-15 14:07:22 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/10/windows6.1-kb3087918-v2-x64_e401d254def11da2af4f6a4db585bf179b1ed69f.cab [1837803/1837803] -> "../client/w61-x64/glb/windows6.1-kb3087918-v2-x64_e401d254def11da2af4f6a4db585bf179b1ed69f.cab" [1]
+2015-10-15 14:07:22 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2014/10/windows6.1-kb2978120-x64_7716abb2e522eeb6511c71d5aac19d692550f43b.cab [358620/358620] -> "../client/w61-x64/glb/windows6.1-kb2978120-x64_7716abb2e522eeb6511c71d5aac19d692550f43b.cab" [1]
+2015-10-15 14:07:22 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/07/windows6.1-kb2976897-x64_47104006ce87e39d2534e47b0bd6abcb044ecdf3.cab [637165/637165] -> "../client/w61-x64/glb/windows6.1-kb2976897-x64_47104006ce87e39d2534e47b0bd6abcb044ecdf3.cab" [1]
+2015-10-15 14:07:22 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2013/07/windows6.1-kb2868846-x64_bdf1252057e5c53a2424e85a5f696aec6c31811f.cab [210675/210675] -> "../client/w61-x64/glb/windows6.1-kb2868846-x64_bdf1252057e5c53a2424e85a5f696aec6c31811f.cab" [1]
+2015-10-15 14:07:23 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2011/12/windows6.1-kb2656356-x64_01b0f5428ef6eb2782e6f2c617f06fba8bbf4460.cab [4313638/4313638] -> "../client/w61-x64/glb/windows6.1-kb2656356-x64_01b0f5428ef6eb2782e6f2c617f06fba8bbf4460.cab" [1]
+2015-10-15 14:07:23 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2011/03/windows6.1-kb2506212-x64_68431032794b007090bed18fc1adfc349f717375.cab [1290871/1290871] -> "../client/w61-x64/glb/windows6.1-kb2506212-x64_68431032794b007090bed18fc1adfc349f717375.cab" [1]
+2015-10-15 14:07:24 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2014/06/windows6.1-kb2973201-x64_b7cd3ef634a5e9b9a8e98f7aff7a0217777141b0.cab [3624091/3624091] -> "../client/w61-x64/glb/windows6.1-kb2973201-x64_b7cd3ef634a5e9b9a8e98f7aff7a0217777141b0.cab" [1]
+2015-10-15 14:07:24 URL:http://download.windowsupdate.com/c/msdownload/update/software/uprl/2014/08/windows6.1-kb2981580-x64_6a7f92da16676c89b44e102a1979b1870bd3db35.cab [746471/746471] -> "../client/w61-x64/glb/windows6.1-kb2981580-x64_6a7f92da16676c89b44e102a1979b1870bd3db35.cab" [1]
+2015-10-15 14:07:28 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/07/windows6.1-kb2937610-x64_8a49be20bd5a25d1aef7aaaa52f875bad0b64429.cab [48557363/48557363] -> "../client/w61-x64/glb/windows6.1-kb2937610-x64_8a49be20bd5a25d1aef7aaaa52f875bad0b64429.cab" [1]
+2015-10-15 14:07:29 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/06/windows6.1-kb2972280-x64_bd936573d1c6dc8c755e0731ba68c6a7a4370207.cab [462605/462605] -> "../client/w61-x64/glb/windows6.1-kb2972280-x64_bd936573d1c6dc8c755e0731ba68c6a7a4370207.cab" [1]
+2015-10-15 14:07:29 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2013/08/windows6.1-kb2843638-v2-x64_c30519c8226410b89d7cc2ddd7a66f989fcc28af.cab [1190978/1190978] -> "../client/w61-x64/glb/windows6.1-kb2843638-v2-x64_c30519c8226410b89d7cc2ddd7a66f989fcc28af.cab" [1]
+2015-10-15 14:07:32 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2012/03/windows6.1-kb2604115-x64_60417c781611597392c69457ad924e52649266b7.cab [24234027/24234027] -> "../client/w61-x64/glb/windows6.1-kb2604115-x64_60417c781611597392c69457ad924e52649266b7.cab" [1]
+2015-10-15 14:07:32 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2011/07/windows6.1-kb2546250-x64_cdc3d02de4b267fc6cb2cb257ac664a3c3981a77.cab [479805/479805] -> "../client/w61-x64/glb/windows6.1-kb2546250-x64_cdc3d02de4b267fc6cb2cb257ac664a3c3981a77.cab" [1]
+2015-10-15 14:07:32 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/08/windows6.1-kb3087918-x64_3e2eed1ba08ae7aef735ab1673de351a66f0bda0.cab [1951981/1951981] -> "../client/w61-x64/glb/windows6.1-kb3087918-x64_3e2eed1ba08ae7aef735ab1673de351a66f0bda0.cab" [1]
+2015-10-15 14:07:32 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2014/09/windows6.1-kb2991963-x64_082b99d8dae9b0f5b41297b4443a9daca105c7c8.cab [1121836/1121836] -> "../client/w61-x64/glb/windows6.1-kb2991963-x64_082b99d8dae9b0f5b41297b4443a9daca105c7c8.cab" [1]
+2015-10-15 14:07:32 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2012/01/windows6.1-kb2643719-x64_212f2290f29586cdc75836ea3638352eb5e9083e.cab [495555/495555] -> "../client/w61-x64/glb/windows6.1-kb2643719-x64_212f2290f29586cdc75836ea3638352eb5e9083e.cab" [1]
+2015-10-15 14:07:33 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2011/01/windows6.1-kb2479943-x64_5f7466309ee6a343cf69bd88d29de4029d3647ce.cab [2264455/2264455] -> "../client/w61-x64/glb/windows6.1-kb2479943-x64_5f7466309ee6a343cf69bd88d29de4029d3647ce.cab" [1]
+2015-10-15 14:07:34 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/07/windows6.1-kb3071756-x64_d1a0aafb1a16a7cd86fa22455839805305caaa80.cab [16980690/16980690] -> "../client/w61-x64/glb/windows6.1-kb3071756-x64_d1a0aafb1a16a7cd86fa22455839805305caaa80.cab" [1]
+2015-10-15 14:07:34 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/03/windows6.1-kb3045685-x64_be36c6413bf04e7bd520c0f2b0927309c02a6613.cab [268179/268179] -> "../client/w61-x64/glb/windows6.1-kb3045685-x64_be36c6413bf04e7bd520c0f2b0927309c02a6613.cab" [1]
+2015-10-15 14:07:35 URL:http://download.windowsupdate.com/d/msdownload/update/software/uprl/2013/12/windows6.1-kb2904266-x64_c64a0c9b6d7ab5cda7ba793d4a6c36f329e4ac91.cab [746941/746941] -> "../client/w61-x64/glb/windows6.1-kb2904266-x64_c64a0c9b6d7ab5cda7ba793d4a6c36f329e4ac91.cab" [1]
+2015-10-15 14:07:35 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2013/08/windows6.1-kb2862973-x64_44151a91bda4f2d750120d5c98d9ba55da5a349f.cab [36393/36393] -> "../client/w61-x64/glb/windows6.1-kb2862973-x64_44151a91bda4f2d750120d5c98d9ba55da5a349f.cab" [1]
+2015-10-15 14:07:35 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/07/windows6.1-kb3075226-x64_766c9cce189bdf1b626bcbedaf1cc767a2530cf5.cab [5009399/5009399] -> "../client/w61-x64/glb/windows6.1-kb3075226-x64_766c9cce189bdf1b626bcbedaf1cc767a2530cf5.cab" [1]
+2015-10-15 14:07:35 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/08/windows6.1-kb3074543-x64_fce267791526676d259fd7060135053564ae0d30.cab [661021/661021] -> "../client/w61-x64/glb/windows6.1-kb3074543-x64_fce267791526676d259fd7060135053564ae0d30.cab" [1]
+2015-10-15 14:07:36 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2014/10/windows6.1-kb3003743-x64_7b2bfcbba9ee00e54d485e9661e5a1683bb85561.cab [6157540/6157540] -> "../client/w61-x64/glb/windows6.1-kb3003743-x64_7b2bfcbba9ee00e54d485e9661e5a1683bb85561.cab" [1]
+2015-10-15 14:07:36 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/12/windows6.1-kb3004361-x64_c83d236aedb48b4e3ce93518c262b020bfac80f2.cab [358789/358789] -> "../client/w61-x64/glb/windows6.1-kb3004361-x64_c83d236aedb48b4e3ce93518c262b020bfac80f2.cab" [1]
+2015-10-15 14:07:36 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2013/09/windows6.1-kb2862335-x64_e9eb22293f4b1fcd4c50112fa3deec47b98ea9e9.cab [193628/193628] -> "../client/w61-x64/glb/windows6.1-kb2862335-x64_e9eb22293f4b1fcd4c50112fa3deec47b98ea9e9.cab" [1]
+2015-10-15 14:07:37 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2011/10/windows6.1-kb2620704-x64_c631fef931252fbf25a4a61875738021876d78a9.cab [1095123/1095123] -> "../client/w61-x64/glb/windows6.1-kb2620704-x64_c631fef931252fbf25a4a61875738021876d78a9.cab" [1]
+2015-10-15 14:07:37 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2012/07/windows6.1-kb2712808-x64_060b60401b3de3dce053a68c65e9eb050874eb80.cab [805071/805071] -> "../client/w61-x64/glb/windows6.1-kb2712808-x64_060b60401b3de3dce053a68c65e9eb050874eb80.cab" [1]
+2015-10-15 14:07:37 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/05/windows6.1-kb2957509-x64_37b3099a606e171e489e9300a593623bac3db566.cab [520203/520203] -> "../client/w61-x64/glb/windows6.1-kb2957509-x64_37b3099a606e171e489e9300a593623bac3db566.cab" [1]
+2015-10-15 14:07:37 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2011/11/windows6.1-kb2619339-x64_ed46064e0138564a6cb0000dea96fe5bf8198ec1.cab [498531/498531] -> "../client/w61-x64/glb/windows6.1-kb2619339-x64_ed46064e0138564a6cb0000dea96fe5bf8198ec1.cab" [1]
+2015-10-15 14:07:39 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2015/10/windows6.1-kb3088195-x64_c8e671cb9d9c06eed90fa8dc64ad09e21e416e76.cab [16161904/16161904] -> "../client/w61-x64/glb/windows6.1-kb3088195-x64_c8e671cb9d9c06eed90fa8dc64ad09e21e416e76.cab" [1]
+2015-10-15 14:07:39 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2014/01/windows6.1-kb2911501-x64_553ca437c619a84a0fc418b1121bea857ae8ddd0.cab [621959/621959] -> "../client/w61-x64/glb/windows6.1-kb2911501-x64_553ca437c619a84a0fc418b1121bea857ae8ddd0.cab" [1]
+2015-10-15 14:07:39 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2013/06/windows6.1-kb2840631-x64_022ec000034f19b7ce059c0f5175bb921b53badc.cab [262447/262447] -> "../client/w61-x64/glb/windows6.1-kb2840631-x64_022ec000034f19b7ce059c0f5175bb921b53badc.cab" [1]
+2015-10-15 14:07:40 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/04/windows6.1-kb2931356-x64_ea85faa6aaa3b28efb69c05375703bd3c5db2859.cab [6544739/6544739] -> "../client/w61-x64/glb/windows6.1-kb2931356-x64_ea85faa6aaa3b28efb69c05375703bd3c5db2859.cab" [1]
+2015-10-15 14:07:40 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2012/07/windows6.1-kb2716513-x64_18dd3e9d399071c448b22423f8ed78f8644ab125.cab [232557/232557] -> "../client/w61-x64/glb/windows6.1-kb2716513-x64_18dd3e9d399071c448b22423f8ed78f8644ab125.cab" [1]
+2015-10-15 14:07:40 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/08/windows6.1-kb2894844-x64_92b057ab934ed645665080a804a2884b40d5d543.cab [4503489/4503489] -> "../client/w61-x64/glb/windows6.1-kb2894844-x64_92b057ab934ed645665080a804a2884b40d5d543.cab" [1]
+2015-10-15 14:07:41 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2011/05/windows6.1-kb2518295-x64_025767634feef3db624fffbb4a29a7da102054a0.cab [647199/647199] -> "../client/w61-x64/glb/windows6.1-kb2518295-x64_025767634feef3db624fffbb4a29a7da102054a0.cab" [1]
+2015-10-15 14:07:41 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2013/01/windows6.1-kb2637518-x64_73c14c33acbdfe6ed6bf96229c7085d4839f08f5.cab [4261843/4261843] -> "../client/w61-x64/glb/windows6.1-kb2637518-x64_73c14c33acbdfe6ed6bf96229c7085d4839f08f5.cab" [1]
+2015-10-15 14:07:42 URL:http://download.windowsupdate.com/d/msdownload/update/software/uprl/2013/08/windows6.1-kb2863058-x64_c6c0e83a98f17a356eb98de3babc5ea3f27b0076.cab [682565/682565] -> "../client/w61-x64/glb/windows6.1-kb2863058-x64_c6c0e83a98f17a356eb98de3babc5ea3f27b0076.cab" [1]
+2015-10-15 14:07:43 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/07/windows6.1-kb3060716-x64_16354b97a4936a25a535765ed573444bce966606.cab [16052212/16052212] -> "../client/w61-x64/glb/windows6.1-kb3060716-x64_16354b97a4936a25a535765ed573444bce966606.cab" [1]
+2015-10-15 14:07:44 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2012/07/windows6.1-kb2719033-x64_e33fe9ab76a25eb7250b50732cc7432ab8919bb8.cab [1831215/1831215] -> "../client/w61-x64/glb/windows6.1-kb2719033-x64_e33fe9ab76a25eb7250b50732cc7432ab8919bb8.cab" [1]
+2015-10-15 14:07:45 URL:http://download.windowsupdate.com/msdownload/update/software/crup/2011/05/windows6.1-kb2533552-x64_8cf0b38e43622766333ce70426241dc7fa996b4d.cab [9510901/9510901] -> "../client/w61-x64/glb/windows6.1-kb2533552-x64_8cf0b38e43622766333ce70426241dc7fa996b4d.cab" [1]
+2015-10-15 14:07:45 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/11/windows6.1-kb3011780-x64_d9ad4ad4f9c4dfcc785b4a7420a3b56c9f86689b.cab [5653356/5653356] -> "../client/w61-x64/glb/windows6.1-kb3011780-x64_d9ad4ad4f9c4dfcc785b4a7420a3b56c9f86689b.cab" [1]
+2015-10-15 14:07:46 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/07/windows6.1-kb3075222-x64_f1dcdced5dbc39d732ce453a3d503b02fcf09548.cab [3839417/3839417] -> "../client/w61-x64/glb/windows6.1-kb3075222-x64_f1dcdced5dbc39d732ce453a3d503b02fcf09548.cab" [1]
+2015-10-15 14:07:46 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/12/windows6.1-kb3022777-x64_c2c0f0636c921ab25678cbbceb1799eeb139956c.cab [422709/422709] -> "../client/w61-x64/glb/windows6.1-kb3022777-x64_c2c0f0636c921ab25678cbbceb1799eeb139956c.cab" [1]
+2015-10-15 14:07:46 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2013/02/windows6.1-kb2807986-x64_7382d49f2769d90a69ed430b7a991531bf7bcf51.cab [125041/125041] -> "../client/w61-x64/glb/windows6.1-kb2807986-x64_7382d49f2769d90a69ed430b7a991531bf7bcf51.cab" [1]
+2015-10-15 14:07:46 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2013/12/windows6.1-kb2862330-v2-x64_954995987a2e8be0c279d51a6ed842961ba3582d.cab [396877/396877] -> "../client/w61-x64/glb/windows6.1-kb2862330-v2-x64_954995987a2e8be0c279d51a6ed842961ba3582d.cab" [1]
+2015-10-15 14:07:48 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/10/windows6.1-kb2984972-x64_289d1811c5b2a236f3b6c666d0ccb3b3106301b4.cab [11715776/11715776] -> "../client/w61-x64/glb/windows6.1-kb2984972-x64_289d1811c5b2a236f3b6c666d0ccb3b3106301b4.cab" [1]
+2015-10-15 14:07:49 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2015/01/windows6.1-kb3031432-x64_b946b1120f6a63e5a0614047d1c7308ef0743739.cab [6496375/6496375] -> "../client/w61-x64/glb/windows6.1-kb3031432-x64_b946b1120f6a63e5a0614047d1c7308ef0743739.cab" [1]
+2015-10-15 14:07:49 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/08/windows6.1-kb3072595-x64_1be9a40a195ecb53869b278274c342feac15b372.cab [3907619/3907619] -> "../client/w61-x64/glb/windows6.1-kb3072595-x64_1be9a40a195ecb53869b278274c342feac15b372.cab" [1]
+2015-10-15 14:07:50 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2012/12/windows6.1-kb2742599-x64_cc314ecc5eccc5658138c4f4ac2719190db2187d.cab [8389841/8389841] -> "../client/w61-x64/glb/windows6.1-kb2742599-x64_cc314ecc5eccc5658138c4f4ac2719190db2187d.cab" [1]
+2015-10-15 14:07:50 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2015/07/windows6.1-kb3067903-x64_48636a2b2aed1027c30ccbbe17e89863c6377370.cab [230199/230199] -> "../client/w61-x64/glb/windows6.1-kb3067903-x64_48636a2b2aed1027c30ccbbe17e89863c6377370.cab" [1]
+2015-10-15 14:07:50 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/07/windows6.1-kb2978742-x64_37a0a0770f629c43a3649dd79ab92654abff1293.cab [307909/307909] -> "../client/w61-x64/glb/windows6.1-kb2978742-x64_37a0a0770f629c43a3649dd79ab92654abff1293.cab" [1]
+2015-10-15 14:07:51 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/09/windows6.1-kb2979570-x64_3973528a0449763574c096183461903227eabd96.cab [769832/769832] -> "../client/w61-x64/glb/windows6.1-kb2979570-x64_3973528a0449763574c096183461903227eabd96.cab" [1]
+2015-10-15 14:07:51 URL:http://download.windowsupdate.com/msdownload/update/software/updt/2011/12/windows6.1-kb2633952-x64_d091e6369ee759b63634bc6447771ee8bc8de675.cab [1192259/1192259] -> "../client/w61-x64/glb/windows6.1-kb2633952-x64_d091e6369ee759b63634bc6447771ee8bc8de675.cab" [1]
+2015-10-15 14:07:51 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/05/windows6.1-kb3062577-x64_5f0aa3b50babc8ff66d05016b00dceded2a2fc73.cab [1664659/1664659] -> "../client/w61-x64/glb/windows6.1-kb3062577-x64_5f0aa3b50babc8ff66d05016b00dceded2a2fc73.cab" [1]
+2015-10-15 14:07:52 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2015/02/windows6.1-kb3035132-x64_1e8434e60c29f94d18859908a227c3be67fb60c1.cab [3559679/3559679] -> "../client/w61-x64/glb/windows6.1-kb3035132-x64_1e8434e60c29f94d18859908a227c3be67fb60c1.cab" [1]
+2015-10-15 14:07:52 URL:http://download.windowsupdate.com/msdownload/update/software/uprl/2012/11/windows6.1-kb2779562-x64_f9b17c43379bce87b8875b9e868d2e16e9b3618d.cab [1203149/1203149] -> "../client/w61-x64/glb/windows6.1-kb2779562-x64_f9b17c43379bce87b8875b9e868d2e16e9b3618d.cab" [1]
+2015-10-15 14:07:52 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2013/11/windows6.1-kb2892074-x64_1f04c5896a3c60e8d0872f276ac56fe51bc457e1.cab [609611/609611] -> "../client/w61-x64/glb/windows6.1-kb2892074-x64_1f04c5896a3c60e8d0872f276ac56fe51bc457e1.cab" [1]
+2015-10-15 14:07:53 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2013/11/windows6.1-kb2900986-x64_9e555e1b4de1446d09f65b28415ab1d836980933.cab [41645/41645] -> "../client/w61-x64/glb/windows6.1-kb2900986-x64_9e555e1b4de1446d09f65b28415ab1d836980933.cab" [1]
+2015-10-15 14:07:53 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2015/03/windows6.1-kb3037574-x64_209193945d1d6c17790e32cda1f6eab01ec8d916.cab [4448317/4448317] -> "../client/w61-x64/glb/windows6.1-kb3037574-x64_209193945d1d6c17790e32cda1f6eab01ec8d916.cab" [1]
+2015-10-15 14:07:53 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2012/12/windows6.1-kb2736422-x64_72f0410361e1f0ed91f68cf4ebff46fcdaa5a2ac.cab [338594/338594] -> "../client/w61-x64/glb/windows6.1-kb2736422-x64_72f0410361e1f0ed91f68cf4ebff46fcdaa5a2ac.cab" [1]
+2015-10-15 14:07:53 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2011/09/windows6.1-kb2579686-x64_936d4dc7de3d7cac4f66a65da7c87a65c1398218.cab [929013/929013] -> "../client/w61-x64/glb/windows6.1-kb2579686-x64_936d4dc7de3d7cac4f66a65da7c87a65c1398218.cab" [1]
+2015-10-15 14:07:54 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2013/08/windows6.1-kb2853587-x64_5b9e4f1271a5babc89e8c4bd697f948d1db50aec.cab [57895/57895] -> "../client/w61-x64/glb/windows6.1-kb2853587-x64_5b9e4f1271a5babc89e8c4bd697f948d1db50aec.cab" [1]
+2015-10-15 14:07:54 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2014/05/windows6.1-kb2965788-x64_e7b573d40904d4e65e426dccf3f387300e79bdf4.cab [1859665/1859665] -> "../client/w61-x64/glb/windows6.1-kb2965788-x64_e7b573d40904d4e65e426dccf3f387300e79bdf4.cab" [1]
+2015-10-15 14:07:54 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/06/windows6.1-kb3068457-x64_aa50a6699a6d0879ee128e9ebd13da7e02cfe01f.cab [1365091/1365091] -> "../client/w61-x64/glb/windows6.1-kb3068457-x64_aa50a6699a6d0879ee128e9ebd13da7e02cfe01f.cab" [1]
+2015-10-15 14:07:55 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/09/windows6.1-kb3094995-x64_e73f332aba3310f2b15c722ff4bf3dd8b0dc5bb8.cab [1095843/1095843] -> "../client/w61-x64/glb/windows6.1-kb3094995-x64_e73f332aba3310f2b15c722ff4bf3dd8b0dc5bb8.cab" [1]
+2015-10-15 14:07:55 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2013/01/windows6.1-kb2789645-x64_95fd50ea8d9012da99ab753eca00957e66e00b6c.cab [4723091/4723091] -> "../client/w61-x64/glb/windows6.1-kb2789645-x64_95fd50ea8d9012da99ab753eca00957e66e00b6c.cab" [1]
+2015-10-15 14:07:55 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2011/08/windows6.1-kb2570947-x64_381ccb025636afa9935bd39b64f444e497f37816.cab [376853/376853] -> "../client/w61-x64/glb/windows6.1-kb2570947-x64_381ccb025636afa9935bd39b64f444e497f37816.cab" [1]
+2015-10-15 14:07:55 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2012/10/windows6.1-kb2727528-x64_80bd082f9278d5db8c7373720c26330e592ebfd8.cab [124081/124081] -> "../client/w61-x64/glb/windows6.1-kb2727528-x64_80bd082f9278d5db8c7373720c26330e592ebfd8.cab" [1]
+2015-10-15 14:07:56 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2012/02/windows6.1-kb2621440-x64_c38a7ca505cd266b6d1fcb25fea4b2a421096f54.cab [1272383/1272383] -> "../client/w61-x64/glb/windows6.1-kb2621440-x64_c38a7ca505cd266b6d1fcb25fea4b2a421096f54.cab" [1]
+2015-10-15 14:07:56 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/05/windows6.1-kb3059317-x64_a3f8a951de3b5770cbcfd6377e574027fe3b053f.cab [2150977/2150977] -> "../client/w61-x64/glb/windows6.1-kb3059317-x64_a3f8a951de3b5770cbcfd6377e574027fe3b053f.cab" [1]
+2015-10-15 14:07:57 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2011/12/windows6.1-kb2656355-x64_2e7caf92b258c076267a6b76740c5b68d1a2a440.cab [4522804/4522804] -> "../client/w61-x64/glb/windows6.1-kb2656355-x64_2e7caf92b258c076267a6b76740c5b68d1a2a440.cab" [1]
+2015-10-15 14:07:57 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2012/05/windows6.1-kb2685939-x64_a2223c234072710efd1c0f18ee31d271fc8f424d.cab [674401/674401] -> "../client/w61-x64/glb/windows6.1-kb2685939-x64_a2223c234072710efd1c0f18ee31d271fc8f424d.cab" [1]
+2015-10-15 14:07:57 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/05/windows6.1-kb2957189-x64_ab20430345c1ea14f7103b8cc6f8a996d9109850.cab [1217007/1217007] -> "../client/w61-x64/glb/windows6.1-kb2957189-x64_ab20430345c1ea14f7103b8cc6f8a996d9109850.cab" [1]
+2015-10-15 14:07:58 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2015/04/windows6.1-kb3055642-x64_155450b09c5340c3888eaa76486779056455deaf.cab [193489/193489] -> "../client/w61-x64/glb/windows6.1-kb3055642-x64_155450b09c5340c3888eaa76486779056455deaf.cab" [1]
+2015-10-15 14:07:59 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2012/10/windows6.1-kb2729452-x64_9047bd1de5048637a2482fcd37831481c628ef62.cab [13677161/13677161] -> "../client/w61-x64/glb/windows6.1-kb2729452-x64_9047bd1de5048637a2482fcd37831481c628ef62.cab" [1]
+2015-10-15 14:07:59 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/07/windows6.1-kb3076949-x64_0a58cffb033470caf3115e3719344ec6eb90c62a.cab [373231/373231] -> "../client/w61-x64/glb/windows6.1-kb3076949-x64_0a58cffb033470caf3115e3719344ec6eb90c62a.cab" [1]
+2015-10-15 14:08:00 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2013/12/windows6.1-kb2912390-x64_3f1775e70bfcb1a92c4d6bb5790b1b23d8adf360.cab [2978169/2978169] -> "../client/w61-x64/glb/windows6.1-kb2912390-x64_3f1775e70bfcb1a92c4d6bb5790b1b23d8adf360.cab" [1]
+2015-10-15 14:08:00 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2012/04/windows6.1-kb2690533-x64_636fd758b1266c6c8ddbe9994847e45f51a73cf8.cab [78639/78639] -> "../client/w61-x64/glb/windows6.1-kb2690533-x64_636fd758b1266c6c8ddbe9994847e45f51a73cf8.cab" [1]
+2015-10-15 14:08:00 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2015/09/windows6.1-kb3093513-x64_cb5a17f5a02e2a10a3c5df9230dfee929d34e2b9.cab [1715335/1715335] -> "../client/w61-x64/glb/windows6.1-kb3093513-x64_cb5a17f5a02e2a10a3c5df9230dfee929d34e2b9.cab" [1]
+2015-10-15 14:08:01 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2013/04/windows6.1-kb2840149-x64_26191fcca52d4d37b1771187c0760d669f486e52.cab [1478409/1478409] -> "../client/w61-x64/glb/windows6.1-kb2840149-x64_26191fcca52d4d37b1771187c0760d669f486e52.cab" [1]
+2015-10-15 14:08:01 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/12/windows6.1-kb3020388-x64_9d180f206cbce774beb7459e9d73aecb0c36be32.cab [72743/72743] -> "../client/w61-x64/glb/windows6.1-kb3020388-x64_9d180f206cbce774beb7459e9d73aecb0c36be32.cab" [1]
+2015-10-15 14:08:01 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2013/01/windows6.1-kb2790978-x64_68af5b21a15980f61c701632dca32d03b3cd0c9e.cab [401477/401477] -> "../client/w61-x64/glb/windows6.1-kb2790978-x64_68af5b21a15980f61c701632dca32d03b3cd0c9e.cab" [1]
+2015-10-15 14:08:01 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2013/08/windows6.1-kb2803821-v2-x64_6f79184299510b18c008dd142282138120030b12.cab [1252433/1252433] -> "../client/w61-x64/glb/windows6.1-kb2803821-v2-x64_6f79184299510b18c008dd142282138120030b12.cab" [1]
+2015-10-15 14:08:01 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2013/07/windows6.1-kb2868038-x64_1f1c9af221b5257a0f42aedd6039b10cfc63287d.cab [242054/242054] -> "../client/w61-x64/glb/windows6.1-kb2868038-x64_1f1c9af221b5257a0f42aedd6039b10cfc63287d.cab" [1]
+2015-10-15 14:08:03 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2015/01/windows6.1-kb3004375-v3-x64_106d506f0b146279985ca204a0abf70423e00c68.cab [12059406/12059406] -> "../client/w61-x64/glb/windows6.1-kb3004375-v3-x64_106d506f0b146279985ca204a0abf70423e00c68.cab" [1]
+2015-10-15 14:08:03 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/08/windows6.1-kb3069114-x64_a7eba448fcedd7b51a872d10d8fcf5090539581e.cab [4640261/4640261] -> "../client/w61-x64/glb/windows6.1-kb3069114-x64_a7eba448fcedd7b51a872d10d8fcf5090539581e.cab" [1]
+2015-10-15 14:08:05 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/05/windows6.1-kb3033890-x64_7b96073eb8b9e505d5f434807d9b18da31e50754.cab [16268472/16268472] -> "../client/w61-x64/glb/windows6.1-kb3033890-x64_7b96073eb8b9e505d5f434807d9b18da31e50754.cab" [1]
+2015-10-15 14:08:05 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2013/09/windows6.1-kb2884256-x64_32fdf7ad604b4f5074bd90fd28e9f119424a8ab7.cab [75905/75905] -> "../client/w61-x64/glb/windows6.1-kb2884256-x64_32fdf7ad604b4f5074bd90fd28e9f119424a8ab7.cab" [1]
+2015-10-15 14:08:06 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2011/11/windows6.1-kb2631813-x64_626b002a3957fdf3e7512331efa1a8987519f6db.cab [1818135/1818135] -> "../client/w61-x64/glb/windows6.1-kb2631813-x64_626b002a3957fdf3e7512331efa1a8987519f6db.cab" [1]
+2015-10-15 14:08:11 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/09/ie11-windows6.1-kb3093983-x64_dd1974dad63cded61615935b0748b59450fa559a.cab [53667667/53667667] -> "../client/w61-x64/glb/ie11-windows6.1-kb3093983-x64_dd1974dad63cded61615935b0748b59450fa559a.cab" [1]
+2015-10-15 14:08:11 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2011/05/windows6.1-kb2525835-x64_7bee786d94ba4faf278f911ba1e2018b525a3306.cab [506312/506312] -> "../client/w61-x64/glb/windows6.1-kb2525835-x64_7bee786d94ba4faf278f911ba1e2018b525a3306.cab" [1]
+2015-10-15 14:08:12 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/04/windows6.1-kb2871997-v2-x64_e0df325c3a4fe7759e2e2858a6e80c8acb03ed10.cab [13273510/13273510] -> "../client/w61-x64/glb/windows6.1-kb2871997-v2-x64_e0df325c3a4fe7759e2e2858a6e80c8acb03ed10.cab" [1]
+2015-10-15 14:08:13 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/10/windows6.1-kb2992611-x64_ac23b51370054518618391b76401bf97aa58a670.cab [5326066/5326066] -> "../client/w61-x64/glb/windows6.1-kb2992611-x64_ac23b51370054518618391b76401bf97aa58a670.cab" [1]
+2015-10-15 14:08:13 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2011/07/windows6.1-kb2536276-v2-x64_5980a26e376c8fc98e589cc1b85b03eeb0c3da8d.cab [418681/418681] -> "../client/w61-x64/glb/windows6.1-kb2536276-v2-x64_5980a26e376c8fc98e589cc1b85b03eeb0c3da8d.cab" [1]
+2015-10-15 14:08:13 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2014/12/windows6.1-kb3021674-x64_e9ce515d19c6f1d5afdb935928afc7d4ef019f94.cab [172207/172207] -> "../client/w61-x64/glb/windows6.1-kb3021674-x64_e9ce515d19c6f1d5afdb935928afc7d4ef019f94.cab" [1]
+2015-10-15 14:08:14 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2011/02/windows6.1-kb2483614-x64_0db7bdde245db948cfa85028a66d6319e6aad5ae.cab [2587048/2587048] -> "../client/w61-x64/glb/windows6.1-kb2483614-x64_0db7bdde245db948cfa85028a66d6319e6aad5ae.cab" [1]
+2015-10-15 14:08:14 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2013/10/windows6.1-kb2893294-x64_a36d735cb59a2a374aa17cb9a5e77d6b7c2c1739.cab [168537/168537] -> "../client/w61-x64/glb/windows6.1-kb2893294-x64_a36d735cb59a2a374aa17cb9a5e77d6b7c2c1739.cab" [1]
+2015-10-15 14:08:14 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/09/windows6.1-kb3087039-x64_6543ecf25746dc015c53f26ec9a80d0024f67c9c.cab [2040709/2040709] -> "../client/w61-x64/glb/windows6.1-kb3087039-x64_6543ecf25746dc015c53f26ec9a80d0024f67c9c.cab" [1]
+2015-10-15 14:08:14 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2011/03/windows6.1-kb2509553-x64_bcfe608b4d9e514ba1dc24a9e9dd6d45016ed3e5.cab [481799/481799] -> "../client/w61-x64/glb/windows6.1-kb2509553-x64_bcfe608b4d9e514ba1dc24a9e9dd6d45016ed3e5.cab" [1]
+2015-10-15 14:08:15 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2012/11/windows6.1-kb2765809-x64_9ec667721ea4ee940905d11fe74497f205b36454.cab [491000/491000] -> "../client/w61-x64/glb/windows6.1-kb2765809-x64_9ec667721ea4ee940905d11fe74497f205b36454.cab" [1]
+2015-10-15 14:08:15 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2013/08/windows6.1-kb2861698-x64_653f5e3961b00d6472eb84b815926dc972103e1a.cab [545507/545507] -> "../client/w61-x64/glb/windows6.1-kb2861698-x64_653f5e3961b00d6472eb84b815926dc972103e1a.cab" [1]
+2015-10-15 14:08:15 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2013/10/windows6.1-kb2868626-x64_3b34d4c8e2c29a394ad3c536549347c37adfa734.cab [2037431/2037431] -> "../client/w61-x64/glb/windows6.1-kb2868626-x64_3b34d4c8e2c29a394ad3c536549347c37adfa734.cab" [1]
+2015-10-15 14:08:16 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/09/windows6.1-kb3080446-x64_31d447a5a3075d8ddfa1c2f07214b669c732d7cb.cab [8105363/8105363] -> "../client/w61-x64/glb/windows6.1-kb3080446-x64_31d447a5a3075d8ddfa1c2f07214b669c732d7cb.cab" [1]
+2015-10-15 14:08:17 URL:http://download.windowsupdate.com/msdownload/update/software/updt/2012/10/windows6.1-kb2756822-x64_1cb60a98c68abfd98349f8a815afc681eb0028da.cab [1204621/1204621] -> "../client/w61-x64/glb/windows6.1-kb2756822-x64_1cb60a98c68abfd98349f8a815afc681eb0028da.cab" [1]
+2015-10-15 14:08:21 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/09/ie10-windows6.1-kb3093983-x64_76accb4d31cdcd7b1d5ef4bfa2a644acd9f60273.cab [44348650/44348650] -> "../client/w61-x64/glb/ie10-windows6.1-kb3093983-x64_76accb4d31cdcd7b1d5ef4bfa2a644acd9f60273.cab" [1]
+2015-10-15 14:08:22 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/08/windows6.1-kb3078601-x64_785cd5e3b02e0afdac45c6d7c481ba9fd7edbdfc.cab [8611593/8611593] -> "../client/w61-x64/glb/windows6.1-kb3078601-x64_785cd5e3b02e0afdac45c6d7c481ba9fd7edbdfc.cab" [1]
+2015-10-15 14:08:24 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2015/10/windows6.1-kb3097966-x64_04fbcdb0539f1cf11ec3445a0fbfffbc7a5d1364.cab [16376761/16376761] -> "../client/w61-x64/glb/windows6.1-kb3097966-x64_04fbcdb0539f1cf11ec3445a0fbfffbc7a5d1364.cab" [1]
+2015-10-15 14:08:24 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2013/11/windows6.1-kb2887069-x64_8fee958453574d9fb4364285f74dc7c9c216075c.cab [692083/692083] -> "../client/w61-x64/glb/windows6.1-kb2887069-x64_8fee958453574d9fb4364285f74dc7c9c216075c.cab" [1]
+2015-10-15 14:08:24 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2013/05/windows6.1-kb2835361-x64_132f52f57e9785acc63ed369465c2511c700b8af.cab [1905567/1905567] -> "../client/w61-x64/glb/windows6.1-kb2835361-x64_132f52f57e9785acc63ed369465c2511c700b8af.cab" [1]
+2015-10-15 14:08:25 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2012/12/windows6.1-kb2742598-x64_89092d187dc5c73ea3d982421ad3d71bf73f5dcd.cab [8730393/8730393] -> "../client/w61-x64/glb/windows6.1-kb2742598-x64_89092d187dc5c73ea3d982421ad3d71bf73f5dcd.cab" [1]
+2015-10-15 14:08:26 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/09/windows6.1-kb2972100-x64_7e48f6e727a9f050fbd4fd6aece30bb249d919a9.cab [1976688/1976688] -> "../client/w61-x64/glb/windows6.1-kb2972100-x64_7e48f6e727a9f050fbd4fd6aece30bb249d919a9.cab" [1]
+2015-10-15 14:08:26 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/06/windows6.1-kb3069392-x64_62580bbfc99022b611f67f95f8c6bdfbbb373c02.cab [371079/371079] -> "../client/w61-x64/glb/windows6.1-kb3069392-x64_62580bbfc99022b611f67f95f8c6bdfbbb373c02.cab" [1]
+2015-10-15 14:08:26 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/03/windows6.1-kb3042553-x64_aa703ce9f057d53bb4151111caca1e1357475eea.cab [392415/392415] -> "../client/w61-x64/glb/windows6.1-kb3042553-x64_aa703ce9f057d53bb4151111caca1e1357475eea.cab" [1]
+2015-10-15 14:08:32 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/08/ie11-windows6.1-kb2976627-x64_ae45b9482ffc62264be3f25c919a059efb78824c.cab [53581152/53581152] -> "../client/w61-x64/glb/ie11-windows6.1-kb2976627-x64_ae45b9482ffc62264be3f25c919a059efb78824c.cab" [1]
+2015-10-15 14:08:33 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2015/01/windows6.1-kb3000483-x64_1a1352d47233733e0652f1a2998c3f66f3727a7b.cab [8405195/8405195] -> "../client/w61-x64/glb/windows6.1-kb3000483-x64_1a1352d47233733e0652f1a2998c3f66f3727a7b.cab" [1]
+2015-10-15 14:08:33 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2015/02/windows6.1-kb3033889-x64_a5ec350caf9b42cd67a4be8c0d0c4e3923054507.cab [728071/728071] -> "../client/w61-x64/glb/windows6.1-kb3033889-x64_a5ec350caf9b42cd67a4be8c0d0c4e3923054507.cab" [1]
+2015-10-15 14:08:33 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/09/windows6.1-kb2977292-x64_e9bd5c5c5b86387a137e6e2a5cc830344d75b60e.cab [291287/291287] -> "../client/w61-x64/glb/windows6.1-kb2977292-x64_e9bd5c5c5b86387a137e6e2a5cc830344d75b60e.cab" [1]
+2015-10-15 14:08:38 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2015/02/windows6.1-kb3033929-x64_5b2988b4619138769d347e12aec350c2cf4db4cd.cab [45796115/45796115] -> "../client/w61-x64/glb/windows6.1-kb3033929-x64_5b2988b4619138769d347e12aec350c2cf4db4cd.cab" [1]
+2015-10-15 14:08:38 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2013/05/windows6.1-kb2813430-x64_4b9efde2b43f5eb05b7c5b93791144614845ff2a.cab [3862621/3862621] -> "../client/w61-x64/glb/windows6.1-kb2813430-x64_4b9efde2b43f5eb05b7c5b93791144614845ff2a.cab" [1]
+2015-10-15 14:08:38 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2014/10/windows6.1-kb3005607-x64_cd3779850521fa10a0a8b72890aad4840af70dd3.cab [1363923/1363923] -> "../client/w61-x64/glb/windows6.1-kb3005607-x64_cd3779850521fa10a0a8b72890aad4840af70dd3.cab" [1]
+2015-10-15 14:08:39 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/09/windows6.1-kb2968294-x64_6786c13f4fd16788eb4b575883460bcabaf3d46d.cab [1229854/1229854] -> "../client/w61-x64/glb/windows6.1-kb2968294-x64_6786c13f4fd16788eb4b575883460bcabaf3d46d.cab" [1]
+2015-10-15 14:08:39 URL:http://download.windowsupdate.com/msdownload/update/software/crup/2011/06/windows6.1-kb2552343-x64_51acdacad4855a2a04f35e2ac511fd3832a5d931.cab [562020/562020] -> "../client/w61-x64/glb/windows6.1-kb2552343-x64_51acdacad4855a2a04f35e2ac511fd3832a5d931.cab" [1]
+2015-10-15 14:08:40 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/04/windows6.1-kb3023215-x64_cb531441d659f68d1b0361d97273973d010cf3da.cab [5010464/5010464] -> "../client/w61-x64/glb/windows6.1-kb3023215-x64_cb531441d659f68d1b0361d97273973d010cf3da.cab" [1]
+2015-10-15 14:08:40 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2012/02/windows6.1-kb2647170-x64_7473723374b11dbceb390e7aa9c28ce5340652ba.cab [375679/375679] -> "../client/w61-x64/glb/windows6.1-kb2647170-x64_7473723374b11dbceb390e7aa9c28ce5340652ba.cab" [1]
+2015-10-15 14:08:40 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2011/05/windows6.1-kb2535512-x64_9abaedef698156c8a01bc2bd2dd17ff32510905a.cab [78663/78663] -> "../client/w61-x64/glb/windows6.1-kb2535512-x64_9abaedef698156c8a01bc2bd2dd17ff32510905a.cab" [1]
+2015-10-15 14:08:40 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/02/windows6.1-kb3035126-x64_adbc52e8abd005e2e8b9e02325cfe45717a2b0ee.cab [547461/547461] -> "../client/w61-x64/glb/windows6.1-kb3035126-x64_adbc52e8abd005e2e8b9e02325cfe45717a2b0ee.cab" [1]
+2015-10-15 14:08:40 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/06/windows6.1-kb3069762-x64_4ed0176685f7d1880c6ea76fab837842a128deab.cab [1405285/1405285] -> "../client/w61-x64/glb/windows6.1-kb3069762-x64_4ed0176685f7d1880c6ea76fab837842a128deab.cab" [1]
+2015-10-15 14:08:41 URL:http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/07/windows6.1-kb3072633-x64_e30b64e3446c4a51b77d42dc00cebb9382894f36.cab [1568255/1568255] -> "../client/w61-x64/glb/windows6.1-kb3072633-x64_e30b64e3446c4a51b77d42dc00cebb9382894f36.cab" [1]
+2015-10-15 14:08:43 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2012/04/windows6.1-kb2604114-x64_d1fd3debcb8dd2da164c45f689a1c0e449c38159.cab [24906365/24906365] -> "../client/w61-x64/glb/windows6.1-kb2604114-x64_d1fd3debcb8dd2da164c45f689a1c0e449c38159.cab" [1]
+2015-10-15 14:08:45 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/07/windows6.1-kb2943357-x64_dc59f4f51d16484d7b72cb38d8b8931f7e38e524.cab [15368668/15368668] -> "../client/w61-x64/glb/windows6.1-kb2943357-x64_dc59f4f51d16484d7b72cb38d8b8931f7e38e524.cab" [1]
+2015-10-15 14:08:46 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2012/10/windows6.1-kb2729451-x64_444bda5997b67b7df06a22464c3cb358e686cea6.cab [14412715/14412715] -> "../client/w61-x64/glb/windows6.1-kb2729451-x64_444bda5997b67b7df06a22464c3cb358e686cea6.cab" [1]
+2015-10-15 14:08:46 URL:http://download.windowsupdate.com/msdownload/update/software/secu/2011/05/windows6.1-kb2544893-x64_21bb7cf8af8571e12267e165c4687429dc966544.cab [850170/850170] -> "../client/w61-x64/glb/windows6.1-kb2544893-x64_21bb7cf8af8571e12267e165c4687429dc966544.cab" [1]
+2015-10-15 14:08:47 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2014/10/windows6.1-kb3010788-x64_06586fff9ec20db81a737282e2bced24e52fdaca.cab [89863/89863] -> "../client/w61-x64/glb/windows6.1-kb3010788-x64_06586fff9ec20db81a737282e2bced24e52fdaca.cab" [1]
+2015-10-15 14:08:47 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2015/01/windows6.1-kb3019978-x64_1f962d6fb7f85fa5ec63366a6920ee288df52d71.cab [61139/61139] -> "../client/w61-x64/glb/windows6.1-kb3019978-x64_1f962d6fb7f85fa5ec63366a6920ee288df52d71.cab" [1]
+2015-10-15 14:08:47 URL:http://download.windowsupdate.com/c/msdownload/update/software/secu/2013/10/windows6.1-kb2862152-x64_ed45dcf054886800ff4dc5e0028e817c5cc270d3.cab [1051842/1051842] -> "../client/w61-x64/glb/windows6.1-kb2862152-x64_ed45dcf054886800ff4dc5e0028e817c5cc270d3.cab" [1]
+15-10-2015 14:08:47,31 - Info: Downloaded/validated 192 dynamically determined updates for w61-x64 glb
+15-10-2015 14:08:50,44 - Info: Cleaned up client directory for w61-x64 glb
+15-10-2015 14:08:50,45 - Info: Removed NTFS alternate data streams for w61-x64 glb
+15-10-2015 14:09:17,85 - Info: Verified digital file signatures for w61-x64 glb
+15-10-2015 14:09:37,01 - Info: Created integrity database for w61-x64 glb
+15-10-2015 14:09:37,06 - Info: Ending WSUS Offline Update download for w61-x64 glb
+"@
+
diff --git a/Dennis_Scripts/InteractWithAppFabric.ps1 b/Dennis_Scripts/InteractWithAppFabric.ps1
new file mode 100644
index 0000000..68c51b1
--- /dev/null
+++ b/Dennis_Scripts/InteractWithAppFabric.ps1
@@ -0,0 +1,16 @@
+Import-Module 'C:\Program Files\AppFabric 1.1 for Windows Server\Microsoft.ApplicationServer.Caching.Client.dll'
+Import-Module 'C:\Program Files\AppFabric 1.1 for Windows Server\Microsoft.ApplicationServer.Caching.Core.dll'
+
+Import-Module 'C:\users\Administrator.DENMARK-IFS\Desktop\ROSA.TPSession.Management.Entities.dll'
+
+[microsoft.applicationserver.caching.datacacheserverendpoint[]]$servers = (New-Object microsoft.applicationserver.caching.datacacheserverendpoint('REJK-A-CAC201',22233))
+
+$factoryconfig = New-Object microsoft.applicationserver.caching.datacachefactoryconfiguration
+$factoryconfig.Servers = $servers
+
+$factory = new-object microsoft.applicationserver.caching.datacachefactory($factoryconfig)
+
+# Get-Cache | select CacheName
+
+$datacache = $factory.GetCache('REF_Business_Objects')
+
diff --git a/Dennis_Scripts/LogSearcher.ps1 b/Dennis_Scripts/LogSearcher.ps1
new file mode 100644
index 0000000..38dac33
--- /dev/null
+++ b/Dennis_Scripts/LogSearcher.ps1
@@ -0,0 +1,18 @@
+& {
+ $path = 'd-drive\ifsbosystem\log\*.Log*' # Where and what to look for
+ $serverpattern = "REJK-P-APP" # server name pattern
+ $servercount = 1..4 # server 1..n
+ $searchpattern = '2016-02-01 09:42'
+
+ # ----------- code here ------------ #
+
+ $files = $servercount | ForEach-Object {
+ Get-Item ("\\$serverpattern{0:d3}\$path" -f $_) | Where Name -match '\.log'
+ }
+
+ $strings = $files | Select-String -Pattern $searchpattern
+
+ $openfiles = $strings | Out-GridView -PassThru
+
+ $openfiles | Sort-Object Path -Unique | ForEach-Object { & 'C:\Program Files (x86)\Notepad++\notepad++.exe' $_.Path }
+}
\ No newline at end of file
diff --git a/Dennis_Scripts/Logparse.ps1 b/Dennis_Scripts/Logparse.ps1
new file mode 100644
index 0000000..beb1081
--- /dev/null
+++ b/Dennis_Scripts/Logparse.ps1
@@ -0,0 +1,113 @@
+$skipDebug = $true
+
+
+$servers = @{
+ A = 'REJK-A-WEB201'
+ C = 'REJK-C-WEB301'
+ E = 'REJK-E-WEB401'
+ Q = 'REJK-Q-WEB101','REJK-Q-WEB102'
+ P = 'REJK-P-WEB003','REJK-P-WEB004'
+}
+
+$boris = $null
+
+if((hostname) -match 'REJK-(.)-.*') {
+ $boris = $servers[$Matches[1]]
+}
+
+$logs = foreach($server in $boris) { Get-Item "\\$server\d-drive\ifsbosystem\log\borisws.log*" | sort lastwritetime }
+
+
+
+$result = foreach($log in $logs) {
+ $content = Get-Content $log
+
+ $current = $null
+ $i = 0
+
+ foreach($line in $content) {
+ $i++
+
+ # With ConsoleID
+ # 2017-09-14 07:44:41.905 REJK-P-WEB003 [Thread 10652] WARN - [BFEBFBFF000306C37446A0B23EBB] - The translation of configuration ke...........
+ if($line -match '([0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2}\.[0-9]{3}) ([a-z\-0-9]+) \[Thread ([0-9]+) *\] ([a-z]+) * - \[([a-z0-9]+)\] - (.*)') {
+
+ if($current -ne $null) {
+ Write-Output $current
+ }
+
+ $current = [pscustomobject]@{
+ Timestamp = $Matches[1]
+ Server = $Matches[2]
+ Thread = $Matches[3]
+ Type = $Matches[4]
+ ConsoleID = $Matches[5]
+ Message = $Matches[6]
+ Details = New-Object System.Collections.Generic.List`[string`]
+ }
+
+ if($skipDebug -and $current.Type -eq 'DEBUG') {
+ $current = $null
+ }
+
+ continue
+ }
+
+ # No ConsoleID
+ # 2017-09-14 07:44:42.061 REJK-P-WEB003 [Thread 8480 ] INFO - BORIS: session start
+ if($line -match '([0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2}\.[0-9]{3}) ([a-z\-0-9]+) \[Thread ([0-9]+) *\] ([a-z]+) * - (.*)') {
+
+ if($current.Message -like '*GVSS RETURN PARAMETERS*') {
+ $next = $Matches[5]
+
+ $null = $current.Details.Add($next)
+
+ if($next -eq '}') {
+ Write-Output $current
+ $current = $null
+ }
+
+ continue
+ }
+
+ elseif($current -ne $null) {
+ Write-Output $current
+ }
+
+ $current = [pscustomobject]@{
+ Timestamp = $Matches[1]
+ Server = $Matches[2]
+ Thread = $Matches[3]
+ Type = $Matches[4]
+ ConsoleID = $null
+ Message = $Matches[5]
+ Details = New-Object System.Collections.Generic.List`[string`]
+ }
+
+ if($skipDebug -and $current.Type -eq 'DEBUG') {
+ $current = $null
+ }
+
+ continue
+ }
+
+
+ # Does not conform to any known pattern, assumed to be exception details and added to $current
+ if($current -eq $null) {
+ Write-Verbose -Message "Unable to add $line to current - current is null" -Verbose
+ continue
+ }
+
+ $null = $current.Details.Add($line)
+
+ if($i -eq $content.Length) {
+ Write-Output $current
+ }
+ }
+}
+
+
+
+
+
+$result | sort timestamp | where { $_.type -ne 'debug' -and $_.message -notmatch 'performance monitoring' } | Out-GridView
\ No newline at end of file
diff --git a/Dennis_Scripts/MARK Hash.ps1 b/Dennis_Scripts/MARK Hash.ps1
new file mode 100644
index 0000000..8bb5778
--- /dev/null
+++ b/Dennis_Scripts/MARK Hash.ps1
@@ -0,0 +1,15 @@
+$datetime = [datetime]::Parse('2014-09-12 15:37:40.400').AddTicks(2002)
+
+$salt = '{0:x2}' -f $datetime.Ticks
+
+$imei = 866265033978752
+
+$string = "$imei$salt"
+
+$hashBuilder = New-Object System.Text.StringBuilder
+
+[System.Security.Cryptography.HashAlgorithm]::Create('SHA256').ComputeHash([System.Text.Encoding]::UTF8.GetBytes($string)) | ForEach-Object {
+ [void]$hashBuilder.Append($_.ToString('x2'))
+}
+
+$hash = $hashBuilder.ToString()
\ No newline at end of file
diff --git a/Dennis_Scripts/MeasureTTTimespan.ps1 b/Dennis_Scripts/MeasureTTTimespan.ps1
new file mode 100644
index 0000000..045604d
--- /dev/null
+++ b/Dennis_Scripts/MeasureTTTimespan.ps1
@@ -0,0 +1,18 @@
+$result = @{}
+
+1..16 | % {
+ $s = 'REJK-P-TCS{0:d3}' -f $_
+ $result[$s] = get-item "\\$s\d-drive\ifsbosystem\log\tt*"
+}
+
+foreach($k in $result.keys | sort) {
+ $first = $result[$k] | select -first 1
+ $last = $result[$k] | select -last 1
+
+ $firstTime = [datetime]::ParseExact($first.BaseName.Substring(2), 'yyMMddHHmmss', [cultureinfo]::InvariantCulture)
+ $lastTime = [datetime]::ParseExact($last.BaseName.Substring(2), 'yyMMddHHmmss', [cultureinfo]::InvariantCulture)
+
+ $span = New-TimeSpan -Start $firstTime -End $lastTime
+
+ Write-Verbose -Verbose "Server: $k - First: $($first.Name) - Last: $($last.Name) - TimeSpan:$span"
+}
\ No newline at end of file
diff --git a/Dennis_Scripts/MissingTransactions/dealwithresults.ps1 b/Dennis_Scripts/MissingTransactions/dealwithresults.ps1
new file mode 100644
index 0000000..d8332fa
--- /dev/null
+++ b/Dennis_Scripts/MissingTransactions/dealwithresults.ps1
@@ -0,0 +1,67 @@
+1..10 | % {
+ $server = ('REJK-P-SPS{0:d3}' -f $_)
+
+ $folders = Get-Item -Path "\\$server\d$\ifsbodata\fsv\outgoing_notprocessed_files\*"
+
+ $files = $folders | Where { [int]::Parse($_.Name) -ge 20161026 } | Get-ChildItem -Recurse | Where { $_.Attributes -notcontains 'directory' -and $_.Name -notmatch 'csv.gz' }
+
+ $files | Copy-Item -Destination "\\$server\d$\ifsbodata\fsv\incoming\dcp_ud"
+
+ Write-Host "$server - $($files.Count) copied"
+}
+1..6 | % {
+ $server = ('REJK-P-DPS{0:d3}' -f $_)
+
+ $folders = Get-Item -Path "\\$server\d$\ifsbodata\fsv\outgoing_notprocessed_files\*"
+
+ $files = $folders | Where { [int]::Parse($_.Name) -ge 20161026 } | Get-ChildItem -Recurse | Where { $_.Attributes -notcontains 'directory' -and $_.Name -notmatch 'csv.gz' }
+
+ $files | Copy-Item -Destination "\\$server\d$\ifsbodata\fsv\incoming\dcp_ud"
+
+ Write-Host "$server - $($files.Count) copied"
+}
+
+
+
+
+
+$select = & {
+ 1..10 | % {
+ $server = ('rejk-p-sps{0:d3}' -f $_)
+ Write-Progress -Activity 'Scanning' -Status $server
+ Get-Item "\\$server\D-Drive\IFSBOData\FSV\Outgoing_histo\20161026\FSV_HistoOutgoing.txt" | Select-String -Pattern '2016/10/26 18'
+ }
+
+ 1..6 | % {
+ Write-Progress -Activity 'Scanning' -Status $server
+ $server = ('rejk-p-dps{0:d3}' -f $_)
+ Get-Item "\\$server\D-Drive\IFSBOData\FSV\Outgoing_histo\20161026\FSV_HistoOutgoing.txt" | Select-String -Pattern '2016/10/26 18'
+ }
+}
+
+
+$csv = $select.line | ConvertFrom-Csv -Delimiter ';' -Header ('box name ; file name ; date of arrival ; number of retries ; date of last send info ; date of ack ; row of sending ; current date' -split ' ; ')
+
+
+$csv2 = foreach($c in $csv ) {
+ if($c.'date of arrival' -match '2016/10/26 18') { $c }
+}
+
+
+$from = (Get-Date 'October 26, 2016 18:29:50')
+$to = (Get-Date 'October 26, 2016 18:54:00')
+$csv3 = foreach($c in $csv2) {
+ $d = [datetime]::ParseExact($c.'date of arrival'.trim(), 'yyyy/MM/dd HH/mm/ss', [cultureinfo]::InvariantCulture)
+
+ #Write-Host "$($d.ToString('yyyy-MM-dd HH:mm:ss')) - " -NoNewline
+
+ if($d -gt $from -and $d -lt $to) {
+ $c
+ #Write-Host "OK - Is between $($from.ToString('yyyy-MM-dd HH:mm:ss')) and $($to.ToString('yyyy-MM-dd HH:mm:ss'))"
+ }
+ else {
+ #Write-Host "Not between $($from.ToString('yyyy-MM-dd HH:mm:ss')) and $($to.ToString('yyyy-MM-dd HH:mm:ss'))"
+ }
+}
+
+$csv3 = $csv3 | sort 'date of arrival'
\ No newline at end of file
diff --git a/Dennis_Scripts/MissingTransactions/missingtransactions.ps1 b/Dennis_Scripts/MissingTransactions/missingtransactions.ps1
new file mode 100644
index 0000000..93f4225
--- /dev/null
+++ b/Dennis_Scripts/MissingTransactions/missingtransactions.ps1
@@ -0,0 +1,96 @@
+workflow MissingTransactions {
+ $servers = Get-Item "C:\users\m.nielsen\documents\thales\missingtransactions\*" | Where-Object -FilterScript { $_.Attributes -icontains 'directory' }
+
+
+ foreach ($s in $servers) {
+ $dates = Get-Item -Path "$($s.FullName)\OutgoingNotProcessed\*"
+
+ foreach -parallel -throttlelimit 4 ($d in $dates) {
+
+ InlineScript {
+ $date = $using:d
+ $server = $using:s
+
+
+ try {
+
+ $files = Get-ChildItem -Recurse "$($date.FullName)\rejk-p-mdl003v\dcp_ud" -File
+
+ Write-Verbose "$($server.Name) - $($date.Name) - Csv Import"
+ $csv = Import-Csv "$($server.FullName)\OutgoingHistory\$($date.Name)\fsv_histooutgoing.txt" -Header ('box name ; file name ; date of arrival ; number of retries ; date of last send info ; date of ack ; row of sending ; current date' -split ' ; ') -Delimiter ';'
+
+ $dateFormatted = [datetime]::ParseExact($date.Name,'yyyyMMdd', [cultureinfo]::InvariantCulture)
+
+ $filecount = 0
+ foreach ($file in $files) {
+ try {
+ Write-Verbose "$($server.Name) - $($date.Name) - $($file.Name)"
+
+ $filename = $file.Name
+
+ $result = foreach($entry in $csv) {
+ if($entry.'file name' -match $filename) {
+ $entry
+ }
+ }
+
+ foreach($entry in $result) {
+ if($entry.'date of ack' -ne $null) {
+
+ Write-Verbose "$($server.Name) - $($date.Name) - $($file.Name) - It's a match"
+
+ $foundInSql = 0
+ [pscustomobject]@{
+ Filename = $filename
+ DateOfAck = $($entry.'date of ack')
+ FoundInSQL = $foundInSql
+ Server = $server.name
+ Date = $date.Name
+ }
+ }
+ }
+ }
+ catch {
+ Write-Warning "File $($file.Name) failed: $_"
+ }
+ }
+ }
+ catch {
+ Write-Warning "Date $($date.Name) failed: $_"
+ }
+ }
+ }
+ }
+}
+
+$result = MissingTransactions -Verbose
+
+
+$result | Export-Csv csv.csv -Delimiter ';' -NoTypeInformation
+
+$csv = import-csv csv.csv -Delimiter ';'
+
+$count = 0
+$csv2 = foreach($entry in $csv) {
+ $count++
+ Write-progress -Activity "Finding nonacked" -Status "$count / $($csv.Count)"
+
+ $matches = foreach($c in $csv) {
+ if($c.filename -eq $entry.filename) {
+ $c
+ }
+ }
+
+ $isack = $false
+
+ foreach($m in $matches) {
+ if($m.dateofack -ne 'never positif ack ') {
+ $isack = $true
+ break
+ }
+ }
+
+ if(-not $isack) {
+ $entry
+ }
+}
\ No newline at end of file
diff --git a/Dennis_Scripts/MissingTransactions/missingtransactions2.ps1 b/Dennis_Scripts/MissingTransactions/missingtransactions2.ps1
new file mode 100644
index 0000000..83c6a4a
--- /dev/null
+++ b/Dennis_Scripts/MissingTransactions/missingtransactions2.ps1
@@ -0,0 +1,85 @@
+workflow MissingTransactions {
+ #$servers = Get-Item "T:\m.nielsen\missingtransactions\*" | Where-Object -FilterScript { $_.Attributes -contains 'directory' }
+
+ $servers = @(
+ @{ Name = 'REJK-P-SPS001'; FullName = '\\REJK-P-SPS001\d-drive\ifsbodata\fsv' }
+ @{ Name = 'REJK-P-SPS002'; FullName = '\\REJK-P-SPS002\d-drive\ifsbodata\fsv' }
+ @{ Name = 'REJK-P-SPS003'; FullName = '\\REJK-P-SPS003\d-drive\ifsbodata\fsv' }
+ @{ Name = 'REJK-P-SPS004'; FullName = '\\REJK-P-SPS004\d-drive\ifsbodata\fsv' }
+ @{ Name = 'REJK-P-SPS005'; FullName = '\\REJK-P-SPS005\d-drive\ifsbodata\fsv' }
+ @{ Name = 'REJK-P-SPS006'; FullName = '\\REJK-P-SPS006\d-drive\ifsbodata\fsv' }
+ @{ Name = 'REJK-P-SPS007'; FullName = '\\REJK-P-SPS007\d-drive\ifsbodata\fsv' }
+ @{ Name = 'REJK-P-SPS008'; FullName = '\\REJK-P-SPS008\d-drive\ifsbodata\fsv' }
+ @{ Name = 'REJK-P-SPS009'; FullName = '\\REJK-P-SPS009\d-drive\ifsbodata\fsv' }
+ @{ Name = 'REJK-P-SPS010'; FullName = '\\REJK-P-SPS010\d-drive\ifsbodata\fsv' }
+ @{ Name = 'REJK-P-DPS001'; FullName = '\\REJK-P-DPS001\d-drive\ifsbodata\fsv' }
+ @{ Name = 'REJK-P-DPS002'; FullName = '\\REJK-P-DPS002\d-drive\ifsbodata\fsv' }
+ @{ Name = 'REJK-P-DPS003'; FullName = '\\REJK-P-DPS003\d-drive\ifsbodata\fsv' }
+ @{ Name = 'REJK-P-DPS004'; FullName = '\\REJK-P-DPS004\d-drive\ifsbodata\fsv' }
+ @{ Name = 'REJK-P-DPS005'; FullName = '\\REJK-P-DPS005\d-drive\ifsbodata\fsv' }
+ @{ Name = 'REJK-P-DPS006'; FullName = '\\REJK-P-DPS006\d-drive\ifsbodata\fsv' }
+ )
+
+
+ $dates = foreach ($s in $servers) {
+ Get-Item -Path "$($s.FullName)\outgoing_notprocessed_files\*"
+ }
+
+ foreach -parallel -throttlelimit 4 ($d in $dates) {
+
+ InlineScript {
+ $date = $using:d
+ $server = @{
+ FullName = $date.FullName.Substring(0, '\\rejk-p-xxxyyy\d-drive\ifsbodata\fsv'.length)
+ Name = $date.FullName.Substring(2, 'rejk-p-xxxyyy'.length)
+ }
+
+
+ try {
+
+ $files = Get-ChildItem -Recurse "$($date.FullName)\rejk-p-mdl003v\dcp_ud" -File
+
+ Write-Verbose "$($server.Name) - $($date.Name) - Csv Import"
+ $csv = Import-Csv "$($server.FullName)\outgoing_histo\$($date.Name)\fsv_histooutgoing.txt" -Header ('box name ; file name ; date of arrival ; number of retries ; date of last send info ; date of ack ; row of sending ; current date' -split ' ; ') -Delimiter ';'
+
+ $dateFormatted = [datetime]::ParseExact($date.Name,'yyyyMMdd', [cultureinfo]::InvariantCulture)
+
+ $filecount = 0
+ foreach ($file in $files) {
+ $filecount++
+
+ try {
+ Write-Verbose "$($server.Name) - $($date.Name) - $($file.Name) - $filecount / $($files.Count)"
+
+ $filename = $file.Name
+
+ $result = foreach($entry in $csv) {
+ if($entry.'file name' -match $filename) {
+ $entry
+ }
+ }
+
+ foreach($entry in $result) {
+ if($entry.'date of ack' -ne $null) {
+ [pscustomobject]@{
+ Filename = $filename
+ DateOfAck = $($entry.'date of ack')
+ Server = $server.name
+ Date = $date.Name
+ }
+ }
+ }
+ }
+ catch {
+ Write-Warning "File $($file.Name) failed: $_"
+ }
+ }
+ }
+ catch {
+ Write-Warning "Date $($date.Name) failed: $_"
+ }
+ }
+ }
+}
+
+$result = MissingTransactions -Verbose
\ No newline at end of file
diff --git a/Dennis_Scripts/MissingTransactions/parsemissingtransactions.ps1 b/Dennis_Scripts/MissingTransactions/parsemissingtransactions.ps1
new file mode 100644
index 0000000..25b7fbe
--- /dev/null
+++ b/Dennis_Scripts/MissingTransactions/parsemissingtransactions.ps1
@@ -0,0 +1,58 @@
+$csv = import-csv C:\users\ewpmni\csv.csv -Delimiter ';'
+
+$count = 0
+$csv2 = foreach($entry in $csv) {
+ $count++
+ Write-progress -Activity "Finding nonacked" -Status "$count / $($csv.Count)"
+
+ $matches = foreach($c in $csv) {
+ if($c.filename -eq $entry.filename) {
+ $c
+ }
+ }
+
+ $isack = $false
+
+ foreach($m in $matches) {
+ if($m.dateofack -ne 'never positif ack ') {
+ $isack = $true
+ break
+ }
+ }
+
+ if(-not $isack) {
+ $entry
+ }
+}
+
+
+
+$count = 0
+$csv3 = foreach($c in $csv2) {
+ $count++
+ Write-progress -activity "csv" -status "$count / $($csv2.Count)"
+ $path = "T:\m.nielsen\missingtransactions\$($c.server)\OutgoingNotProcessed\$($c.Date)\REJK-P-MDL003V\dcp_ud\$($c.Filename)"
+ $item = Get-Item -Path $path
+
+ [pscustomobject]@{
+ Filename = $c.Filename
+ DateOfAck = $c.DateOfAck
+ Server = $c.Server
+ Date = $c.Date
+ DateFormatted = [datetime]::ParseExact($c.date, 'yyyyMMdd', [cultureinfo]::InvariantCulture)
+ DateModified = $item.LastWriteTime
+ }
+}
+
+
+$count = 0
+$sql = foreach($c in $csv3) {
+ $count++
+ Write-progress -activity "csv" -status "$count / $($csv2.Count)"
+
+ Write-Output "(N'$($c.Filename)', '$($c.DateModified.ToString('yyyy-MM-dd HH:mm:ss'))',0, NULL)"
+
+}
+
+
+$csv3 | select Filename, DateModified | Export-Csv -NoTypeInformation -Delimiter ';' T:\m.nielsen\MissingTransactions\csv2.csv -NoClobber
\ No newline at end of file
diff --git a/Dennis_Scripts/MissingTransactions/workflow.ps1 b/Dennis_Scripts/MissingTransactions/workflow.ps1
new file mode 100644
index 0000000..4ec7fe6
--- /dev/null
+++ b/Dennis_Scripts/MissingTransactions/workflow.ps1
@@ -0,0 +1,55 @@
+workflow MissingTransactions {
+
+
+ foreach -parallel ($servernum in 1..10) {
+
+
+
+
+ $dates = Get-Item -Path "D:\IFSBOData\FSV\Outgoing_notprocessed_files\*"
+
+ foreach -parallel -throttlelimit 10 ($date in $dates) {
+ try {
+ $files = Get-ChildItem -Recurse "D:\IFSBOData\FSV\Outgoing_notprocessed_files\$($date.Name)\rejk-p-mdl003v\dcp_ud" | Where-Object -FilterScript { $_.Attributes -cnotcontains 'directory' }
+
+ Write-Verbose "$computername - csv import"
+ $csv = Import-Csv "D:\IFSBOData\FSV\outgoing_histo\$($date.Name)\fsv_histooutgoing.txt" -Header ('box name ; file name ; date of arrival ; number of retries ; date of last send info ; date of ack ; row of sending ; current date' -split ' ; ') -Delimiter ';'
+
+ $dateFormatted = [datetime]::ParseExact($date.Name,'yyyyMMdd', [cultureinfo]::InvariantCulture)
+
+
+ $filecount = 0
+ foreach($file in $files) {
+ try {
+ $filecount++
+
+ $filename = $file.Name
+
+ Write-Verbose "$computername - file filter"
+ $result = $csv | Where-Object -FilterScript { $_.'file name' -match $filename }
+ if($result.'date of ack' -ne $null) {
+ Write-Verbose "$computername - returning obj"
+ $foundInSql = 0
+ [pscustomobject]@{
+ Filename = $filename
+ DateOfAck = $($result.'date of ack')
+ FoundInSQL = $foundInSql
+ Server = $servername
+ Date = $date.Name
+ }
+ }
+
+ }
+ catch {
+ Write-Warning "File $($file.Name) failed: $_"
+ }
+ }
+ }
+ catch {
+ Write-Warning "Date $($date.Name) failed: $_"
+ }
+ }
+ }
+}
+
+$result = MissingTransactions
\ No newline at end of file
diff --git a/Dennis_Scripts/NagiosAlertParse.ps1 b/Dennis_Scripts/NagiosAlertParse.ps1
new file mode 100644
index 0000000..0e6f7ed
--- /dev/null
+++ b/Dennis_Scripts/NagiosAlertParse.ps1
@@ -0,0 +1,5440 @@
+$data = @"
+
+Alert History
+Last Updated: Tue Apr 12 15:20:58 CEST 2016
+Nagios® Core™ 3.4.1 - www.nagios.org
+Logged in as ThalesMNI
+View Status Detail For All Hosts
+View Notifications For All Hosts
+All Hosts and Services
+
+Latest Archive
+Latest Archive
+Log File Navigation
+Tue Apr 12 00:00:00 CEST 2016
+to
+Present..
+
+File: /var/log/nagios/nagios.log
+State type options:
+
+History detail level for all hosts:
+
+ Hide Flapping Alerts
+ Hide Downtime Alerts
+ Hide Process Messages
+ Older Entries First
+Update
+
+April 12, 2016 15:00
+
+Service Ok[12-04-2016 15:18:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044601;OK;HARD;1;OK - MT_Mst_RVM_101 (044601) - 123 minutes since last transaction (0446011K.1E7)
+Service Unknown[12-04-2016 15:13:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049515;UNKNOWN;HARD;1;UNKNOWN - DSB_Bet_RVM_101 (049515) - SPS link down
+Service Critical[12-04-2016 15:11:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 510.067GB (100%) - Free: 1.9GB (0%)
+Service Warning[12-04-2016 15:06:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049542;WARNING;HARD;1;WARNING - DSB_Hjs_RVM_101 (049542) - 1452 minutes since last transaction (0495421K.321)
+Service Ok[12-04-2016 15:05:14] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[12-04-2016 15:04:14] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[12-04-2016 15:03:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044601;UNKNOWN;HARD;1;UNKNOWN - MT_Mst_RVM_101 (044601) - SPS link down
+Service Ok[12-04-2016 15:03:34] SERVICE ALERT: AccessPoints;AP2_Gunnar_Clausensvej_4_Viby_j-10.87.71.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[12-04-2016 15:02:34] SERVICE ALERT: AccessPoints;AP2_Gunnar_Clausensvej_4_Viby_j-10.87.71.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[12-04-2016 15:01:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 508.703GB (99%) - Free: 3.264GB (1%)
+
+April 12, 2016 14:00
+
+Service Ok[12-04-2016 14:57:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045116;OK;HARD;1;OK - ARR_Vd_RVM_101 (045116) - 3 minutes since last transaction (0451161K.45E)
+Service Ok[12-04-2016 14:56:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045115;OK;HARD;1;OK - ARR_Rej_RVM_101 (045115) - 11 minutes since last transaction (0451151K.26D)
+Service Ok[12-04-2016 14:55:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048019;OK;HARD;1;OK - STO_Gre_RVM_101 (048019) - 2 minutes since last transaction (0480193K.09E)
+Service Critical[12-04-2016 14:51:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.488GB (100%) - Free: 2.479GB (0%)
+Service Ok[12-04-2016 14:51:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049558;OK;HARD;1;OK - DSB_Lp_RVM_101 (049558) - 20 minutes since last transaction (0495581K.47F)
+Service Ok[12-04-2016 14:49:44] SERVICE ALERT: REJK-P-SQL006;AX Longrunning Exec;OK;HARD;1;OK
+Service Ok[12-04-2016 14:46:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 508.869GB (99%) - Free: 3.098GB (1%)
+Service Critical[12-04-2016 14:44:44] SERVICE ALERT: REJK-P-SQL006;AX Longrunning Exec;CRITICAL;HARD;1;CRITICAL - found 1 execution(s) running more than 21600 seconds.
+Service Unknown[12-04-2016 14:40:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048019;UNKNOWN;HARD;1;UNKNOWN - STO_Gre_RVM_101 (048019) - SPS link down
+Service Ok[12-04-2016 14:39:24] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045020;OK;HARD;1;OK - NT_Hhs_RVM_101 (045020) - 83 minutes since last transaction (0450201K.A64)
+Service Critical[12-04-2016 14:36:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.516GB (100%) - Free: 2.451GB (0%)
+Service Unknown[12-04-2016 14:36:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049558;UNKNOWN;HARD;1;UNKNOWN - DSB_Lp_RVM_101 (049558) - SPS link down
+Service Ok[12-04-2016 14:31:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 508.956GB (99%) - Free: 3.012GB (1%)
+Service Unknown[12-04-2016 14:24:24] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045020;UNKNOWN;HARD;1;UNKNOWN - NT_Hhs_RVM_101 (045020) - SPS link down
+Service Critical[12-04-2016 14:21:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.658GB (100%) - Free: 2.31GB (0%)
+Service Ok[12-04-2016 14:20:54] SERVICE ALERT: AccessPoints;AP1_Vellingvej_10_Borkop-10.85.71.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[12-04-2016 14:20:44] SERVICE ALERT: AccessPoints;AP2_Vellingvej_10_Borkop-10.85.71.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[12-04-2016 14:20:44] SERVICE ALERT: AccessPoints;AP1_Ostermarksvej_20_hojer-10.85.76.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[12-04-2016 14:20:34] SERVICE ALERT: AccessPoints;AP1_Industrivej_1_Rodekro-10.85.74.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[12-04-2016 14:20:34] SERVICE ALERT: AccessPoints;AP1_Banegaardspladsen_4_Vamdrup-10.85.96.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[12-04-2016 14:19:54] SERVICE ALERT: AccessPoints;AP1_Vellingvej_10_Borkop-10.85.71.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[12-04-2016 14:19:44] SERVICE ALERT: AccessPoints;AP2_Vellingvej_10_Borkop-10.85.71.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[12-04-2016 14:19:44] SERVICE ALERT: AccessPoints;AP1_Ostermarksvej_20_hojer-10.85.76.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[12-04-2016 14:19:44] SERVICE ALERT: AccessPoints;AP1_Industrivej_1_Rodekro-10.85.74.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[12-04-2016 14:19:44] SERVICE ALERT: AccessPoints;AP1_Banegaardspladsen_4_Vamdrup-10.85.96.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[12-04-2016 14:16:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.052GB (99%) - Free: 2.916GB (1%)
+Service Ok[12-04-2016 14:16:04] SERVICE ALERT: AccessPoints;AP2_Norgesvej_2_Hadsund-10.75.12.21;OK;SOFT;3;OK - Got reply from host
+Service Ok[12-04-2016 14:15:54] SERVICE ALERT: AccessPoints;AP1_Norgesvej_2_Hadsund-10.75.12.20;OK;SOFT;3;OK - Got reply from host
+Service Ok[12-04-2016 14:15:54] SERVICE ALERT: AccessPoints;AP2_Jernbanegade_35_Thisted-10.75.37.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[12-04-2016 14:15:04] SERVICE ALERT: AccessPoints;AP2_Norgesvej_2_Hadsund-10.75.12.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[12-04-2016 14:15:04] SERVICE ALERT: AccessPoints;AP1_Norgesvej_2_Hadsund-10.75.12.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[12-04-2016 14:14:54] SERVICE ALERT: AccessPoints;AP2_Jernbanegade_35_Thisted-10.75.37.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[12-04-2016 14:14:04] SERVICE ALERT: AccessPoints;AP2_Norgesvej_2_Hadsund-10.75.12.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[12-04-2016 14:14:04] SERVICE ALERT: AccessPoints;AP1_Norgesvej_2_Hadsund-10.75.12.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[12-04-2016 14:13:54] SERVICE ALERT: AccessPoints;AP2_Jernbanegade_35_Thisted-10.75.37.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[12-04-2016 14:11:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.817GB (100%) - Free: 2.151GB (0%)
+Service Ok[12-04-2016 14:01:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 508.719GB (99%) - Free: 3.249GB (1%)
+
+April 12, 2016 13:00
+
+Service Ok[12-04-2016 13:57:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048006;OK;HARD;1;OK - STO_Klu_RVM_101 (048006) - 99 minutes since last transaction (0480061K.AE4)
+Service Critical[12-04-2016 13:56:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.446GB (100%) - Free: 2.521GB (0%)
+Service Ok[12-04-2016 13:51:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 508.899GB (99%) - Free: 3.068GB (1%)
+Service Warning[12-04-2016 13:51:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049508;WARNING;HARD;1;WARNING - DSB_Ap_RVM_101 (049508) - 1445 minutes since last transaction (0495081K.258)
+Service Critical[12-04-2016 13:31:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.615GB (100%) - Free: 2.352GB (0%)
+Service Warning[12-04-2016 13:30:54] SERVICE ALERT: REJK-P-SQL006;Job - Payment journal posting TSN - BO;WARNING;HARD;1;WARNING - Job has failed 1 times during past 2 executions, Current Status: Waiting
+Service Warning[12-04-2016 13:29:44] SERVICE ALERT: REJK-P-SQL006;Job - Payment journal posting TSM - BO;WARNING;HARD;1;WARNING - Job has failed 1 times during past 2 executions, Current Status: Waiting
+Service Ok[12-04-2016 13:26:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.02GB (99%) - Free: 2.947GB (1%)
+Service Ok[12-04-2016 13:23:54] SERVICE ALERT: REJK-P-SQL006;Job - Payment journal posting ATO - BO;OK;HARD;1;OK, Current Status: Waiting
+Service Critical[12-04-2016 13:16:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.636GB (100%) - Free: 2.332GB (0%)
+Service Ok[12-04-2016 13:15:24] SERVICE ALERT: REJK-P-SPS004;SPS EOD Distribution - Primary Blacklist;OK;HARD;1;OK - VCF: 54/0 (100%) - RVM: 40/0 (100%)
+Service Ok[12-04-2016 13:14:14] SERVICE ALERT: REJK-P-SPS004;SPS EOD Distribution - Action List;OK;HARD;1;OK - VCF: 54/0 (100%) - RVM: 40/0 (100%)
+Service Warning[12-04-2016 13:13:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049515;WARNING;HARD;1;WARNING - DSB_Bet_RVM_101 (049515) - 1452 minutes since last transaction (0495151K.3DE)
+Service Ok[12-04-2016 13:11:34] SERVICE ALERT: REJK-P-SPS004;SPS EOD Distribution - Secondary Blacklist;OK;HARD;1;OK - VCF: 54/0 (100%) - RVM: 40/0 (100%)
+Service Ok[12-04-2016 13:11:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.072GB (99%) - Free: 2.895GB (1%)
+Service Ok[12-04-2016 13:07:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047920;OK;HARD;1;OK - MET_Van_RVM_101 (047920) - 21 minutes since last transaction (0479201K.8C3)
+Service Ok[12-04-2016 13:07:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047019;OK;HARD;1;OK - MET_Vea_RVM_101 (047019) - 21 minutes since last transaction (0470191K.6FC)
+Service Ok[12-04-2016 13:06:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047018;OK;HARD;1;OK - MET_Øre_RVM_101 (047018) - 5 minutes since last transaction (0470181K.8B8)
+Service Ok[12-04-2016 13:05:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047917;OK;HARD;1;OK - MET_Kn_RVM_101 (047917) - 13 minutes since last transaction (0479171K.FCD)
+Service Ok[12-04-2016 13:05:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047003;OK;HARD;1;OK - MET_Lit_RVM_101 (047003) - 5 minutes since last transaction (0470031K.64F)
+Service Ok[12-04-2016 13:04:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047017;OK;HARD;1;OK - MET_Bc_RVM_101 (047017) - 19 minutes since last transaction (0470171K.0D6)
+Service Ok[12-04-2016 13:04:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047902;OK;HARD;1;OK - MET_Khs_RVM_101 (047902) - 79 minutes since last transaction (0479021K.643)
+Service Ok[12-04-2016 13:04:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047002;OK;HARD;1;OK - MET_Fl_RVM_101 (047002) - 34 minutes since last transaction (0470021K.328)
+Service Ok[12-04-2016 13:04:14] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[12-04-2016 13:03:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047015;OK;HARD;1;OK - MET_Uni_RVM_101 (047015) - 10 minutes since last transaction (0470151K.94A)
+Service Ok[12-04-2016 13:03:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047029;OK;HARD;1;OK - MET_Cph_RVM_102 (047029) - 3 minutes since last transaction (0470291K.EB4)
+Service Critical[12-04-2016 13:03:14] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[12-04-2016 13:01:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.904GB (100%) - Free: 2.064GB (0%)
+
+April 12, 2016 12:00
+
+Service Unknown[12-04-2016 12:52:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047920;UNKNOWN;HARD;1;UNKNOWN - MET_Van_RVM_101 (047920) - SPS link down
+Service Unknown[12-04-2016 12:52:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047019;UNKNOWN;HARD;1;UNKNOWN - MET_Vea_RVM_101 (047019) - SPS link down
+Service Ok[12-04-2016 12:51:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 508.726GB (99%) - Free: 3.241GB (1%)
+Service Unknown[12-04-2016 12:51:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047018;UNKNOWN;HARD;1;UNKNOWN - MET_Øre_RVM_101 (047018) - SPS link down
+Service Unknown[12-04-2016 12:50:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047917;UNKNOWN;HARD;1;UNKNOWN - MET_Kn_RVM_101 (047917) - SPS link down
+Service Unknown[12-04-2016 12:50:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047003;UNKNOWN;HARD;1;UNKNOWN - MET_Lit_RVM_101 (047003) - SPS link down
+Service Unknown[12-04-2016 12:49:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047017;UNKNOWN;HARD;1;UNKNOWN - MET_Bc_RVM_101 (047017) - SPS link down
+Service Unknown[12-04-2016 12:49:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047902;UNKNOWN;HARD;1;UNKNOWN - MET_Khs_RVM_101 (047902) - SPS link down
+Service Unknown[12-04-2016 12:49:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047002;UNKNOWN;HARD;1;UNKNOWN - MET_Fl_RVM_101 (047002) - SPS link down
+Service Ok[12-04-2016 12:49:34] SERVICE ALERT: AccessPoints;AP1_Norre_Voldgade_13_Kh-10.74.26.20;OK;SOFT;2;OK - Got reply from host
+Service Unknown[12-04-2016 12:48:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047015;UNKNOWN;HARD;1;UNKNOWN - MET_Uni_RVM_101 (047015) - SPS link down
+Service Critical[12-04-2016 12:48:44] SERVICE ALERT: AccessPoints;AP1_Norre_Voldgade_13_Kh-10.74.26.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[12-04-2016 12:48:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047029;UNKNOWN;HARD;1;UNKNOWN - MET_Cph_RVM_102 (047029) - SPS link down
+Service Critical[12-04-2016 12:41:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.433GB (100%) - Free: 2.534GB (0%)
+Service Ok[12-04-2016 12:36:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 508.886GB (99%) - Free: 3.081GB (1%)
+Service Ok[12-04-2016 12:33:14] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[12-04-2016 12:32:14] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[12-04-2016 12:27:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048006;UNKNOWN;HARD;1;UNKNOWN - STO_Klu_RVM_101 (048006) - SPS link down
+Service Critical[12-04-2016 12:26:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.608GB (100%) - Free: 2.359GB (0%)
+Service Ok[12-04-2016 12:21:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 508.981GB (99%) - Free: 2.986GB (1%)
+Service Critical[12-04-2016 12:11:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.661GB (100%) - Free: 2.306GB (0%)
+Service Ok[12-04-2016 12:06:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.106GB (99%) - Free: 2.861GB (1%)
+Service Ok[12-04-2016 12:02:14] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[12-04-2016 12:01:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045196;OK;HARD;1;OK - ARR_Um_RVM_101 (045196) - 1 minutes since last transaction (0451963K.016)
+Service Critical[12-04-2016 12:01:14] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+
+April 12, 2016 11:00
+
+Service Critical[12-04-2016 11:56:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.759GB (100%) - Free: 2.208GB (0%)
+Service Ok[12-04-2016 11:47:24] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044600;OK;HARD;1;OK - MT_Trg_RVM_101 (044600) - 2 minutes since last transaction (0446003K.00D)
+Service Ok[12-04-2016 11:46:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 508.602GB (99%) - Free: 3.365GB (1%)
+Service Critical[12-04-2016 11:36:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.455GB (100%) - Free: 2.513GB (0%)
+Service Ok[12-04-2016 11:31:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 508.901GB (99%) - Free: 3.066GB (1%)
+Service Ok[12-04-2016 11:26:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049548;OK;HARD;1;OK - DSB_Kvs_RVM_101 (049548) - 1331 minutes since last transaction (0495481K.2C0)
+Service Critical[12-04-2016 11:21:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.491GB (100%) - Free: 2.476GB (0%)
+Service Ok[12-04-2016 11:16:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 508.943GB (99%) - Free: 3.025GB (1%)
+Service Ok[12-04-2016 11:07:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049385;OK;HARD;1;OK - DSB_Kn_RVM_105 (049385) - 2 minutes since last transaction (0493853K.064)
+Service Critical[12-04-2016 11:06:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.656GB (100%) - Free: 2.312GB (0%)
+Service Warning[12-04-2016 11:05:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045152;WARNING;HARD;1;WARNING - ARR_Rk_RVM_101 (045152) - 1455 minutes since last transaction (0451521K.306)
+Service Warning[12-04-2016 11:05:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049917;WARNING;HARD;1;WARNING - DSB_Rf_RVM_101 (049917) - 1444 minutes since last transaction (0499171K.DEC)
+Service Ok[12-04-2016 11:01:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.053GB (99%) - Free: 2.915GB (1%)
+Service Ok[12-04-2016 11:01:14] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[12-04-2016 11:00:14] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+
+April 12, 2016 10:00
+
+Service Unknown[12-04-2016 10:52:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049385;UNKNOWN;HARD;1;UNKNOWN - DSB_Kn_RVM_105 (049385) - SPS link down
+Service Critical[12-04-2016 10:51:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.708GB (100%) - Free: 2.259GB (0%)
+Service Ok[12-04-2016 10:49:54] SERVICE ALERT: REJK-P-SQL003;Unprocessed TCS transactions;OK;HARD;1;OK
+Service Ok[12-04-2016 10:46:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.163GB (99%) - Free: 2.805GB (1%)
+Service Critical[12-04-2016 10:45:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049415;CRITICAL;HARD;1;CRITICAL - DSB_Bp_RVM_101 (049415) - 2894 minutes since last transaction (0494151K.CCB)
+Service Ok[12-04-2016 10:45:04] SERVICE ALERT: REJK-P-BCM003;RCOB import directory count;OK;HARD;1;OK
+Service Ok[12-04-2016 10:44:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045130;OK;HARD;1;OK - ARR_GÃ¥_RVM_101 (045130) - 1303 minutes since last transaction (0451303K.029)
+Service Critical[12-04-2016 10:36:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.838GB (100%) - Free: 2.13GB (0%)
+Service Ok[12-04-2016 10:30:14] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[12-04-2016 10:29:14] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[12-04-2016 10:29:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045130;UNKNOWN;HARD;1;UNKNOWN - ARR_GÃ¥_RVM_101 (045130) - SPS link down
+Service Unknown[12-04-2016 10:26:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049548;UNKNOWN;HARD;1;UNKNOWN - DSB_Kvs_RVM_101 (049548) - SPS link down
+Service Ok[12-04-2016 10:26:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049331;OK;HARD;1;OK - STO_Sol_RVM_101 (049331) - 71 minutes since last transaction (0493311K.0F6)
+Service Ok[12-04-2016 10:26:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 508.782GB (99%) - Free: 3.186GB (1%)
+Service Ok[12-04-2016 10:21:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045138;OK;HARD;1;OK - ARR_Uf_RVM_101 (045138) - 6 minutes since last transaction (0451381K.0DE)
+Service Warning[12-04-2016 10:21:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045111;WARNING;HARD;1;WARNING - ARR_Bw_RVM_101 (045111) - 1446 minutes since last transaction (0451111K.3C6)
+Service Critical[12-04-2016 10:21:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.951GB (100%) - Free: 2.016GB (0%)
+Service Warning[12-04-2016 10:21:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049407;WARNING;HARD;1;WARNING - DSB_Oj_RVM_101 (049407) - 1445 minutes since last transaction (0494071K.FBF)
+Service Ok[12-04-2016 10:13:44] SERVICE ALERT: AccessPoints;AP5_Jegstrupvej_5_Hasselager-10.87.68.24;OK;SOFT;2;OK - Got reply from host
+Service Ok[12-04-2016 10:13:44] SERVICE ALERT: AccessPoints;AP1_Bisgsrdmark_5_Holstebro-10.87.41.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[12-04-2016 10:13:44] SERVICE ALERT: AccessPoints;AP1_Nyvasen_5_Havndal-10.87.54.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[12-04-2016 10:12:54] SERVICE ALERT: AccessPoints;AP5_Jegstrupvej_5_Hasselager-10.87.68.24;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[12-04-2016 10:12:54] SERVICE ALERT: AccessPoints;AP1_Bisgsrdmark_5_Holstebro-10.87.41.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[12-04-2016 10:12:44] SERVICE ALERT: AccessPoints;AP1_Nyvasen_5_Havndal-10.87.54.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[12-04-2016 10:11:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049331;UNKNOWN;HARD;1;UNKNOWN - STO_Sol_RVM_101 (049331) - SPS link down
+Service Ok[12-04-2016 10:11:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047009;OK;HARD;1;OK - MET_Kn_RVM_102 (047009) - 14 minutes since last transaction (0470093K.02D)
+Service Ok[12-04-2016 10:11:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 508.824GB (99%) - Free: 3.143GB (1%)
+Service Critical[12-04-2016 10:09:54] SERVICE ALERT: REJK-P-SQL003;Unprocessed TCS transactions;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Ok[12-04-2016 10:08:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045154;OK;HARD;1;OK - ARR_Sm_RVM_101 (045154) - 7 minutes since last transaction (0451541K.307)
+Service Ok[12-04-2016 10:07:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045001;OK;HARD;1;OK - NT_Ken_RVM_101 (045001) - 36 minutes since last transaction (0450013K.008)
+Service Critical[12-04-2016 10:06:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.594GB (100%) - Free: 2.374GB (0%)
+Service Ok[12-04-2016 10:01:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.099GB (99%) - Free: 2.869GB (1%)
+
+April 12, 2016 09:00
+
+Service Unknown[12-04-2016 09:56:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047009;UNKNOWN;HARD;1;UNKNOWN - MET_Kn_RVM_102 (047009) - SPS link down
+Service Critical[12-04-2016 09:56:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.747GB (100%) - Free: 2.22GB (0%)
+Service Unknown[12-04-2016 09:52:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045001;UNKNOWN;HARD;1;UNKNOWN - NT_Ken_RVM_101 (045001) - SPS link down
+Service Ok[12-04-2016 09:51:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.102GB (99%) - Free: 2.866GB (1%)
+Service Ok[12-04-2016 09:33:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045108;OK;HARD;1;OK - ARR_Tdr_RVM_101 (045108) - 3 minutes since last transaction (0451081K.6AD)
+Service Critical[12-04-2016 09:31:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.809GB (100%) - Free: 2.158GB (0%)
+Service Ok[12-04-2016 09:30:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045147;OK;HARD;1;OK - ARR_Hx_RVM_101 (045147) - 14 minutes since last transaction (0451471K.40F)
+Service Warning[12-04-2016 09:23:54] SERVICE ALERT: REJK-P-SQL006;Job - Payment journal posting ATO - BO;WARNING;HARD;1;WARNING - Job has failed 1 times during past 2 executions, Current Status: Waiting
+Service Ok[12-04-2016 09:22:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045001;OK;HARD;1;OK - NT_Ken_RVM_101 (045001) - 615 minutes since last transaction (0450011K.7A6)
+Service Ok[12-04-2016 09:21:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 508.734GB (99%) - Free: 3.233GB (1%)
+Service Ok[12-04-2016 09:17:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049505;OK;HARD;1;OK - DSB_Tp_RVM_101 (049505) - 2 minutes since last transaction (0495051K.223)
+Service Critical[12-04-2016 09:11:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.51GB (100%) - Free: 2.458GB (0%)
+Service Warning[12-04-2016 09:09:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045113;WARNING;HARD;1;WARNING - ARR_Æk_RVM_101 (045113) - 1449 minutes since last transaction (0451131K.838)
+Service Ok[12-04-2016 09:06:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 508.884GB (99%) - Free: 3.083GB (1%)
+Service Ok[12-04-2016 09:00:24] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049551;OK;HARD;1;OK - DSB_Svv_RVM_101 (049551) - 0 minutes since last transaction (0495511K.635)
+
+April 12, 2016 08:00
+
+Service Critical[12-04-2016 08:56:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.621GB (100%) - Free: 2.346GB (0%)
+Service Ok[12-04-2016 08:51:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.013GB (99%) - Free: 2.955GB (1%)
+Service Ok[12-04-2016 08:42:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045145;OK;HARD;1;OK - ARR_Hw_RVM_101 (045145) - 11 minutes since last transaction (0451451K.2EE)
+Service Critical[12-04-2016 08:41:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.707GB (100%) - Free: 2.261GB (0%)
+Service Warning[12-04-2016 08:38:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045125;WARNING;HARD;1;WARNING - ARR_Vka_RVM_101 (045125) - 1449 minutes since last transaction (0451253K.046)
+Service Ok[12-04-2016 08:36:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.137GB (99%) - Free: 2.83GB (1%)
+Service Ok[12-04-2016 08:29:14] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[12-04-2016 08:28:14] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Ok[12-04-2016 08:28:04] SERVICE ALERT: REJK-P-SPS003;FSV history out;OK;HARD;1;OK
+Service Critical[12-04-2016 08:27:14] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[12-04-2016 08:26:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049564;OK;HARD;1;OK - DSB_Mr_RVM_101 (049564) - 1 minutes since last transaction (0495641K.28A)
+Service Critical[12-04-2016 08:26:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.815GB (100%) - Free: 2.153GB (0%)
+Service Critical[12-04-2016 08:23:04] SERVICE ALERT: REJK-P-SPS003;FSV history out;CRITICAL;HARD;1;CRITICAL - modified time 910 sec exceeded threshold of 900 sec
+Service Ok[12-04-2016 08:16:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 508.677GB (99%) - Free: 3.291GB (1%)
+Service Ok[12-04-2016 08:12:14] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[12-04-2016 08:11:14] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[12-04-2016 08:06:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.428GB (100%) - Free: 2.54GB (0%)
+Service Ok[12-04-2016 08:03:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049555;OK;HARD;1;OK - DSB_Øs_RVM_101 (049555) - 9 minutes since last transaction (0495551K.5AA)
+Service Warning[12-04-2016 08:02:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045163;WARNING;HARD;1;WARNING - ARR_Bic_RVM_101 (045163) - 1442 minutes since last transaction (0451631K.2C9)
+Service Warning[12-04-2016 08:01:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045119;WARNING;HARD;1;WARNING - ARR_Gs_RVM_101 (045119) - 1455 minutes since last transaction (0451191K.7CD)
+Service Ok[12-04-2016 08:01:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 508.851GB (99%) - Free: 3.117GB (1%)
+
+April 12, 2016 07:00
+
+Service Critical[12-04-2016 07:51:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.496GB (100%) - Free: 2.471GB (0%)
+Service Ok[12-04-2016 07:46:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 508.916GB (99%) - Free: 3.052GB (1%)
+Service Warning[12-04-2016 07:42:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045116;WARNING;HARD;1;WARNING - ARR_Vd_RVM_101 (045116) - 1449 minutes since last transaction (0451161K.45D)
+Service Warning[12-04-2016 07:41:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049564;WARNING;HARD;1;WARNING - DSB_Mr_RVM_101 (049564) - 1991 minutes since last transaction (0495641K.289)
+Service Ok[12-04-2016 07:41:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045157;OK;HARD;1;OK - ARR_Vp_RVM_101 (045157) - 0 minutes since last transaction (0451571K.36E)
+Service Warning[12-04-2016 07:40:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049563;WARNING;HARD;1;WARNING - DSB_Os_RVM_101 (049563) - 1455 minutes since last transaction (0495631K.361)
+Service Warning[12-04-2016 07:38:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045154;WARNING;HARD;1;WARNING - ARR_Sm_RVM_101 (045154) - 1452 minutes since last transaction (0451541K.306)
+Service Critical[12-04-2016 07:36:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.729GB (100%) - Free: 2.239GB (0%)
+Service Ok[12-04-2016 07:33:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045134;OK;HARD;1;OK - ARR_Lm_RVM_101 (045134) - 14 minutes since last transaction (0451341K.2F7)
+Service Ok[12-04-2016 07:32:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049404;OK;HARD;1;OK - DSB_Kd_RVM_101 (049404) - 20 minutes since last transaction (0494041K.72B)
+Service Ok[12-04-2016 07:32:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049946;OK;HARD;1;OK - DSB_Kø_RVM_101 (049946) - 35 minutes since last transaction (0499461K.412)
+Service Ok[12-04-2016 07:32:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049534;OK;HARD;1;OK - DSB_Str_RVM_101 (049534) - 67 minutes since last transaction (0495341K.9AC)
+Service Critical[12-04-2016 07:32:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049505;CRITICAL;HARD;1;CRITICAL - DSB_Tp_RVM_101 (049505) - 13997 minutes since last transaction (0495051K.222)
+Service Ok[12-04-2016 07:32:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045133;OK;HARD;1;OK - ARR_Sj_RVM_101 (045133) - 889 minutes since last transaction (0451331K.2CF)
+Service Ok[12-04-2016 07:32:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045163;OK;HARD;1;OK - ARR_Bic_RVM_101 (045163) - 1412 minutes since last transaction (0451631K.2C9)
+Service Ok[12-04-2016 07:32:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049316;OK;HARD;1;OK - DSB_Trk_RVM_101 (049316) - 15 minutes since last transaction (0493161K.53B)
+Service Ok[12-04-2016 07:32:24] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045149;OK;HARD;1;OK - ARR_Hn_RVM_101 (045149) - 901 minutes since last transaction (0451491K.4EE)
+Service Ok[12-04-2016 07:32:24] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045120;OK;HARD;1;OK - ARR_Sej_RVM_101 (045120) - 1147 minutes since last transaction (0451201K.168)
+Service Ok[12-04-2016 07:31:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049914;OK;HARD;1;OK - DSB_Lw_RVM_101 (049914) - 856 minutes since last transaction (0499141K.96D)
+Service Ok[12-04-2016 07:31:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049552;OK;HARD;1;OK - DSB_Svg_RVM_101 (049552) - 623 minutes since last transaction (0495521K.E82)
+Service Ok[12-04-2016 07:31:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049444;OK;HARD;1;OK - DSB_Bl_RVM_101 (049444) - 34 minutes since last transaction (0494441K.EE3)
+Service Ok[12-04-2016 07:31:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049519;OK;HARD;1;OK - DSB_Sd_RVM_101 (049519) - 51 minutes since last transaction (0495191K.39D)
+Service Ok[12-04-2016 07:31:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049403;OK;HARD;1;OK - DSB_Tl_RVM_101 (049403) - 34 minutes since last transaction (0494031K.4B1)
+Service Ok[12-04-2016 07:31:24] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049211;OK;HARD;1;OK - DSB_Jy_RVM_101 (049211) - 34 minutes since last transaction (0492111K.0FD)
+Service Ok[12-04-2016 07:31:24] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045161;OK;HARD;1;OK - ARR_Stu_RVM_101 (045161) - 2236 minutes since last transaction (0451611K.050)
+Service Ok[12-04-2016 07:31:24] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049533;OK;HARD;1;OK - DSB_Ho_RVM_101 (049533) - 51 minutes since last transaction (0495331K.B75)
+Service Ok[12-04-2016 07:31:24] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045106;OK;HARD;1;OK - ARR_Ri_RVM_101 (045106) - 676 minutes since last transaction (0451061K.3B5)
+Service Ok[12-04-2016 07:31:24] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048141;OK;HARD;1;OK - STO_Bft_RVM_101 (048141) - 34 minutes since last transaction (0481411K.B51)
+Service Ok[12-04-2016 07:31:24] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048094;OK;HARD;1;OK - STO_Ryt_RVM_101 (048094) - 1 minutes since last transaction (0480941K.A37)
+Service Warning[12-04-2016 07:31:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045196;WARNING;HARD;1;WARNING - ARR_Um_RVM_101 (045196) - 22771 minutes since last transaction (0451961K.069)
+Service Ok[12-04-2016 07:31:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045148;OK;HARD;1;OK - ARR_Vi_RVM_101 (045148) - 468 minutes since last transaction (0451481K.DE8)
+Service Ok[12-04-2016 07:31:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045119;OK;HARD;1;OK - ARR_Gs_RVM_101 (045119) - 1425 minutes since last transaction (0451191K.7CD)
+Service Ok[12-04-2016 07:31:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.183GB (99%) - Free: 2.784GB (1%)
+Service Warning[12-04-2016 07:30:24] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049551;WARNING;HARD;1;WARNING - DSB_Svv_RVM_101 (049551) - 2309 minutes since last transaction (0495511K.634)
+Service Ok[12-04-2016 07:30:24] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049443;OK;HARD;1;OK - DSB_Lih_RVM_101 (049443) - 5 minutes since last transaction (0494431K.576)
+Service Ok[12-04-2016 07:30:24] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049518;OK;HARD;1;OK - DSB_Hs_RVM_101 (049518) - 17 minutes since last transaction (0495181K.402)
+Service Ok[12-04-2016 07:30:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049352;OK;HARD;1;OK - DSB_Vj_RVM_101 (049352) - 0 minutes since last transaction (0493521K.A51)
+Service Ok[12-04-2016 07:30:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049943;OK;HARD;1;OK - DSB_Ab_RVM_102 (049943) - 12 minutes since last transaction (0499431K.755)
+Service Ok[12-04-2016 07:30:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049531;OK;HARD;1;OK - DSB_Id_RVM_101 (049531) - 996 minutes since last transaction (0495311K.53F)
+Service Ok[12-04-2016 07:30:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045131;OK;HARD;1;OK - ARR_Øg_RVM_101 (045131) - 33 minutes since last transaction (0451311K.E21)
+Service Ok[12-04-2016 07:30:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049374;OK;HARD;1;OK - DSB_Hf_RVM_101 (049374) - 12 minutes since last transaction (0493741K.C54)
+Service Ok[12-04-2016 07:30:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045105;OK;HARD;1;OK - ARR_Sne_RVM_101 (045105) - 12 minutes since last transaction (0451051K.551)
+Service Ok[12-04-2016 07:30:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048126;OK;HARD;1;OK - STO_Alb_RVM_101 (048126) - 17 minutes since last transaction (0481261K.8DC)
+Service Ok[12-04-2016 07:30:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045194;OK;HARD;1;OK - ARR_Yd_RVM_101 (045194) - 1004 minutes since last transaction (0451941K.37E)
+Service Warning[12-04-2016 07:30:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045147;WARNING;HARD;1;WARNING - ARR_Hx_RVM_101 (045147) - 1979 minutes since last transaction (0451471K.40E)
+Service Unknown[12-04-2016 07:26:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049564;UNKNOWN;HARD;1;UNKNOWN - DSB_Mr_RVM_101 (049564) - SPS link down
+Service Warning[12-04-2016 07:26:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045157;WARNING;HARD;1;WARNING - ARR_Vp_RVM_101 (045157) - 1441 minutes since last transaction (0451571K.36D)
+Service Ok[12-04-2016 07:23:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045009;OK;HARD;1;OK - NT_Sgb_RVM_101 (045009) - 773 minutes since last transaction (0450091K.D9D)
+Service Warning[12-04-2016 07:23:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045112;WARNING;HARD;1;WARNING - ARR_Ds_RVM_101 (045112) - 1453 minutes since last transaction (0451121K.242)
+Service Critical[12-04-2016 07:21:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.877GB (100%) - Free: 2.09GB (0%)
+Service Unknown[12-04-2016 07:18:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045134;UNKNOWN;HARD;1;UNKNOWN - ARR_Lm_RVM_101 (045134) - SPS link down
+Service Unknown[12-04-2016 07:17:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049404;UNKNOWN;HARD;1;UNKNOWN - DSB_Kd_RVM_101 (049404) - SPS link down
+Service Unknown[12-04-2016 07:17:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049946;UNKNOWN;HARD;1;UNKNOWN - DSB_Kø_RVM_101 (049946) - SPS link down
+Service Unknown[12-04-2016 07:17:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045133;UNKNOWN;HARD;1;UNKNOWN - ARR_Sj_RVM_101 (045133) - SPS link down
+Service Unknown[12-04-2016 07:17:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049534;UNKNOWN;HARD;1;UNKNOWN - DSB_Str_RVM_101 (049534) - SPS link down
+Service Unknown[12-04-2016 07:17:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045163;UNKNOWN;HARD;1;UNKNOWN - ARR_Bic_RVM_101 (045163) - SPS link down
+Service Unknown[12-04-2016 07:17:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049505;UNKNOWN;HARD;1;UNKNOWN - DSB_Tp_RVM_101 (049505) - SPS link down
+Service Unknown[12-04-2016 07:17:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049316;UNKNOWN;HARD;1;UNKNOWN - DSB_Trk_RVM_101 (049316) - SPS link down
+Service Unknown[12-04-2016 07:17:24] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045149;UNKNOWN;HARD;1;UNKNOWN - ARR_Hn_RVM_101 (045149) - SPS link down
+Service Unknown[12-04-2016 07:17:24] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045120;UNKNOWN;HARD;1;UNKNOWN - ARR_Sej_RVM_101 (045120) - SPS link down
+Service Unknown[12-04-2016 07:16:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049914;UNKNOWN;HARD;1;UNKNOWN - DSB_Lw_RVM_101 (049914) - SPS link down
+Service Unknown[12-04-2016 07:16:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049519;UNKNOWN;HARD;1;UNKNOWN - DSB_Sd_RVM_101 (049519) - SPS link down
+Service Unknown[12-04-2016 07:16:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049403;UNKNOWN;HARD;1;UNKNOWN - DSB_Tl_RVM_101 (049403) - SPS link down
+Service Unknown[12-04-2016 07:16:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049444;UNKNOWN;HARD;1;UNKNOWN - DSB_Bl_RVM_101 (049444) - SPS link down
+Service Unknown[12-04-2016 07:16:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049552;UNKNOWN;HARD;1;UNKNOWN - DSB_Svg_RVM_101 (049552) - SPS link down
+Service Unknown[12-04-2016 07:16:24] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049211;UNKNOWN;HARD;1;UNKNOWN - DSB_Jy_RVM_101 (049211) - SPS link down
+Service Unknown[12-04-2016 07:16:24] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045161;UNKNOWN;HARD;1;UNKNOWN - ARR_Stu_RVM_101 (045161) - SPS link down
+Service Unknown[12-04-2016 07:16:24] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049533;UNKNOWN;HARD;1;UNKNOWN - DSB_Ho_RVM_101 (049533) - SPS link down
+Service Unknown[12-04-2016 07:16:24] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045106;UNKNOWN;HARD;1;UNKNOWN - ARR_Ri_RVM_101 (045106) - SPS link down
+Service Unknown[12-04-2016 07:16:24] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048094;UNKNOWN;HARD;1;UNKNOWN - STO_Ryt_RVM_101 (048094) - SPS link down
+Service Unknown[12-04-2016 07:16:24] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048141;UNKNOWN;HARD;1;UNKNOWN - STO_Bft_RVM_101 (048141) - SPS link down
+Service Unknown[12-04-2016 07:16:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045196;UNKNOWN;HARD;1;UNKNOWN - ARR_Um_RVM_101 (045196) - SPS link down
+Service Unknown[12-04-2016 07:16:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045148;UNKNOWN;HARD;1;UNKNOWN - ARR_Vi_RVM_101 (045148) - SPS link down
+Service Unknown[12-04-2016 07:16:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045119;UNKNOWN;HARD;1;UNKNOWN - ARR_Gs_RVM_101 (045119) - SPS link down
+Service Unknown[12-04-2016 07:15:24] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049551;UNKNOWN;HARD;1;UNKNOWN - DSB_Svv_RVM_101 (049551) - SPS link down
+Service Unknown[12-04-2016 07:15:24] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049443;UNKNOWN;HARD;1;UNKNOWN - DSB_Lih_RVM_101 (049443) - SPS link down
+Service Unknown[12-04-2016 07:15:24] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049518;UNKNOWN;HARD;1;UNKNOWN - DSB_Hs_RVM_101 (049518) - SPS link down
+Service Unknown[12-04-2016 07:15:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049352;UNKNOWN;HARD;1;UNKNOWN - DSB_Vj_RVM_101 (049352) - SPS link down
+Service Unknown[12-04-2016 07:15:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049943;UNKNOWN;HARD;1;UNKNOWN - DSB_Ab_RVM_102 (049943) - SPS link down
+Service Unknown[12-04-2016 07:15:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049531;UNKNOWN;HARD;1;UNKNOWN - DSB_Id_RVM_101 (049531) - SPS link down
+Service Unknown[12-04-2016 07:15:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045131;UNKNOWN;HARD;1;UNKNOWN - ARR_Øg_RVM_101 (045131) - SPS link down
+Service Unknown[12-04-2016 07:15:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045105;UNKNOWN;HARD;1;UNKNOWN - ARR_Sne_RVM_101 (045105) - SPS link down
+Service Unknown[12-04-2016 07:15:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049374;UNKNOWN;HARD;1;UNKNOWN - DSB_Hf_RVM_101 (049374) - SPS link down
+Service Unknown[12-04-2016 07:15:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048126;UNKNOWN;HARD;1;UNKNOWN - STO_Alb_RVM_101 (048126) - SPS link down
+Service Unknown[12-04-2016 07:15:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045194;UNKNOWN;HARD;1;UNKNOWN - ARR_Yd_RVM_101 (045194) - SPS link down
+Service Unknown[12-04-2016 07:15:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045147;UNKNOWN;HARD;1;UNKNOWN - ARR_Hx_RVM_101 (045147) - SPS link down
+Service Ok[12-04-2016 07:11:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 508.738GB (99%) - Free: 3.229GB (1%)
+Service Warning[12-04-2016 07:09:54] SERVICE ALERT: REJK-P-SQL006;DynamicsPerf files usage - DBA;WARNING;HARD;1;WARNING - 'DynamicsPerf' will try to grow by 500 MBs drive 'F:' have enough free space 429514 MBs available.
+Service Unknown[12-04-2016 07:08:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045009;UNKNOWN;HARD;1;UNKNOWN - NT_Sgb_RVM_101 (045009) - SPS link down
+Service Critical[12-04-2016 07:06:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 510.016GB (100%) - Free: 1.951GB (0%)
+Service Ok[12-04-2016 07:04:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048144;OK;HARD;1;OK - STO_Val_RVM_101 (048144) - 994 minutes since last transaction (0481441K.3E4)
+
+April 12, 2016 06:00
+
+Service Ok[12-04-2016 06:57:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049565;OK;HARD;1;OK - DSB_RÃ¥_RVM_101 (049565) - 1 minutes since last transaction (0495651K.3A8)
+Service Ok[12-04-2016 06:56:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509GB (99%) - Free: 2.968GB (1%)
+Service Critical[12-04-2016 06:46:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.751GB (100%) - Free: 2.216GB (0%)
+Service Ok[12-04-2016 06:41:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.234GB (99%) - Free: 2.734GB (1%)
+Service Critical[12-04-2016 06:31:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.857GB (100%) - Free: 2.111GB (0%)
+Service Ok[12-04-2016 06:26:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.294GB (99%) - Free: 2.674GB (1%)
+Service Warning[12-04-2016 06:12:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049565;WARNING;HARD;1;WARNING - DSB_RÃ¥_RVM_101 (049565) - 1453 minutes since last transaction (0495651K.3A7)
+Service Warning[12-04-2016 06:12:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045145;WARNING;HARD;1;WARNING - ARR_Hw_RVM_101 (045145) - 1453 minutes since last transaction (0451451K.2ED)
+Service Critical[12-04-2016 06:11:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.505GB (100%) - Free: 2.463GB (0%)
+Service Ok[12-04-2016 06:11:14] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[12-04-2016 06:10:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045094;OK;HARD;1;OK - NT_Sal_RVM_101 (045094) - 625 minutes since last transaction (0450941K.3A2)
+Service Critical[12-04-2016 06:10:14] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[12-04-2016 06:07:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045001;UNKNOWN;HARD;1;UNKNOWN - NT_Ken_RVM_101 (045001) - SPS link down
+Service Ok[12-04-2016 06:06:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 508.868GB (99%) - Free: 3.099GB (1%)
+Service Critical[12-04-2016 06:01:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.768GB (100%) - Free: 2.2GB (0%)
+Service Ok[12-04-2016 06:01:04] SERVICE ALERT: REJK-P-SMC002;Ram usage;OK;HARD;1;OK - 3.2% (519168 kB) free.
+
+April 12, 2016 05:00
+
+Service Ok[12-04-2016 05:56:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.158GB (99%) - Free: 2.81GB (1%)
+Service Unknown[12-04-2016 05:55:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045094;UNKNOWN;HARD;1;UNKNOWN - NT_Sal_RVM_101 (045094) - SPS link down
+Service Ok[12-04-2016 05:52:04] SERVICE ALERT: AccessPoints;AP1_Slimmingevej_50_Vollerslev-10.71.79.20;OK;HARD;3;OK - Got reply from host
+Service Critical[12-04-2016 05:51:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.79GB (100%) - Free: 2.177GB (0%)
+Service Ok[12-04-2016 05:46:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.104GB (99%) - Free: 2.863GB (1%)
+Service Ok[12-04-2016 05:43:04] SERVICE ALERT: REJK-P-SPS005;FSV history out;OK;HARD;1;OK
+Service Ok[12-04-2016 05:40:14] SERVICE ALERT: REJK-P-SMC003;Ram usage;OK;HARD;1;OK - 3.7% (596692 kB) free.
+Service Critical[12-04-2016 05:33:04] SERVICE ALERT: REJK-P-SPS005;FSV history out;CRITICAL;HARD;1;CRITICAL - modified time 960 sec exceeded threshold of 900 sec
+Service Ok[12-04-2016 05:32:04] SERVICE ALERT: REJK-P-SQL006;Job Execution - Nets Invoice Reminder Response M602 DAT - BO;OK;HARD;1;OK - Normal execution interval
+Service Ok[12-04-2016 05:28:04] SERVICE ALERT: REJK-P-SPS010;FSV history out;OK;HARD;1;OK
+Service Critical[12-04-2016 05:26:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.735GB (100%) - Free: 2.232GB (0%)
+Service Ok[12-04-2016 05:24:44] SERVICE ALERT: REJK-P-INT002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 8GB - Used: 1.864GB (23%) - Free: 6.136GB (77%)
+Service Ok[12-04-2016 05:23:34] SERVICE ALERT: REJK-P-MDL001;MDL incoming files queue;OK;HARD;1;OK
+Service Critical[12-04-2016 05:23:04] SERVICE ALERT: REJK-P-SPS010;FSV history out;CRITICAL;HARD;1;CRITICAL - modified time 1180 sec exceeded threshold of 900 sec
+Service Ok[12-04-2016 05:21:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.224GB (99%) - Free: 2.744GB (1%)
+Service Ok[12-04-2016 05:21:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049420;OK;HARD;1;OK - DSB_Es_RVM_102 (049420) - 5 minutes since last transaction (0494201K.F5E)
+Service Warning[12-04-2016 05:15:14] SERVICE ALERT: REJK-P-SMC003;Ram usage;WARNING;HARD;1;WARNING - 1.1% (181972 kB) free!
+Service Warning[12-04-2016 05:14:44] SERVICE ALERT: REJK-P-INT002;Ram usage;WARNING;HARD;1;WARNING - [Triggered by _MemUsed%>90] - Physical Memory: Total: 8GB - Used: 7.563GB (95%) - Free: 447.031MB (5%)
+Service Critical[12-04-2016 05:11:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.848GB (100%) - Free: 2.119GB (0%)
+Service Ok[12-04-2016 05:10:14] SERVICE ALERT: REJK-P-SMC003;Ram usage;OK;HARD;1;OK - 2.3% (380804 kB) free.
+Service Ok[12-04-2016 05:08:34] SERVICE ALERT: REJK-P-MDL002;MDL incoming files queue;OK;HARD;1;OK
+Service Ok[12-04-2016 05:07:44] SERVICE ALERT: REJK-P-MDL001;MDL incoming files age;OK;HARD;1;OK
+Service Unknown[12-04-2016 05:06:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049420;UNKNOWN;HARD;1;UNKNOWN - DSB_Es_RVM_102 (049420) - SPS link down
+Service Warning[12-04-2016 05:05:14] SERVICE ALERT: REJK-P-SMC003;Ram usage;WARNING;HARD;1;WARNING - 1.1% (180600 kB) free!
+Service Ok[12-04-2016 05:01:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 508.96GB (99%) - Free: 3.007GB (1%)
+Service Critical[12-04-2016 05:00:14] SERVICE ALERT: REJK-P-SMC003;Ram usage;CRITICAL;HARD;1;CRITICAL - 1.0% (168088 kB) free!
+
+April 12, 2016 04:00
+
+Service Critical[12-04-2016 04:56:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.907GB (100%) - Free: 2.061GB (0%)
+Service Warning[12-04-2016 04:55:14] SERVICE ALERT: REJK-P-SMC003;Ram usage;WARNING;HARD;1;WARNING - 1.1% (182812 kB) free!
+Service Warning[12-04-2016 04:53:24] SERVICE ALERT: REJK-P-MDL001;MDL incoming files age;WARNING;HARD;1;WARNING - modified time 7000 sec exceeded threshold of 3600 sec
+Service Ok[12-04-2016 04:53:04] SERVICE ALERT: REJK-P-SPS009;FSV history out;OK;HARD;1;OK
+Service Ok[12-04-2016 04:53:04] SERVICE ALERT: REJK-P-SPS007;FSV history out;OK;HARD;1;OK
+Service Ok[12-04-2016 04:52:34] SERVICE ALERT: REJK-P-MDL002;MDL incoming files age;OK;HARD;1;OK
+Service Ok[12-04-2016 04:48:34] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_4_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_4.exe" running (0 excluded). (List is on next line)
+Service Ok[12-04-2016 04:48:34] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_4_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_4.exe" running (0 excluded). (List is on next line)
+Service Ok[12-04-2016 04:48:14] SERVICE ALERT: REJK-P-MDL001;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 16GB - Used: 8.928GB (56%) - Free: 7.071GB (44%)
+Service Critical[12-04-2016 04:48:04] SERVICE ALERT: REJK-P-SPS009;FSV history out;CRITICAL;HARD;1;CRITICAL - modified time 965 sec exceeded threshold of 900 sec
+Service Critical[12-04-2016 04:48:04] SERVICE ALERT: REJK-P-SPS007;FSV history out;CRITICAL;HARD;1;CRITICAL - modified time 966 sec exceeded threshold of 900 sec
+Service Ok[12-04-2016 04:47:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049361;OK;HARD;1;OK - DSB_Kh_RVM_101 (049361) - 437 minutes since last transaction (0493611K.0B7)
+Service Ok[12-04-2016 04:47:24] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_3_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded). (List is on next line)
+Service Ok[12-04-2016 04:47:24] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_3_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded). (List is on next line)
+Service Ok[12-04-2016 04:46:14] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_2_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_2.exe" running (0 excluded). (List is on next line)
+Service Ok[12-04-2016 04:46:14] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_2_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_2.exe" running (0 excluded). (List is on next line)
+Service Ok[12-04-2016 04:46:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 508.841GB (99%) - Free: 3.127GB (1%)
+Service Ok[12-04-2016 04:46:04] SERVICE ALERT: REJK-P-SQL003;SQL Job Execution - IFS Tracking Aggregation - DBA;OK;HARD;1;OK - IFS_Tracking_Aggregation execution status is normal
+Service Ok[12-04-2016 04:45:04] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_1_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_1.exe" running (0 excluded). (List is on next line)
+Service Ok[12-04-2016 04:45:04] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_1_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_1.exe" running (0 excluded). (List is on next line)
+Service Critical[12-04-2016 04:44:44] SERVICE ALERT: REJK-P-INT002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>95] - Physical Memory: Total: 8GB - Used: 7.789GB (97%) - Free: 215.785MB (3%)
+Service Ok[12-04-2016 04:37:54] SERVICE ALERT: REJK-P-SPS002;FSV history out;OK;HARD;1;OK
+Service Critical[12-04-2016 04:36:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.47GB (100%) - Free: 2.498GB (0%)
+Service Warning[12-04-2016 04:34:44] SERVICE ALERT: REJK-P-INT002;Ram usage;WARNING;HARD;1;WARNING - [Triggered by _MemUsed%>90] - Physical Memory: Total: 8GB - Used: 7.422GB (93%) - Free: 591.734MB (7%)
+Service Ok[12-04-2016 04:33:04] SERVICE ALERT: REJK-P-SPS008;FSV history out;OK;HARD;1;OK
+Service Critical[12-04-2016 04:32:54] SERVICE ALERT: REJK-P-SPS002;FSV history out;CRITICAL;HARD;1;CRITICAL - modified time 1044 sec exceeded threshold of 900 sec
+Service Unknown[12-04-2016 04:32:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049361;UNKNOWN;HARD;1;UNKNOWN - DSB_Kh_RVM_101 (049361) - SPS link down
+Service Warning[12-04-2016 04:32:04] SERVICE ALERT: REJK-P-SQL006;Job Execution - Nets Invoice Reminder Response M602 DAT - BO;WARNING;HARD;1;WARNING - JOB - Nets Invoice/Reminder Response (M602) has not been executed since 2016-04-11 02:30:11. Current Status: Executing
+Service Ok[12-04-2016 04:31:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 508.926GB (99%) - Free: 3.041GB (1%)
+Service Ok[12-04-2016 04:30:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048008;OK;HARD;1;OK - STO_Und_RVM_102 (048008) - 719 minutes since last transaction (0480081K.B75)
+Service Ok[12-04-2016 04:23:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049561;OK;HARD;1;OK - DSB_Øds_RVM_101 (049561) - 787 minutes since last transaction (0495611K.356)
+Service Critical[12-04-2016 04:23:04] SERVICE ALERT: REJK-P-SPS008;FSV history out;CRITICAL;HARD;1;CRITICAL - modified time 1173 sec exceeded threshold of 900 sec
+Service Critical[12-04-2016 04:21:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.542GB (100%) - Free: 2.425GB (0%)
+Service Ok[12-04-2016 04:21:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049542;OK;HARD;1;OK - DSB_Hjs_RVM_101 (049542) - 807 minutes since last transaction (0495421K.321)
+Service Ok[12-04-2016 04:18:14] SERVICE ALERT: REJK-P-MDL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 16GB - Used: 13.294GB (83%) - Free: 2.706GB (17%)
+Service Ok[12-04-2016 04:16:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.024GB (99%) - Free: 2.944GB (1%)
+Service Unknown[12-04-2016 04:15:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048008;UNKNOWN;HARD;1;UNKNOWN - STO_Und_RVM_102 (048008) - SPS link down
+Service Unknown[12-04-2016 04:08:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049561;UNKNOWN;HARD;1;UNKNOWN - DSB_Øds_RVM_101 (049561) - SPS link down
+Service Critical[12-04-2016 04:08:04] SERVICE ALERT: REJK-P-MDL001;MDL incoming files age;CRITICAL;HARD;1;CRITICAL - modified time 7563 sec exceeded threshold of 7200 sec
+Service Critical[12-04-2016 04:07:44] SERVICE ALERT: REJK-P-MDL002;MDL incoming files age;CRITICAL;HARD;1;CRITICAL - modified time 7563 sec exceeded threshold of 7200 sec
+Service Critical[12-04-2016 04:06:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.743GB (100%) - Free: 2.224GB (0%)
+Service Unknown[12-04-2016 04:06:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049542;UNKNOWN;HARD;1;UNKNOWN - DSB_Hjs_RVM_101 (049542) - SPS link down
+Service Warning[12-04-2016 04:06:04] SERVICE ALERT: REJK-P-SMC002;Ram usage;WARNING;HARD;1;WARNING - 1.3% (213136 kB) free!
+Service Ok[12-04-2016 04:03:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049902;OK;HARD;1;OK - DSB_Rg_RVM_102 (049902) - 297 minutes since last transaction (0499021K.707)
+Service Ok[12-04-2016 04:01:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.17GB (99%) - Free: 2.797GB (1%)
+Service Warning[12-04-2016 04:01:04] SERVICE ALERT: REJK-P-SQL003;SQL Job Execution - IFS Tracking Aggregation - DBA;WARNING;HARD;1;WARNING - IFS_Tracking_Aggregation has not been executed since 2 hours. Last Execution Status: Succeeded, Last Execution Date Time: 2016-04-12 02:00:00
+Service Critical[12-04-2016 04:01:04] SERVICE ALERT: REJK-P-SMC002;Ram usage;CRITICAL;HARD;1;CRITICAL - 1.0% (161272 kB) free!
+
+April 12, 2016 03:00
+
+Service Warning[12-04-2016 03:58:14] SERVICE ALERT: REJK-P-MDL001;Ram usage;WARNING;HARD;1;WARNING - [Triggered by _MemUsed%>90] - Physical Memory: Total: 16GB - Used: 14.699GB (92%) - Free: 1.3GB (8%)
+Service Critical[12-04-2016 03:51:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.876GB (100%) - Free: 2.091GB (0%)
+Service Unknown[12-04-2016 03:48:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049902;UNKNOWN;HARD;1;UNKNOWN - DSB_Rg_RVM_102 (049902) - SPS link down
+Service Ok[12-04-2016 03:48:04] SERVICE ALERT: REJK-P-SPS003;FSV history out;OK;HARD;1;OK
+Service Ok[12-04-2016 03:47:54] SERVICE ALERT: REJK-P-SPS006;FSV history out;OK;HARD;1;OK
+Service Ok[12-04-2016 03:46:44] SERVICE ALERT: REJK-P-SPS006;FSV history in;OK;HARD;1;OK
+Service Ok[12-04-2016 03:43:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049515;OK;HARD;1;OK - DSB_Bet_RVM_101 (049515) - 882 minutes since last transaction (0495151K.3DE)
+Service Critical[12-04-2016 03:41:44] SERVICE ALERT: REJK-P-SPS006;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 2016 sec exceeded threshold of 1800 sec
+Service Ok[12-04-2016 03:41:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 508.64GB (99%) - Free: 3.328GB (1%)
+Service Ok[12-04-2016 03:38:04] SERVICE ALERT: REJK-P-SPS008;FSV history out;OK;HARD;1;OK
+Service Critical[12-04-2016 03:33:14] SERVICE ALERT: REJK-P-MDL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>95] - Physical Memory: Total: 16GB - Used: 15.336GB (96%) - Free: 679.199MB (4%)
+Service Critical[12-04-2016 03:33:04] SERVICE ALERT: REJK-P-SPS003;FSV history out;CRITICAL;HARD;1;CRITICAL - modified time 984 sec exceeded threshold of 900 sec
+Service Critical[12-04-2016 03:33:04] SERVICE ALERT: REJK-P-SPS008;FSV history out;CRITICAL;HARD;1;CRITICAL - modified time 1007 sec exceeded threshold of 900 sec
+Service Critical[12-04-2016 03:32:54] SERVICE ALERT: REJK-P-SPS006;FSV history out;CRITICAL;HARD;1;CRITICAL - modified time 1042 sec exceeded threshold of 900 sec
+Service Critical[12-04-2016 03:31:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.47GB (100%) - Free: 2.498GB (0%)
+Service Unknown[12-04-2016 03:28:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049515;UNKNOWN;HARD;1;UNKNOWN - DSB_Bet_RVM_101 (049515) - SPS link down
+Service Ok[12-04-2016 03:26:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 508.787GB (99%) - Free: 3.18GB (1%)
+Service Warning[12-04-2016 03:23:14] SERVICE ALERT: REJK-P-MDL002;Ram usage;WARNING;HARD;1;WARNING - [Triggered by _MemUsed%>90] - Physical Memory: Total: 16GB - Used: 14.641GB (92%) - Free: 1.358GB (8%)
+Service Critical[12-04-2016 03:16:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.576GB (100%) - Free: 2.392GB (0%)
+Service Ok[12-04-2016 03:11:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.034GB (99%) - Free: 2.933GB (1%)
+Service Warning[12-04-2016 03:07:44] SERVICE ALERT: REJK-P-MDL001;MDL incoming files age;WARNING;HARD;1;WARNING - modified time 3963 sec exceeded threshold of 3600 sec
+Service Warning[12-04-2016 03:07:34] SERVICE ALERT: REJK-P-MDL002;MDL incoming files age;WARNING;HARD;1;WARNING - modified time 3963 sec exceeded threshold of 3600 sec
+Service Critical[12-04-2016 03:01:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.758GB (100%) - Free: 2.21GB (0%)
+Service Ok[12-04-2016 03:00:14] SERVICE ALERT: REJK-P-SMC003;Ram usage;OK;HARD;1;OK - 2.3% (370052 kB) free.
+
+April 12, 2016 02:00
+
+Service Critical[12-04-2016 02:59:14] SERVICE ALERT: REJK-P-SPS004;SPS EOD Distribution - Action List;CRITICAL;HARD;1;CRITICAL - 1 devices (RVM or VCF) has EOD older than previous version
+Service Critical[12-04-2016 02:59:04] SERVICE ALERT: REJK-P-SPS003;SPS EOD Distribution - Action List;CRITICAL;HARD;1;CRITICAL - 1 devices (RVM or VCF) has EOD older than previous version
+Service Ok[12-04-2016 02:56:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.16GB (99%) - Free: 2.808GB (1%)
+Service Warning[12-04-2016 02:55:14] SERVICE ALERT: REJK-P-SMC003;Ram usage;WARNING;HARD;1;WARNING - 1.2% (194968 kB) free!
+Service Ok[12-04-2016 02:54:24] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048106;OK;HARD;1;OK - STO_Hut_RVM_101 (048106) - 294 minutes since last transaction (0481061K.C49)
+Service Ok[12-04-2016 02:50:14] SERVICE ALERT: REJK-P-SMC003;Ram usage;OK;HARD;1;OK - 3.0% (492828 kB) free.
+Service Critical[12-04-2016 02:46:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.846GB (100%) - Free: 2.122GB (0%)
+Service Warning[12-04-2016 02:45:14] SERVICE ALERT: REJK-P-SMC003;Ram usage;WARNING;HARD;1;WARNING - 1.3% (205636 kB) free!
+Service Ok[12-04-2016 02:41:54] SERVICE ALERT: REJK-P-SPS009;FSV history in;OK;HARD;1;OK
+Service Ok[12-04-2016 02:41:54] SERVICE ALERT: REJK-P-SPS007;FSV history in;OK;HARD;1;OK
+Service Ok[12-04-2016 02:41:54] SERVICE ALERT: REJK-P-SPS005;FSV history in;OK;HARD;1;OK
+Service Ok[12-04-2016 02:41:54] SERVICE ALERT: REJK-P-SPS008;FSV history in;OK;HARD;1;OK
+Service Ok[12-04-2016 02:41:54] SERVICE ALERT: REJK-P-SPS001;FSV history in;OK;HARD;1;OK
+Service Ok[12-04-2016 02:41:54] SERVICE ALERT: REJK-P-SPS003;FSV history in;OK;HARD;1;OK
+Service Ok[12-04-2016 02:41:44] SERVICE ALERT: REJK-P-SPS006;FSV history in;OK;HARD;1;OK
+Service Ok[12-04-2016 02:41:44] SERVICE ALERT: REJK-P-SPS004;FSV history in;OK;HARD;1;OK
+Service Ok[12-04-2016 02:41:44] SERVICE ALERT: REJK-P-SPS002;FSV history in;OK;HARD;1;OK
+Service Critical[12-04-2016 02:41:34] SERVICE ALERT: REJK-P-SPS004;SPS EOD Distribution - Secondary Blacklist;CRITICAL;HARD;1;CRITICAL - 1 devices (RVM or VCF) has EOD older than previous version
+Service Critical[12-04-2016 02:41:24] SERVICE ALERT: REJK-P-SPS003;SPS EOD Distribution - Secondary Blacklist;CRITICAL;HARD;1;CRITICAL - 1 devices (RVM or VCF) has EOD older than previous version
+Service Critical[12-04-2016 02:40:14] SERVICE ALERT: REJK-P-SMC003;Ram usage;CRITICAL;HARD;1;CRITICAL - 1.0% (168964 kB) free!
+Service Unknown[12-04-2016 02:39:24] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048106;UNKNOWN;HARD;1;UNKNOWN - STO_Hut_RVM_101 (048106) - SPS link down
+Service Critical[12-04-2016 02:36:44] SERVICE ALERT: REJK-P-SPS004;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 2065 sec exceeded threshold of 1800 sec
+Service Critical[12-04-2016 02:36:44] SERVICE ALERT: REJK-P-SPS002;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 2038 sec exceeded threshold of 1800 sec
+Service Ok[12-04-2016 02:36:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 508.662GB (99%) - Free: 3.306GB (1%)
+Service Critical[12-04-2016 02:35:24] SERVICE ALERT: REJK-P-SPS004;SPS EOD Distribution - Primary Blacklist;CRITICAL;HARD;1;CRITICAL - 1 devices (RVM or VCF) has EOD older than previous version
+Service Critical[12-04-2016 02:35:14] SERVICE ALERT: REJK-P-SPS003;SPS EOD Distribution - Primary Blacklist;CRITICAL;HARD;1;CRITICAL - 1 devices (RVM or VCF) has EOD older than previous version
+Service Critical[12-04-2016 02:31:54] SERVICE ALERT: REJK-P-SPS009;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 1845 sec exceeded threshold of 1800 sec
+Service Critical[12-04-2016 02:31:54] SERVICE ALERT: REJK-P-SPS007;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 1828 sec exceeded threshold of 1800 sec
+Service Critical[12-04-2016 02:31:54] SERVICE ALERT: REJK-P-SPS005;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 1829 sec exceeded threshold of 1800 sec
+Service Critical[12-04-2016 02:31:54] SERVICE ALERT: REJK-P-SPS008;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 1832 sec exceeded threshold of 1800 sec
+Service Critical[12-04-2016 02:31:54] SERVICE ALERT: REJK-P-SPS003;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 1826 sec exceeded threshold of 1800 sec
+Service Critical[12-04-2016 02:31:54] SERVICE ALERT: REJK-P-SPS001;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 1830 sec exceeded threshold of 1800 sec
+Service Critical[12-04-2016 02:31:44] SERVICE ALERT: REJK-P-SPS006;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 1816 sec exceeded threshold of 1800 sec
+Service Critical[12-04-2016 02:26:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.583GB (100%) - Free: 2.385GB (0%)
+Service Ok[12-04-2016 02:21:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 508.812GB (99%) - Free: 3.155GB (1%)
+Service Critical[12-04-2016 02:11:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.474GB (100%) - Free: 2.493GB (0%)
+Service Critical[12-04-2016 02:08:34] SERVICE ALERT: REJK-P-MDL002;MDL incoming files queue;CRITICAL;HARD;1;CRITICAL - count 3312 exceeded threshold of 1000
+Service Critical[12-04-2016 02:08:34] SERVICE ALERT: REJK-P-MDL001;MDL incoming files queue;CRITICAL;HARD;1;CRITICAL - count 3057 exceeded threshold of 1000
+Service Ok[12-04-2016 02:06:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 508.896GB (99%) - Free: 3.071GB (1%)
+Service Ok[12-04-2016 02:05:14] SERVICE ALERT: REJK-P-SQL003;Boris connections;OK;HARD;1;OK - Number of BORIS TCRW connected: 232
+Service Ok[12-04-2016 02:05:14] SERVICE ALERT: REJK-P-SPS005;DCP_Inserter_3_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded). (List is on next line)
+Service Ok[12-04-2016 02:05:14] SERVICE ALERT: REJK-P-SPS003;DCP_Inserter_3_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded). (List is on next line)
+Service Ok[12-04-2016 02:05:14] SERVICE ALERT: REJK-P-SPS001;DCP_Inserter_3_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded). (List is on next line)
+Service Critical[12-04-2016 02:05:04] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_1_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_1.exe" running (0 excluded).
+Service Critical[12-04-2016 02:05:04] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_1_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_1.exe" running (0 excluded).
+Service Critical[12-04-2016 02:03:34] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_4_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_4.exe" running (0 excluded).
+Service Critical[12-04-2016 02:03:34] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_4_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_4.exe" running (0 excluded).
+Service Critical[12-04-2016 02:02:24] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_3_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded).
+Service Critical[12-04-2016 02:02:24] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_3_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded).
+Service Critical[12-04-2016 02:01:14] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_2_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_2.exe" running (0 excluded).
+Service Critical[12-04-2016 02:01:14] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_2_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_2.exe" running (0 excluded).
+Service Critical[12-04-2016 02:01:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.692GB (100%) - Free: 2.276GB (0%)
+Service Critical[12-04-2016 02:00:14] SERVICE ALERT: REJK-P-SPS005;DCP_Inserter_3_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded).
+Service Critical[12-04-2016 02:00:14] SERVICE ALERT: REJK-P-SPS003;DCP_Inserter_3_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded).
+Service Critical[12-04-2016 02:00:14] SERVICE ALERT: REJK-P-SPS001;DCP_Inserter_3_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded).
+
+April 12, 2016 01:00
+
+Service Ok[12-04-2016 01:56:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.198GB (99%) - Free: 2.77GB (1%)
+Service Critical[12-04-2016 01:46:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.487GB (100%) - Free: 2.48GB (0%)
+Service Ok[12-04-2016 01:41:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 508.785GB (99%) - Free: 3.182GB (1%)
+Service Ok[12-04-2016 01:25:14] SERVICE ALERT: REJK-P-SMC003;Ram usage;OK;HARD;1;OK - 4.3% (694384 kB) free.
+Service Critical[12-04-2016 01:21:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.644GB (100%) - Free: 2.324GB (0%)
+Service Warning[12-04-2016 01:21:04] SERVICE ALERT: REJK-P-SMC002;Ram usage;WARNING;HARD;1;WARNING - 1.2% (191876 kB) free!
+Service Warning[12-04-2016 01:20:14] SERVICE ALERT: REJK-P-SMC003;Ram usage;WARNING;HARD;1;WARNING - 1.9% (306112 kB) free!
+Service Ok[12-04-2016 01:16:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 508.96GB (99%) - Free: 3.008GB (1%)
+Service Critical[12-04-2016 01:15:14] SERVICE ALERT: REJK-P-SMC003;Ram usage;CRITICAL;HARD;1;CRITICAL - 1.0% (159688 kB) free!
+Service Critical[12-04-2016 01:06:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.656GB (100%) - Free: 2.312GB (0%)
+Service Ok[12-04-2016 01:01:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.153GB (99%) - Free: 2.814GB (1%)
+
+April 12, 2016 00:00
+
+Service Critical[12-04-2016 00:51:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.645GB (100%) - Free: 2.322GB (0%)
+Service Ok[12-04-2016 00:46:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.132GB (99%) - Free: 2.835GB (1%)
+Service Critical[12-04-2016 00:36:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.877GB (100%) - Free: 2.09GB (0%)
+Service Ok[12-04-2016 00:32:24] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048038;OK;HARD;1;OK - STO_Av_RVM_101 (048038) - 392 minutes since last transaction (0480381K.FC2)
+Service Ok[12-04-2016 00:28:24] SERVICE ALERT: REJK-P-BDC002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 4GB - Used: 3.127GB (78%) - Free: 893.016MB (22%)
+Service Ok[12-04-2016 00:26:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 508.725GB (99%) - Free: 3.242GB (1%)
+Service Warning[12-04-2016 00:23:24] SERVICE ALERT: REJK-P-BDC002;Ram usage;WARNING;HARD;1;WARNING - [Triggered by _MemUsed%>90] - Physical Memory: Total: 4GB - Used: 3.631GB (91%) - Free: 377.742MB (9%)
+Service Ok[12-04-2016 00:19:14] SERVICE ALERT: REJK-P-SQL006;Job Execution - Creation of collection letter TSJ - BO;OK;HARD;1;OK - Normal execution interval
+Service Ok[12-04-2016 00:18:04] SERVICE ALERT: REJK-P-SQL006;Job Execution - Creation of collection letter REJ - BO;OK;HARD;1;OK - Normal execution interval
+Service Unknown[12-04-2016 00:17:24] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048038;UNKNOWN;HARD;1;UNKNOWN - STO_Av_RVM_101 (048038) - SPS link down
+Service Ok[12-04-2016 00:16:54] SERVICE ALERT: REJK-P-SQL006;Job Execution - Creation of collection letter OSS - BO;OK;HARD;1;OK - Normal execution interval
+Service Critical[12-04-2016 00:16:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.516GB (100%) - Free: 2.452GB (0%)
+Service Ok[12-04-2016 00:14:44] SERVICE ALERT: REJK-P-SQL006;Job Execution - Creation of collection letter ATO - BO;OK;HARD;1;OK - Normal execution interval
+Service Ok[12-04-2016 00:11:54] SERVICE ALERT: REJK-P-SPS005;FSV history in;OK;HARD;1;OK
+Service Ok[12-04-2016 00:11:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 508.825GB (99%) - Free: 3.142GB (1%)
+Service Ok[12-04-2016 00:08:04] SERVICE ALERT: REJK-P-SPS005;FSV history out;OK;HARD;1;OK
+Service Ok[12-04-2016 00:08:04] SERVICE ALERT: REJK-P-SPS010;FSV history out;OK;HARD;1;OK
+Service Ok[12-04-2016 00:08:04] SERVICE ALERT: REJK-P-SPS008;FSV history out;OK;HARD;1;OK
+Service Ok[12-04-2016 00:06:54] SERVICE ALERT: REJK-P-SPS010;FSV history in;OK;HARD;1;OK
+Service Ok[12-04-2016 00:06:54] SERVICE ALERT: REJK-P-SPS008;FSV history in;OK;HARD;1;OK
+Service Critical[12-04-2016 00:03:04] SERVICE ALERT: REJK-P-SPS005;FSV history out;CRITICAL;HARD;1;CRITICAL - smb://rejk-p-sps005/D$/IFSBOData/FSV/Outgoing_histo/20160412/FSV_HistoOutgoing.txt not found
+Service Critical[12-04-2016 00:03:04] SERVICE ALERT: REJK-P-SPS010;FSV history out;CRITICAL;HARD;1;CRITICAL - smb://rejk-p-sps010/D$/IFSBOData/FSV/Outgoing_histo/20160412/FSV_HistoOutgoing.txt not found
+Service Critical[12-04-2016 00:03:04] SERVICE ALERT: REJK-P-SPS008;FSV history out;CRITICAL;HARD;1;CRITICAL - smb://rejk-p-sps008/D$/IFSBOData/FSV/Outgoing_histo/20160412/FSV_HistoOutgoing.txt not found
+Service Critical[12-04-2016 00:01:54] SERVICE ALERT: REJK-P-SPS005;FSV history in;CRITICAL;HARD;1;CRITICAL - smb://rejk-p-sps005/D$/IFSBOData/FSV/Incoming_histo/20160412/FSV_HistoIncoming.txt not found
+Service Critical[12-04-2016 00:01:54] SERVICE ALERT: REJK-P-SPS010;FSV history in;CRITICAL;HARD;1;CRITICAL - smb://rejk-p-sps010/D$/IFSBOData/FSV/Incoming_histo/20160412/FSV_HistoIncoming.txt not found
+Service Critical[12-04-2016 00:01:54] SERVICE ALERT: REJK-P-SPS008;FSV history in;CRITICAL;HARD;1;CRITICAL - smb://rejk-p-sps008/D$/IFSBOData/FSV/Incoming_histo/20160412/FSV_HistoIncoming.txt not found
+Service Critical[12-04-2016 00:01:14] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.583GB (100%) - Free: 2.385GB (0%)
+
+Alert History
+Last Updated: Tue Apr 12 15:21:21 CEST 2016
+Nagios® Core™ 3.4.1 - www.nagios.org
+Logged in as ThalesMNI
+View Status Detail For All Hosts
+View Notifications For All Hosts
+All Hosts and Services
+
+Earlier Archive
+Earlier Archive
+Log File Navigation
+Sat Apr 9 00:00:00 CEST 2016
+to
+Sun Apr 10 00:00:00 CEST 2016 More Recent Archive
+More Recent Archive
+
+File: /var/log/nagios/archives/nagios-04-10-2016-00.log
+State type options:
+
+History detail level for all hosts:
+
+ Hide Flapping Alerts
+ Hide Downtime Alerts
+ Hide Process Messages
+ Older Entries First
+Update
+
+April 09, 2016 23:00
+
+Service Critical[09-04-2016 23:55:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.921GB (100%) - Free: 2.047GB (0%)
+Service Ok[09-04-2016 23:50:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.316GB (99%) - Free: 2.652GB (1%)
+Service Critical[09-04-2016 23:40:08] SERVICE ALERT: REJK-P-SPS010;SPS EOD Distribution - Action List;CRITICAL;HARD;1;CRITICAL - 1 devices (RVM or VCF) has EOD older than previous version
+Service Critical[09-04-2016 23:20:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.744GB (100%) - Free: 2.223GB (0%)
+Service Ok[09-04-2016 23:15:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.137GB (99%) - Free: 2.831GB (1%)
+Service Warning[09-04-2016 23:14:08] SERVICE ALERT: REJK-P-SQL006;Job - Payment journal posting TSY - BO;WARNING;HARD;1;WARNING - Job has failed 1 times during past 2 executions, Current Status: Waiting
+Service Warning[09-04-2016 23:10:58] SERVICE ALERT: REJK-P-SQL006;Job - Payment journal posting TSJ - BO;WARNING;HARD;1;WARNING - Job has failed 1 times during past 2 executions, Current Status: Waiting
+Service Warning[09-04-2016 23:09:48] SERVICE ALERT: REJK-P-SQL006;Job - Payment journal posting REJ - BO;WARNING;HARD;1;WARNING - Job has failed 1 times during past 2 executions, Current Status: Waiting
+Service Warning[09-04-2016 23:07:58] SERVICE ALERT: REJK-P-SQL006;Job - Payment journal posting DSB - BO;WARNING;HARD;1;WARNING - Job has failed 1 times during past 2 executions, Current Status: Waiting
+Service Critical[09-04-2016 23:05:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.877GB (100%) - Free: 2.09GB (0%)
+Service Warning[09-04-2016 23:02:38] SERVICE ALERT: REJK-P-SQL006;Job Execution - Creation of collection letter REJ - BO;WARNING;HARD;1;WARNING - JOB - Creation of collection letter has not been executed since 2016-04-08 21:01:47. Current Status: Executing
+Service Warning[09-04-2016 23:01:28] SERVICE ALERT: REJK-P-SQL006;Job Execution - Creation of collection letter OSS - BO;WARNING;HARD;1;WARNING - JOB - Creation of collection letter has not been executed since 2016-04-08 21:01:47. Current Status: Executing
+Service Ok[09-04-2016 23:00:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.301GB (99%) - Free: 2.666GB (1%)
+Service Critical[09-04-2016 23:00:08] SERVICE ALERT: REJK-P-SQL006;Job Execution - Creation of collection letter DSB - BO;CRITICAL;HARD;1;CRITICAL - JOB - Creation of collection letter has not been executed since 2016-04-08 21:12:44. Current Status: Waiting
+
+April 09, 2016 22:00
+
+Service Critical[09-04-2016 22:55:08] SERVICE ALERT: REJK-P-SPS010;SPS EOD Distribution - Secondary Blacklist;CRITICAL;HARD;1;CRITICAL - 1 devices (RVM or VCF) has EOD older than previous version
+Service Critical[09-04-2016 22:50:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.963GB (100%) - Free: 2.005GB (0%)
+Service Ok[09-04-2016 22:47:38] SERVICE ALERT: REJK-P-WEB007;CWS Login;OK;SOFT;2;OK - Login succeeded
+Service Critical[09-04-2016 22:47:28] SERVICE ALERT: REJK-P-WEB007;CWS Login;CRITICAL;SOFT;1;(Service Check Timed Out)
+Service Ok[09-04-2016 22:45:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.386GB (99%) - Free: 2.582GB (1%)
+Service Ok[09-04-2016 22:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045109;OK;HARD;1;OK - ARR_Trn_RVM_101 (045109) - 3 minutes since last transaction (0451091K.54F)
+Service Critical[09-04-2016 22:15:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.646GB (100%) - Free: 2.321GB (0%)
+Service Ok[09-04-2016 22:10:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.05GB (99%) - Free: 2.918GB (1%)
+Service Critical[09-04-2016 22:00:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.833GB (100%) - Free: 2.134GB (0%)
+
+April 09, 2016 21:00
+
+Service Ok[09-04-2016 21:55:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.111GB (99%) - Free: 2.856GB (1%)
+Service Ok[09-04-2016 21:51:28] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[09-04-2016 21:50:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[09-04-2016 21:45:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 510.069GB (100%) - Free: 1.898GB (0%)
+Service Ok[09-04-2016 21:40:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.361GB (99%) - Free: 2.606GB (1%)
+Service Ok[09-04-2016 21:28:18] SERVICE ALERT: AccessPoints;AP1_Skaerringevej_27_Maribo-10.81.11.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[09-04-2016 21:28:18] SERVICE ALERT: AccessPoints;AP1_STS_Naestved-10.81.1.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[09-04-2016 21:27:18] SERVICE ALERT: AccessPoints;AP1_Skaerringevej_27_Maribo-10.81.11.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[09-04-2016 21:27:18] SERVICE ALERT: AccessPoints;AP1_STS_Naestved-10.81.1.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[09-04-2016 21:26:08] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;SOFT;2;OK - 0 row(s) in prg.ObjTransactionBuffer
+Service Critical[09-04-2016 21:25:08] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;SOFT;1;(Return code of 255 is out of bounds)
+Service Ok[09-04-2016 21:21:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045154;OK;HARD;1;OK - ARR_Sm_RVM_101 (045154) - 6 minutes since last transaction (0451541K.305)
+Service Ok[09-04-2016 21:18:38] SERVICE ALERT: REJK-P-MDL002;MDL incoming files queue;OK;HARD;1;OK
+Service Ok[09-04-2016 21:18:28] SERVICE ALERT: REJK-P-MDL001;MDL incoming files queue;OK;HARD;1;OK
+Service Ok[09-04-2016 21:05:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[09-04-2016 21:04:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[09-04-2016 21:03:38] SERVICE ALERT: REJK-P-MDL002;MDL incoming files queue;CRITICAL;HARD;1;CRITICAL - count 1878 exceeded threshold of 1000
+Service Critical[09-04-2016 21:03:28] SERVICE ALERT: REJK-P-MDL001;MDL incoming files queue;CRITICAL;HARD;1;CRITICAL - count 2480 exceeded threshold of 1000
+Service Warning[09-04-2016 21:01:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045134;WARNING;HARD;1;WARNING - ARR_Lm_RVM_101 (045134) - 1455 minutes since last transaction (0451341K.2F2)
+
+April 09, 2016 20:00
+
+Service Ok[09-04-2016 20:49:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049524;OK;HARD;1;OK - DSB_Rd_RVM_101 (049524) - 23 minutes since last transaction (0495241K.993)
+Service Ok[09-04-2016 20:49:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049385;OK;HARD;1;OK - DSB_Kn_RVM_105 (049385) - 9 minutes since last transaction (0493851K.5CF)
+Service Ok[09-04-2016 20:49:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049320;OK;HARD;1;OK - STO_Har_RVM_101 (049320) - 124 minutes since last transaction (0493201K.7C3)
+Service Warning[09-04-2016 20:48:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049558;WARNING;HARD;1;WARNING - DSB_Lp_RVM_101 (049558) - 1683 minutes since last transaction (0495581K.479)
+Service Ok[09-04-2016 20:48:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045166;OK;HARD;1;OK - ARR_Bg_RVM_101 (045166) - 2260 minutes since last transaction (0451661K.1B9)
+Service Ok[09-04-2016 20:48:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049542;OK;HARD;1;OK - DSB_Hjs_RVM_101 (049542) - 408 minutes since last transaction (0495421K.31E)
+Service Ok[09-04-2016 20:48:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049384;OK;HARD;1;OK - DSB_Kn_RVM_104 (049384) - 8 minutes since last transaction (0493841K.F56)
+Service Ok[09-04-2016 20:48:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047003;OK;HARD;1;OK - MET_Lit_RVM_101 (047003) - 78 minutes since last transaction (0470031K.605)
+Service Ok[09-04-2016 20:48:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045152;OK;HARD;1;OK - ARR_Rk_RVM_101 (045152) - 183 minutes since last transaction (0451521K.303)
+Service Ok[09-04-2016 20:48:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048116;OK;HARD;1;OK - STO_St_RVM_101 (048116) - 33 minutes since last transaction (0481161K.1DA)
+Service Ok[09-04-2016 20:48:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048083;OK;HARD;1;OK - STO_Nø_RVM_101 (048083) - 33 minutes since last transaction (0480831K.460)
+Service Ok[09-04-2016 20:48:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048144;OK;HARD;1;OK - STO_Val_RVM_101 (048144) - 377 minutes since last transaction (0481441K.3E1)
+Service Ok[09-04-2016 20:48:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048102;OK;HARD;1;OK - STO_Pbt_RVM_101 (048102) - 32 minutes since last transaction (0481021K.034)
+Service Ok[09-04-2016 20:46:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048115;OK;HARD;1;OK - STO_Vs_RVM_101 (048115) - 196 minutes since last transaction (0481151K.377)
+Service Ok[09-04-2016 20:46:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049540;OK;HARD;1;OK - DSB_Oss_RVM_101 (049540) - 616 minutes since last transaction (0495401K.665)
+Service Ok[09-04-2016 20:46:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047015;OK;HARD;1;OK - MET_Uni_RVM_101 (047015) - 31 minutes since last transaction (0470151K.8F4)
+Service Ok[09-04-2016 20:44:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045020;OK;HARD;1;OK - NT_Hhs_RVM_101 (045020) - 194 minutes since last transaction (0450201K.A5C)
+Service Critical[09-04-2016 20:40:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.787GB (100%) - Free: 2.18GB (0%)
+Service Ok[09-04-2016 20:36:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049451;OK;HARD;1;OK - DSB_Sa_RVM_101 (049451) - 171 minutes since last transaction (0494511K.606)
+Service Ok[09-04-2016 20:36:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049523;OK;HARD;1;OK - DSB_Lg_RVM_101 (049523) - 216 minutes since last transaction (0495231K.C36)
+Service Critical[09-04-2016 20:36:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049561;CRITICAL;HARD;1;CRITICAL - DSB_Øds_RVM_101 (049561) - 3141 minutes since last transaction (0495611K.353)
+Service Ok[09-04-2016 20:36:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049525;OK;HARD;1;OK - DSB_Vjs_RVM_101 (049525) - 295 minutes since last transaction (0495251K.38A)
+Service Ok[09-04-2016 20:36:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049409;OK;HARD;1;OK - DSB_Te_RVM_101 (049409) - 696 minutes since last transaction (0494091K.232)
+Service Ok[09-04-2016 20:36:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048087;OK;HARD;1;OK - STO_Fl_RVM_101 (048087) - 155 minutes since last transaction (0480871K.505)
+Service Ok[09-04-2016 20:36:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048519;OK;HARD;1;OK - DSB_So_RVM_101 (048519) - 156 minutes since last transaction (0485191K.91A)
+Service Ok[09-04-2016 20:36:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049305;OK;HARD;1;OK - DSB_Ni_RVM_101 (049305) - 21 minutes since last transaction (0493051K.460)
+Service Ok[09-04-2016 20:36:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049367;OK;HARD;1;OK - DSB_Kh_RVM_107 (049367) - 21 minutes since last transaction (0493671K.47B)
+Service Ok[09-04-2016 20:36:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049436;OK;HARD;1;OK - DSB_Ad_RVM_101 (049436) - 261 minutes since last transaction (0494361K.D9B)
+Service Critical[09-04-2016 20:36:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045112;CRITICAL;HARD;1;CRITICAL - ARR_Ds_RVM_101 (045112) - 3394 minutes since last transaction (0451121K.241)
+Service Ok[09-04-2016 20:36:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049027;OK;HARD;1;OK - DSB_Ro_RVM_102 (049027) - 53 minutes since last transaction (0490271K.218)
+Service Ok[09-04-2016 20:36:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048017;OK;HARD;1;OK - STO_Sjæ_RVM_101 (048017) - 21 minutes since last transaction (0480171K.F4B)
+Service Ok[09-04-2016 20:36:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049386;OK;HARD;1;OK - DSB_Kn_RVM_106 (049386) - 21 minutes since last transaction (0493861K.4CA)
+Service Ok[09-04-2016 20:36:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049321;OK;HARD;1;OK - DSB_Gt_RVM_101 (049321) - 53 minutes since last transaction (0493211K.854)
+Service Ok[09-04-2016 20:36:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049906;OK;HARD;1;OK - DSB_Htå_RVM_101 (049906) - 54 minutes since last transaction (0499061K.5F8)
+Service Ok[09-04-2016 20:36:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045139;OK;HARD;1;OK - ARR_Vem_RVM_101 (045139) - 539 minutes since last transaction (0451391K.1D4)
+Service Ok[09-04-2016 20:36:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049544;OK;HARD;1;OK - DSB_Ã…s_RVM_101 (049544) - 291 minutes since last transaction (0495441K.2BD)
+Service Ok[09-04-2016 20:36:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049510;OK;HARD;1;OK - DSB_Eb_RVM_101 (049510) - 471 minutes since last transaction (0495101K.277)
+Service Ok[09-04-2016 20:36:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045125;OK;HARD;1;OK - ARR_Vka_RVM_101 (045125) - 531 minutes since last transaction (0451251K.35F)
+Service Ok[09-04-2016 20:36:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045009;OK;HARD;1;OK - NT_Sgb_RVM_101 (045009) - 51 minutes since last transaction (0450091K.D8A)
+Service Ok[09-04-2016 20:36:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048148;OK;HARD;1;OK - STO_Hot_RVM_101 (048148) - 53 minutes since last transaction (0481481K.A27)
+Service Warning[09-04-2016 20:36:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045154;WARNING;HARD;1;WARNING - ARR_Sm_RVM_101 (045154) - 2031 minutes since last transaction (0451541K.304)
+Service Ok[09-04-2016 20:35:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.241GB (99%) - Free: 2.726GB (1%)
+Service Warning[09-04-2016 20:35:08] SERVICE ALERT: REJK-P-SPS010;SPS EOD Distribution - Action List;WARNING;HARD;1;WARNING - 99% updated in 62 minutes - VCF: 42/0 (100%) - RVM: 35/1 (97%)
+Service Unknown[09-04-2016 20:34:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049524;UNKNOWN;HARD;1;UNKNOWN - DSB_Rd_RVM_101 (049524) - SPS link down
+Service Unknown[09-04-2016 20:34:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049385;UNKNOWN;HARD;1;UNKNOWN - DSB_Kn_RVM_105 (049385) - SPS link down
+Service Unknown[09-04-2016 20:34:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049320;UNKNOWN;HARD;1;UNKNOWN - STO_Har_RVM_101 (049320) - SPS link down
+Service Ok[09-04-2016 20:34:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Unknown[09-04-2016 20:33:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049558;UNKNOWN;HARD;1;UNKNOWN - DSB_Lp_RVM_101 (049558) - SPS link down
+Service Critical[09-04-2016 20:33:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[09-04-2016 20:33:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045166;UNKNOWN;HARD;1;UNKNOWN - ARR_Bg_RVM_101 (045166) - SPS link down
+Service Unknown[09-04-2016 20:33:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049542;UNKNOWN;HARD;1;UNKNOWN - DSB_Hjs_RVM_101 (049542) - SPS link down
+Service Unknown[09-04-2016 20:33:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049384;UNKNOWN;HARD;1;UNKNOWN - DSB_Kn_RVM_104 (049384) - SPS link down
+Service Unknown[09-04-2016 20:33:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047003;UNKNOWN;HARD;1;UNKNOWN - MET_Lit_RVM_101 (047003) - SPS link down
+Service Unknown[09-04-2016 20:33:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045152;UNKNOWN;HARD;1;UNKNOWN - ARR_Rk_RVM_101 (045152) - SPS link down
+Service Unknown[09-04-2016 20:33:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048116;UNKNOWN;HARD;1;UNKNOWN - STO_St_RVM_101 (048116) - SPS link down
+Service Unknown[09-04-2016 20:33:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048083;UNKNOWN;HARD;1;UNKNOWN - STO_Nø_RVM_101 (048083) - SPS link down
+Service Unknown[09-04-2016 20:33:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048144;UNKNOWN;HARD;1;UNKNOWN - STO_Val_RVM_101 (048144) - SPS link down
+Service Unknown[09-04-2016 20:33:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048102;UNKNOWN;HARD;1;UNKNOWN - STO_Pbt_RVM_101 (048102) - SPS link down
+Service Unknown[09-04-2016 20:31:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048115;UNKNOWN;HARD;1;UNKNOWN - STO_Vs_RVM_101 (048115) - SPS link down
+Service Unknown[09-04-2016 20:31:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049540;UNKNOWN;HARD;1;UNKNOWN - DSB_Oss_RVM_101 (049540) - SPS link down
+Service Unknown[09-04-2016 20:31:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047015;UNKNOWN;HARD;1;UNKNOWN - MET_Uni_RVM_101 (047015) - SPS link down
+Service Warning[09-04-2016 20:30:08] SERVICE ALERT: REJK-P-SPS010;SPS EOD Distribution - Secondary Blacklist;WARNING;HARD;1;WARNING - 99% updated in 102 minutes - VCF: 46/0 (100%) - RVM: 34/1 (97%)
+Service Unknown[09-04-2016 20:29:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045020;UNKNOWN;HARD;1;UNKNOWN - NT_Hhs_RVM_101 (045020) - SPS link down
+Service Ok[09-04-2016 20:29:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045160;OK;HARD;1;OK - ARR_Kæ_RVM_101 (045160) - 14 minutes since last transaction (0451601K.2D5)
+Service Ok[09-04-2016 20:29:08] SERVICE ALERT: AccessPoints;AP1_Holbaek_Valdemar-10.83.28.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[09-04-2016 20:28:08] SERVICE ALERT: AccessPoints;AP1_Holbaek_Valdemar-10.83.28.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[09-04-2016 20:25:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 510.014GB (100%) - Free: 1.953GB (0%)
+Service Ok[09-04-2016 20:25:08] SERVICE ALERT: REJK-P-SPS010;SPS EOD Distribution - Secondary Blacklist;OK;HARD;1;OK - VCF: 29/0 (100%) - RVM: 16/0 (100%)
+Service Ok[09-04-2016 20:22:18] SERVICE ALERT: AccessPoints;AP1_Banegardspladsen_4_Nykobing_F-10.64.18.20;OK;SOFT;3;OK - Got reply from host
+Service Ok[09-04-2016 20:22:18] SERVICE ALERT: AccessPoints;AP1_Jernbanegade_1_Helsingoer-10.64.8.20;OK;SOFT;3;OK - Got reply from host
+Service Unknown[09-04-2016 20:21:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049451;UNKNOWN;HARD;1;UNKNOWN - DSB_Sa_RVM_101 (049451) - SPS link down
+Service Unknown[09-04-2016 20:21:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049523;UNKNOWN;HARD;1;UNKNOWN - DSB_Lg_RVM_101 (049523) - SPS link down
+Service Unknown[09-04-2016 20:21:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049525;UNKNOWN;HARD;1;UNKNOWN - DSB_Vjs_RVM_101 (049525) - SPS link down
+Service Unknown[09-04-2016 20:21:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049561;UNKNOWN;HARD;1;UNKNOWN - DSB_Øds_RVM_101 (049561) - SPS link down
+Service Unknown[09-04-2016 20:21:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049409;UNKNOWN;HARD;1;UNKNOWN - DSB_Te_RVM_101 (049409) - SPS link down
+Service Unknown[09-04-2016 20:21:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048087;UNKNOWN;HARD;1;UNKNOWN - STO_Fl_RVM_101 (048087) - SPS link down
+Service Unknown[09-04-2016 20:21:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048519;UNKNOWN;HARD;1;UNKNOWN - DSB_So_RVM_101 (048519) - SPS link down
+Service Unknown[09-04-2016 20:21:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049305;UNKNOWN;HARD;1;UNKNOWN - DSB_Ni_RVM_101 (049305) - SPS link down
+Service Unknown[09-04-2016 20:21:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049367;UNKNOWN;HARD;1;UNKNOWN - DSB_Kh_RVM_107 (049367) - SPS link down
+Service Unknown[09-04-2016 20:21:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049436;UNKNOWN;HARD;1;UNKNOWN - DSB_Ad_RVM_101 (049436) - SPS link down
+Service Unknown[09-04-2016 20:21:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049027;UNKNOWN;HARD;1;UNKNOWN - DSB_Ro_RVM_102 (049027) - SPS link down
+Service Unknown[09-04-2016 20:21:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045112;UNKNOWN;HARD;1;UNKNOWN - ARR_Ds_RVM_101 (045112) - SPS link down
+Service Unknown[09-04-2016 20:21:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048017;UNKNOWN;HARD;1;UNKNOWN - STO_Sjæ_RVM_101 (048017) - SPS link down
+Service Unknown[09-04-2016 20:21:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049386;UNKNOWN;HARD;1;UNKNOWN - DSB_Kn_RVM_106 (049386) - SPS link down
+Service Unknown[09-04-2016 20:21:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045139;UNKNOWN;HARD;1;UNKNOWN - ARR_Vem_RVM_101 (045139) - SPS link down
+Service Unknown[09-04-2016 20:21:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049321;UNKNOWN;HARD;1;UNKNOWN - DSB_Gt_RVM_101 (049321) - SPS link down
+Service Unknown[09-04-2016 20:21:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049544;UNKNOWN;HARD;1;UNKNOWN - DSB_Ã…s_RVM_101 (049544) - SPS link down
+Service Unknown[09-04-2016 20:21:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049906;UNKNOWN;HARD;1;UNKNOWN - DSB_Htå_RVM_101 (049906) - SPS link down
+Service Unknown[09-04-2016 20:21:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049510;UNKNOWN;HARD;1;UNKNOWN - DSB_Eb_RVM_101 (049510) - SPS link down
+Service Unknown[09-04-2016 20:21:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045125;UNKNOWN;HARD;1;UNKNOWN - ARR_Vka_RVM_101 (045125) - SPS link down
+Service Unknown[09-04-2016 20:21:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045009;UNKNOWN;HARD;1;UNKNOWN - NT_Sgb_RVM_101 (045009) - SPS link down
+Service Unknown[09-04-2016 20:21:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048148;UNKNOWN;HARD;1;UNKNOWN - STO_Hot_RVM_101 (048148) - SPS link down
+Service Unknown[09-04-2016 20:21:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045154;UNKNOWN;HARD;1;UNKNOWN - ARR_Sm_RVM_101 (045154) - SPS link down
+Service Critical[09-04-2016 20:21:18] SERVICE ALERT: AccessPoints;AP1_Banegardspladsen_4_Nykobing_F-10.64.18.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[09-04-2016 20:21:18] SERVICE ALERT: AccessPoints;AP1_Jernbanegade_1_Helsingoer-10.64.8.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[09-04-2016 20:20:18] SERVICE ALERT: AccessPoints;AP1_Banegardspladsen_4_Nykobing_F-10.64.18.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[09-04-2016 20:20:18] SERVICE ALERT: AccessPoints;AP1_Jernbanegade_1_Helsingoer-10.64.8.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[09-04-2016 20:20:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.365GB (99%) - Free: 2.603GB (1%)
+Service Warning[09-04-2016 20:03:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049508;WARNING;HARD;1;WARNING - DSB_Ap_RVM_101 (049508) - 1758 minutes since last transaction (0495081K.253)
+
+April 09, 2016 19:00
+
+Service Warning[09-04-2016 19:50:08] SERVICE ALERT: REJK-P-SPS010;SPS EOD Distribution - Secondary Blacklist;WARNING;HARD;1;WARNING - 99% updated in 62 minutes - VCF: 49/0 (100%) - RVM: 35/1 (97%)
+Service Unknown[09-04-2016 19:48:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049508;UNKNOWN;HARD;1;UNKNOWN - DSB_Ap_RVM_101 (049508) - SPS link down
+Service Warning[09-04-2016 19:46:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044601;WARNING;HARD;1;WARNING - MT_Mst_RVM_101 (044601) - 1441 minutes since last transaction (0446011K.1E2)
+Service Ok[09-04-2016 19:44:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049440;OK;HARD;1;OK - DSB_Og_RVM_101 (049440) - 14 minutes since last transaction (0494401K.BE9)
+Service Warning[09-04-2016 19:44:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045160;WARNING;HARD;1;WARNING - ARR_Kæ_RVM_101 (045160) - 1454 minutes since last transaction (0451601K.2D4)
+Service Critical[09-04-2016 19:35:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.758GB (100%) - Free: 2.209GB (0%)
+Service Ok[09-04-2016 19:30:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.188GB (99%) - Free: 2.779GB (1%)
+Service Warning[09-04-2016 19:29:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045116;WARNING;HARD;1;WARNING - ARR_Vd_RVM_101 (045116) - 1454 minutes since last transaction (0451161K.45B)
+Service Critical[09-04-2016 19:20:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.793GB (100%) - Free: 2.175GB (0%)
+Service Ok[09-04-2016 19:18:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047017;OK;HARD;1;OK - MET_Bc_RVM_101 (047017) - 3 minutes since last transaction (0470171K.090)
+Service Ok[09-04-2016 19:15:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.258GB (99%) - Free: 2.709GB (1%)
+Service Warning[09-04-2016 19:03:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049508;WARNING;HARD;1;WARNING - DSB_Ap_RVM_101 (049508) - 1698 minutes since last transaction (0495081K.253)
+Service Ok[09-04-2016 19:03:28] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;3;OK - Got reply from host
+Service Unknown[09-04-2016 19:03:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047017;UNKNOWN;HARD;1;UNKNOWN - MET_Bc_RVM_101 (047017) - SPS link down
+Service Critical[09-04-2016 19:02:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[09-04-2016 19:01:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+
+April 09, 2016 18:00
+
+Service Ok[09-04-2016 18:55:58] SERVICE ALERT: AccessPoints;AP1_Stationsvej_5_Skaelskor-10.84.25.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[09-04-2016 18:55:08] SERVICE ALERT: AccessPoints;AP1_Stationsvej_5_Skaelskor-10.84.25.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[09-04-2016 18:50:18] SERVICE ALERT: AccessPoints;AP4_Jegstrupvej_5_Hasselager-10.87.68.23;OK;SOFT;2;OK - Got reply from host
+Service Critical[09-04-2016 18:49:18] SERVICE ALERT: AccessPoints;AP4_Jegstrupvej_5_Hasselager-10.87.68.23;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[09-04-2016 18:48:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049508;UNKNOWN;HARD;1;UNKNOWN - DSB_Ap_RVM_101 (049508) - SPS link down
+Service Ok[09-04-2016 18:31:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[09-04-2016 18:31:08] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;SOFT;2;OK - 0 row(s) in prg.ObjTransactionBuffer
+Service Critical[09-04-2016 18:30:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[09-04-2016 18:30:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.739GB (100%) - Free: 2.228GB (0%)
+Service Critical[09-04-2016 18:30:08] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;SOFT;1;(Return code of 255 is out of bounds)
+Service Ok[09-04-2016 18:28:08] SERVICE ALERT: AccessPoints;AP1_Bjergevej_22_Sdr_Felding-10.87.32.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[09-04-2016 18:27:58] SERVICE ALERT: AccessPoints;AP2_Suderholmen_8_Randers-10.87.53.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[09-04-2016 18:27:58] SERVICE ALERT: AccessPoints;AP1_Rylevej_3_Norre_Snede-10.87.20.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[09-04-2016 18:27:28] SERVICE ALERT: AccessPoints;AP1_Norregade_50_Kjellerup-10.87.42.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[09-04-2016 18:27:28] SERVICE ALERT: AccessPoints;AP1_Sondergade_16_Skive-10.87.48.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[09-04-2016 18:27:18] SERVICE ALERT: AccessPoints;AP1_Suderholmen_8_Randers-10.87.53.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[09-04-2016 18:27:08] SERVICE ALERT: AccessPoints;AP1_Bjergevej_22_Sdr_Felding-10.87.32.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[09-04-2016 18:27:08] SERVICE ALERT: AccessPoints;AP1_Rylevej_3_Norre_Snede-10.87.20.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[09-04-2016 18:27:08] SERVICE ALERT: AccessPoints;AP2_Suderholmen_8_Randers-10.87.53.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[09-04-2016 18:26:38] SERVICE ALERT: AccessPoints;AP1_Norregade_50_Kjellerup-10.87.42.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[09-04-2016 18:26:28] SERVICE ALERT: AccessPoints;AP1_Sondergade_16_Skive-10.87.48.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[09-04-2016 18:26:28] SERVICE ALERT: AccessPoints;AP1_Suderholmen_8_Randers-10.87.53.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[09-04-2016 18:25:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.11GB (99%) - Free: 2.858GB (1%)
+Service Critical[09-04-2016 18:15:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.825GB (100%) - Free: 2.143GB (0%)
+Service Ok[09-04-2016 18:10:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.288GB (99%) - Free: 2.679GB (1%)
+Service Ok[09-04-2016 18:03:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049918;OK;HARD;1;OK - DSB_Tov_RVM_101 (049918) - 3 minutes since last transaction (0499181K.058)
+Service Warning[09-04-2016 18:03:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049508;WARNING;HARD;1;WARNING - DSB_Ap_RVM_101 (049508) - 1638 minutes since last transaction (0495081K.253)
+Service Ok[09-04-2016 18:00:28] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[09-04-2016 18:00:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 510.019GB (100%) - Free: 1.949GB (0%)
+
+April 09, 2016 17:00
+
+Service Warning[09-04-2016 17:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049440;WARNING;HARD;1;WARNING - DSB_Og_RVM_101 (049440) - 1453 minutes since last transaction (0494401K.BE8)
+Service Critical[09-04-2016 17:59:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[09-04-2016 17:55:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.368GB (99%) - Free: 2.6GB (1%)
+Service Ok[09-04-2016 17:44:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[09-04-2016 17:43:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[09-04-2016 17:33:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049508;UNKNOWN;HARD;1;UNKNOWN - DSB_Ap_RVM_101 (049508) - SPS link down
+Service Ok[09-04-2016 17:28:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[09-04-2016 17:27:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[09-04-2016 17:25:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.639GB (100%) - Free: 2.328GB (0%)
+Service Ok[09-04-2016 17:20:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.166GB (99%) - Free: 2.801GB (1%)
+Service Critical[09-04-2016 17:15:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.903GB (100%) - Free: 2.065GB (0%)
+Service Ok[09-04-2016 17:10:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.215GB (99%) - Free: 2.753GB (1%)
+
+April 09, 2016 16:00
+
+Service Warning[09-04-2016 16:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049511;WARNING;HARD;1;WARNING - DSB_Na_RVM_101 (049511) - 1454 minutes since last transaction (0495111K.2FF)
+Service Critical[09-04-2016 16:50:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.588GB (100%) - Free: 2.38GB (0%)
+Service Warning[09-04-2016 16:48:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049558;WARNING;HARD;1;WARNING - DSB_Lp_RVM_101 (049558) - 1443 minutes since last transaction (0495581K.479)
+Service Ok[09-04-2016 16:45:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 508.989GB (99%) - Free: 2.979GB (1%)
+Service Critical[09-04-2016 16:35:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.692GB (100%) - Free: 2.275GB (0%)
+Service Ok[09-04-2016 16:30:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.174GB (99%) - Free: 2.794GB (1%)
+Service Critical[09-04-2016 16:21:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049561;CRITICAL;HARD;1;CRITICAL - DSB_Øds_RVM_101 (049561) - 2886 minutes since last transaction (0495611K.353)
+Service Warning[09-04-2016 16:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044602;WARNING;HARD;1;WARNING - MT_Mal_RVM_101 (044602) - 1442 minutes since last transaction (0446021K.2B4)
+Service Unknown[09-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049315;UNKNOWN;HARD;1;UNKNOWN - DSB_Hh_RVM_101 (049315) - SPS link down
+Service Warning[09-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049551;WARNING;HARD;1;WARNING - DSB_Svv_RVM_101 (049551) - 1451 minutes since last transaction (0495511K.630)
+Service Ok[09-04-2016 16:14:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049912;OK;HARD;1;OK - DSB_Ro_RVM_103 (049912) - 14 minutes since last transaction (0499121K.F59)
+
+April 09, 2016 15:00
+
+Service Ok[09-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045145;OK;HARD;1;OK - ARR_Hw_RVM_101 (045145) - 14 minutes since last transaction (0451451K.2EC)
+Service Unknown[09-04-2016 15:59:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049912;UNKNOWN;HARD;1;UNKNOWN - DSB_Ro_RVM_103 (049912) - SPS link down
+Service Ok[09-04-2016 15:51:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049525;OK;HARD;1;OK - DSB_Vjs_RVM_101 (049525) - 10 minutes since last transaction (0495251K.38A)
+Service Warning[09-04-2016 15:48:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049918;WARNING;HARD;1;WARNING - DSB_Tov_RVM_101 (049918) - 1443 minutes since last transaction (0499181K.057)
+Service Ok[09-04-2016 15:48:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047017;OK;HARD;1;OK - MET_Bc_RVM_101 (047017) - 3 minutes since last transaction (0470171K.08B)
+Service Warning[09-04-2016 15:44:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049354;WARNING;HARD;1;WARNING - DSB_Uu_RVM_101 (049354) - 1454 minutes since last transaction (0493541K.515)
+Service Ok[09-04-2016 15:44:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049410;OK;HARD;1;OK - DSB_Pa_RVM_101 (049410) - 14 minutes since last transaction (0494101K.523)
+Service Critical[09-04-2016 15:44:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049515;CRITICAL;HARD;1;CRITICAL - DSB_Bet_RVM_101 (049515) - 2894 minutes since last transaction (0495151K.3DA)
+Service Ok[09-04-2016 15:33:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048061;OK;HARD;1;OK - STO_Emt_RVM_101 (048061) - 3 minutes since last transaction (0480613K.0DE)
+Service Unknown[09-04-2016 15:33:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047017;UNKNOWN;HARD;1;UNKNOWN - MET_Bc_RVM_101 (047017) - SPS link down
+Service Critical[09-04-2016 15:30:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.803GB (100%) - Free: 2.165GB (0%)
+Service Ok[09-04-2016 15:29:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045104;OK;HARD;1;OK - ARR_Hæ_RVM_101 (045104) - 14 minutes since last transaction (0451041K.271)
+Service Ok[09-04-2016 15:25:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.182GB (99%) - Free: 2.786GB (1%)
+Service Unknown[09-04-2016 15:18:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048061;UNKNOWN;HARD;1;UNKNOWN - STO_Emt_RVM_101 (048061) - SPS link down
+Service Warning[09-04-2016 15:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045109;WARNING;HARD;1;WARNING - ARR_Trn_RVM_101 (045109) - 1442 minutes since last transaction (0451091K.54E)
+Service Critical[09-04-2016 15:15:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.925GB (100%) - Free: 2.043GB (0%)
+Service Warning[09-04-2016 15:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045115;WARNING;HARD;1;WARNING - ARR_Rej_RVM_101 (045115) - 1454 minutes since last transaction (0451151K.26C)
+Service Ok[09-04-2016 15:10:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.284GB (99%) - Free: 2.684GB (1%)
+
+April 09, 2016 14:00
+
+Service Ok[09-04-2016 14:57:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[09-04-2016 14:56:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[09-04-2016 14:48:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049508;WARNING;HARD;1;WARNING - DSB_Ap_RVM_101 (049508) - 1443 minutes since last transaction (0495081K.253)
+Service Critical[09-04-2016 14:29:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049410;CRITICAL;HARD;1;CRITICAL - DSB_Pa_RVM_101 (049410) - 2894 minutes since last transaction (0494101K.522)
+Service Critical[09-04-2016 14:25:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.899GB (100%) - Free: 2.068GB (0%)
+Service Ok[09-04-2016 14:20:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.358GB (99%) - Free: 2.609GB (1%)
+Service Ok[09-04-2016 14:05:38] SERVICE ALERT: AccessPoints;AP2_Holbaek_Dito-10.84.13.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[09-04-2016 14:05:38] SERVICE ALERT: AccessPoints;AP1_Dalsvinget_6_Slagelse-10.84.28.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[09-04-2016 14:04:38] SERVICE ALERT: AccessPoints;AP2_Holbaek_Dito-10.84.13.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[09-04-2016 14:04:38] SERVICE ALERT: AccessPoints;AP1_Dalsvinget_6_Slagelse-10.84.28.20;CRITICAL;SOFT;1;Critical - No response from host!
+
+April 09, 2016 13:00
+
+Service Ok[09-04-2016 13:56:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[09-04-2016 13:55:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[09-04-2016 13:28:38] SERVICE ALERT: REJK-P-TCS013;IIS connections;OK;HARD;1;OK (Sample Period 60 sec) - Site Name="_Total", CurrentConnections=0, _ConnectionAttemptsPersec=0/sec
+Service Unknown[09-04-2016 13:27:48] SERVICE ALERT: REJK-P-TCS013;IIS connections;UNKNOWN;HARD;1;Collecting first WMI sample because the previous state data file (/tmp/cwpss_checkiisconnections_connections_rejkptcs013__TOTAL__.state) contained no data. Results will be shown the next time the plugin runs.
+Service Ok[09-04-2016 13:10:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[09-04-2016 13:09:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[09-04-2016 13:06:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049525;WARNING;HARD;1;WARNING - DSB_Vjs_RVM_101 (049525) - 1446 minutes since last transaction (0495251K.389)
+Service Ok[09-04-2016 13:02:28] SERVICE ALERT: AccessPoints;AP2_Industriholmen_39-41_Avedore_Hvidovre-10.71.28.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[09-04-2016 13:02:28] SERVICE ALERT: AccessPoints;AP1_Fabriksparken_18_Glostrup-10.71.84.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[09-04-2016 13:02:28] SERVICE ALERT: AccessPoints;AP1_Teglvaerksvej_27_B_Roskilde-10.71.58.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[09-04-2016 13:02:18] SERVICE ALERT: AccessPoints;AP1_Sonnesgade_19B_AarhusC-10.71.64.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[09-04-2016 13:02:18] SERVICE ALERT: AccessPoints;AP1_Banegaardspladsen_Herning-10.71.65.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[09-04-2016 13:02:18] SERVICE ALERT: AccessPoints;AP1_Industrivej_22_Skibby-10.71.44.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[09-04-2016 13:02:18] SERVICE ALERT: AccessPoints;AP1_Columbusvej_6_Soborg-10.71.35.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[09-04-2016 13:01:28] SERVICE ALERT: AccessPoints;AP2_Industriholmen_39-41_Avedore_Hvidovre-10.71.28.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[09-04-2016 13:01:28] SERVICE ALERT: AccessPoints;AP1_Fabriksparken_18_Glostrup-10.71.84.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[09-04-2016 13:01:28] SERVICE ALERT: AccessPoints;AP1_Teglvaerksvej_27_B_Roskilde-10.71.58.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[09-04-2016 13:01:28] SERVICE ALERT: AccessPoints;AP1_Sonnesgade_19B_AarhusC-10.71.64.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[09-04-2016 13:01:28] SERVICE ALERT: AccessPoints;AP1_Banegaardspladsen_Herning-10.71.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[09-04-2016 13:01:28] SERVICE ALERT: AccessPoints;AP1_Industrivej_22_Skibby-10.71.44.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[09-04-2016 13:01:28] SERVICE ALERT: AccessPoints;AP1_Columbusvej_6_Soborg-10.71.35.20;CRITICAL;SOFT;1;Critical - No response from host!
+
+April 09, 2016 12:00
+
+Service Ok[09-04-2016 12:57:18] SERVICE ALERT: REJK-P-DPS005;FSV history out;OK;HARD;1;OK
+Service Critical[09-04-2016 12:52:18] SERVICE ALERT: REJK-P-DPS005;FSV history out;CRITICAL;HARD;1;CRITICAL - modified time 957 sec exceeded threshold of 900 sec
+Service Warning[09-04-2016 12:44:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049565;WARNING;HARD;1;WARNING - DSB_RÃ¥_RVM_101 (049565) - 1453 minutes since last transaction (0495651K.3A4)
+Service Ok[09-04-2016 12:44:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049563;OK;HARD;1;OK - DSB_Os_RVM_101 (049563) - 14 minutes since last transaction (0495631K.35E)
+Service Ok[09-04-2016 12:43:18] SERVICE ALERT: AccessPoints;AP2_Baldershoj_3_Ishoj-10.71.69.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[09-04-2016 12:42:18] SERVICE ALERT: AccessPoints;AP2_Baldershoj_3_Ishoj-10.71.69.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[09-04-2016 12:39:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[09-04-2016 12:38:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[09-04-2016 12:29:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049565;OK;HARD;1;OK - DSB_RÃ¥_RVM_101 (049565) - 1438 minutes since last transaction (0495651K.3A4)
+Service Critical[09-04-2016 12:15:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.711GB (100%) - Free: 2.256GB (0%)
+Service Ok[09-04-2016 12:10:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.168GB (99%) - Free: 2.799GB (1%)
+Service Critical[09-04-2016 12:06:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045112;CRITICAL;HARD;1;CRITICAL - ARR_Ds_RVM_101 (045112) - 2884 minutes since last transaction (0451121K.241)
+Service Critical[09-04-2016 12:00:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.951GB (100%) - Free: 2.017GB (0%)
+
+April 09, 2016 11:00
+
+Service Ok[09-04-2016 11:55:48] SERVICE ALERT: AccessPoints;AP1_Lundevej_5_Odder-10.87.62.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[09-04-2016 11:55:38] SERVICE ALERT: AccessPoints;AP2_Storkagervej_15_Risskov-10.87.70.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[09-04-2016 11:55:38] SERVICE ALERT: AccessPoints;AP1_Bisgsrdmark_5_Holstebro-10.87.41.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[09-04-2016 11:55:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.338GB (99%) - Free: 2.63GB (1%)
+Service Critical[09-04-2016 11:54:58] SERVICE ALERT: AccessPoints;AP1_Lundevej_5_Odder-10.87.62.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[09-04-2016 11:54:38] SERVICE ALERT: AccessPoints;AP2_Storkagervej_15_Risskov-10.87.70.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[09-04-2016 11:54:38] SERVICE ALERT: AccessPoints;AP1_Bisgsrdmark_5_Holstebro-10.87.41.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[09-04-2016 11:51:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045125;OK;HARD;1;OK - ARR_Vka_RVM_101 (045125) - 6 minutes since last transaction (0451251K.35F)
+Service Critical[09-04-2016 11:45:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 510.033GB (100%) - Free: 1.935GB (0%)
+Service Critical[09-04-2016 11:43:18] SERVICE ALERT: REJK-P-SQL006;Job Execution - Nets Refund Request DAT - BO;CRITICAL;HARD;1;CRITICAL - JOB - Nets Refund Request has not been executed since 2016-04-08 09:11:57. Current Status: Waiting
+Service Ok[09-04-2016 11:40:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.386GB (99%) - Free: 2.581GB (1%)
+Service Ok[09-04-2016 11:33:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049407;OK;HARD;1;OK - DSB_Oj_RVM_101 (049407) - 13 minutes since last transaction (0494071K.FB5)
+Service Ok[09-04-2016 11:29:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048120;OK;HARD;1;OK - STO_Kid_RVM_101 (048120) - 14 minutes since last transaction (0481201K.6D0)
+Service Unknown[09-04-2016 11:18:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049407;UNKNOWN;HARD;1;UNKNOWN - DSB_Oj_RVM_101 (049407) - SPS link down
+Service Ok[09-04-2016 11:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048019;OK;HARD;1;OK - STO_Gre_RVM_101 (048019) - 4 minutes since last transaction (0480191K.C9A)
+
+April 09, 2016 10:00
+
+Service Warning[09-04-2016 10:59:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049563;WARNING;HARD;1;WARNING - DSB_Os_RVM_101 (049563) - 1454 minutes since last transaction (0495631K.35D)
+Service Critical[09-04-2016 10:55:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.788GB (100%) - Free: 2.18GB (0%)
+Service Warning[09-04-2016 10:51:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045154;WARNING;HARD;1;WARNING - ARR_Sm_RVM_101 (045154) - 1446 minutes since last transaction (0451541K.304)
+Service Ok[09-04-2016 10:51:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048105;OK;HARD;1;OK - STO_Ist_RVM_101 (048105) - 6 minutes since last transaction (0481051K.8E4)
+Service Ok[09-04-2016 10:50:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.238GB (99%) - Free: 2.73GB (1%)
+Service Critical[09-04-2016 10:40:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.862GB (100%) - Free: 2.106GB (0%)
+Service Ok[09-04-2016 10:38:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[09-04-2016 10:37:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[09-04-2016 10:36:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048105;UNKNOWN;HARD;1;UNKNOWN - STO_Ist_RVM_101 (048105) - SPS link down
+Service Ok[09-04-2016 10:35:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.336GB (99%) - Free: 2.632GB (1%)
+Service Ok[09-04-2016 10:33:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049508;OK;HARD;1;OK - DSB_Ap_RVM_101 (049508) - 1188 minutes since last transaction (0495081K.253)
+Service Warning[09-04-2016 10:29:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045159;WARNING;HARD;1;WARNING - ARR_Td_RVM_101 (045159) - 1454 minutes since last transaction (0451591K.140)
+Service Ok[09-04-2016 10:25:38] SERVICE ALERT: REJK-P-TCF002;IIS connections;OK;HARD;1;OK (Sample Period 59 sec) - Site Name="_Total", CurrentConnections=1, _ConnectionAttemptsPersec=0/sec
+Service Unknown[09-04-2016 10:24:48] SERVICE ALERT: REJK-P-TCF002;IIS connections;UNKNOWN;HARD;1;Collecting first WMI sample because the previous state data file (/tmp/cwpss_checkiisconnections_connections_rejkptcf002__TOTAL__.state) contained no data. Results will be shown the next time the plugin runs.
+Service Unknown[09-04-2016 10:18:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049508;UNKNOWN;HARD;1;UNKNOWN - DSB_Ap_RVM_101 (049508) - SPS link down
+Service Ok[09-04-2016 10:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045169;OK;HARD;1;OK - ARR_Sv_RVM_101 (045169) - 14 minutes since last transaction (0451691K.386)
+
+April 09, 2016 09:00
+
+Service Warning[09-04-2016 09:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045157;WARNING;HARD;1;WARNING - ARR_Vp_RVM_101 (045157) - 1454 minutes since last transaction (0451571K.36C)
+Service Critical[09-04-2016 09:50:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.811GB (100%) - Free: 2.156GB (0%)
+Service Ok[09-04-2016 09:45:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.347GB (99%) - Free: 2.62GB (1%)
+Service Ok[09-04-2016 09:44:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049442;OK;HARD;1;OK - DSB_Abv_RVM_101 (049442) - 689 minutes since last transaction (0494421K.2AC)
+Service Ok[09-04-2016 09:38:48] SERVICE ALERT: REJK-P-SQL003;SQL Job Execution - Thales DBA Info Collector - DBA;OK;HARD;1;OK - ThalesDBAInfoCollector execution status is normal
+Service Ok[09-04-2016 09:34:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045111;OK;HARD;1;OK - ARR_Bw_RVM_101 (045111) - 4 minutes since last transaction (0451111K.3C4)
+Service Unknown[09-04-2016 09:29:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049442;UNKNOWN;HARD;1;UNKNOWN - DSB_Abv_RVM_101 (049442) - SPS link down
+Service Ok[09-04-2016 09:18:28] SERVICE ALERT: AccessPoints;AP1_Stationsvej_5_Holstebro-10.87.40.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[09-04-2016 09:17:28] SERVICE ALERT: AccessPoints;AP1_Stationsvej_5_Holstebro-10.87.40.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[09-04-2016 09:12:38] SERVICE ALERT: AccessPoints;AP1_Taksvej_11_Herning-10.87.38.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[09-04-2016 09:11:38] SERVICE ALERT: AccessPoints;AP1_Taksvej_11_Herning-10.87.38.20;CRITICAL;SOFT;1;Critical - No response from host!
+
+April 09, 2016 08:00
+
+Service Critical[09-04-2016 08:55:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.772GB (100%) - Free: 2.196GB (0%)
+Service Ok[09-04-2016 08:52:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[09-04-2016 08:51:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[09-04-2016 08:50:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.352GB (99%) - Free: 2.615GB (1%)
+Service Ok[09-04-2016 08:48:08] SERVICE ALERT: REJK-P-WEB002;IIS connections;OK;HARD;1;OK (Sample Period 27 sec) - Site Name="_Total", CurrentConnections=0, _ConnectionAttemptsPersec=0/sec
+Service Unknown[09-04-2016 08:47:48] SERVICE ALERT: REJK-P-WEB002;IIS connections;UNKNOWN;HARD;1;Collecting first WMI sample because the previous state data file (/tmp/cwpss_checkiisconnections_connections_rejkpweb002__TOTAL__.state) contained no data. Results will be shown the next time the plugin runs.
+Service Ok[09-04-2016 08:47:28] SERVICE ALERT: AccessPoints;AP1_Stationsvej_5_Holstebro-10.87.40.20;OK;HARD;3;OK - Got reply from host
+Service Critical[09-04-2016 08:45:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 510.017GB (100%) - Free: 1.95GB (0%)
+Service Ok[09-04-2016 08:40:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 511.968GB - Used: 509.356GB (99%) - Free: 2.612GB (1%)
+Service Ok[09-04-2016 08:21:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049367;OK;HARD;1;OK - DSB_Kh_RVM_107 (049367) - 426 minutes since last transaction (0493671K.472)
+Service Ok[09-04-2016 08:21:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048105;OK;HARD;1;OK - STO_Ist_RVM_101 (048105) - 80 minutes since last transaction (0481051K.8E2)
+Service Ok[09-04-2016 08:19:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049524;OK;HARD;1;OK - DSB_Rd_RVM_101 (049524) - 245 minutes since last transaction (0495241K.982)
+Service Ok[09-04-2016 08:19:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049560;OK;HARD;1;OK - DSB_Ht_RVM_101 (049560) - 949 minutes since last transaction (0495601K.47F)
+Service Ok[09-04-2016 08:19:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048118;OK;HARD;1;OK - STO_Øl_RVM_101 (048118) - 94 minutes since last transaction (0481181K.63C)
+Service Ok[09-04-2016 08:19:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048086;OK;HARD;1;OK - STO_Ght_RVM_101 (048086) - 634 minutes since last transaction (0480861K.FC1)
+Service Ok[09-04-2016 08:19:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048008;OK;HARD;1;OK - STO_Und_RVM_102 (048008) - 769 minutes since last transaction (0480081K.B62)
+Service Ok[09-04-2016 08:19:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047019;OK;HARD;1;OK - MET_Vea_RVM_101 (047019) - 4 minutes since last transaction (0470191K.6C1)
+Service Ok[09-04-2016 08:19:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048147;OK;HARD;1;OK - STO_Vir_RVM_101 (048147) - 19 minutes since last transaction (0481471K.ECD)
+Service Ok[09-04-2016 08:19:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049320;OK;HARD;1;OK - STO_Har_RVM_101 (049320) - 739 minutes since last transaction (0493201K.7BA)
+Service Ok[09-04-2016 08:19:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049385;OK;HARD;1;OK - DSB_Kn_RVM_105 (049385) - 49 minutes since last transaction (0493851K.5AD)
+Service Ok[09-04-2016 08:19:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047004;OK;HARD;1;OK - MET_Sot_RVM_101 (047004) - 91 minutes since last transaction (0470041K.C79)
+Service Ok[09-04-2016 08:19:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048062;OK;HARD;1;OK - STO_Emt_RVM_102 (048062) - 479 minutes since last transaction (0480621K.27B)
+Service Ok[09-04-2016 08:18:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047018;OK;HARD;1;OK - MET_Øre_RVM_101 (047018) - 408 minutes since last transaction (0470181K.83E)
+Service Ok[09-04-2016 08:18:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048015;OK;HARD;1;OK - STO_Ã…m_RVM_101 (048015) - 138 minutes since last transaction (0480151K.9E1)
+Service Ok[09-04-2016 08:18:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049558;OK;HARD;1;OK - DSB_Lp_RVM_101 (049558) - 933 minutes since last transaction (0495581K.479)
+Service Ok[09-04-2016 08:18:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048517;OK;HARD;1;OK - STO_Val_RVM_103 (048517) - 244 minutes since last transaction (0485171K.76E)
+Service Ok[09-04-2016 08:18:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045166;OK;HARD;1;OK - ARR_Bg_RVM_101 (045166) - 1510 minutes since last transaction (0451661K.1B9)
+Service Ok[09-04-2016 08:18:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049542;OK;HARD;1;OK - DSB_Hjs_RVM_101 (049542) - 93 minutes since last transaction (0495421K.31C)
+Service Ok[09-04-2016 08:18:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049420;OK;HARD;1;OK - DSB_Es_RVM_102 (049420) - 43 minutes since last transaction (0494201K.F22)
+Service Ok[09-04-2016 08:18:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048103;OK;HARD;1;OK - STO_Van_RVM_101 (048103) - 18 minutes since last transaction (0481031K.662)
+Service Ok[09-04-2016 08:18:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047003;OK;HARD;1;OK - MET_Lit_RVM_101 (047003) - 198 minutes since last transaction (0470031K.5E8)
+Service Ok[09-04-2016 08:18:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048146;OK;HARD;1;OK - STO_Sft_RVM_101 (048146) - 18 minutes since last transaction (0481461K.23E)
+Service Ok[09-04-2016 08:18:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048061;OK;HARD;1;OK - STO_Emt_RVM_101 (048061) - 213 minutes since last transaction (0480611K.3A5)
+Service Ok[09-04-2016 08:18:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045152;OK;HARD;1;OK - ARR_Rk_RVM_101 (045152) - 978 minutes since last transaction (0451521K.301)
+Service Ok[09-04-2016 08:18:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047017;OK;HARD;1;OK - MET_Bc_RVM_101 (047017) - 44 minutes since last transaction (0470171K.07B)
+Service Ok[09-04-2016 08:18:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049302;OK;HARD;1;OK - DSB_Vb_RVM_101 (049302) - 93 minutes since last transaction (0493021K.2C8)
+Service Ok[09-04-2016 08:18:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049406;OK;HARD;1;OK - DSB_Vm_RVM_101 (049406) - 1015 minutes since last transaction (0494061K.ADC)
+Service Ok[09-04-2016 08:18:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048083;OK;HARD;1;OK - STO_Nø_RVM_101 (048083) - 11 minutes since last transaction (0480831K.444)
+Service Ok[09-04-2016 08:18:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049556;OK;HARD;1;OK - DSB_Vsa_RVM_101 (049556) - 767 minutes since last transaction (0495561K.3E2)
+Service Ok[09-04-2016 08:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048144;OK;HARD;1;OK - STO_Val_RVM_101 (048144) - 244 minutes since last transaction (0481441K.3D8)
+Service Ok[09-04-2016 08:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047002;OK;HARD;1;OK - MET_Fl_RVM_101 (047002) - 168 minutes since last transaction (0470021K.2CF)
+Service Ok[09-04-2016 08:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049419;OK;HARD;1;OK - DSB_Es_RVM_101 (049419) - 2 minutes since last transaction (0494191K.265)
+Service Warning[09-04-2016 08:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045169;WARNING;HARD;1;WARNING - ARR_Sv_RVM_101 (045169) - 1454 minutes since last transaction (0451691K.385)
+Service Unknown[09-04-2016 08:06:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049367;UNKNOWN;HARD;1;UNKNOWN - DSB_Kh_RVM_107 (049367) - SPS link down
+Service Unknown[09-04-2016 08:06:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048105;UNKNOWN;HARD;1;UNKNOWN - STO_Ist_RVM_101 (048105) - SPS link down
+Service Unknown[09-04-2016 08:04:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049524;UNKNOWN;HARD;1;UNKNOWN - DSB_Rd_RVM_101 (049524) - SPS link down
+Service Unknown[09-04-2016 08:04:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049560;UNKNOWN;HARD;1;UNKNOWN - DSB_Ht_RVM_101 (049560) - SPS link down
+Service Unknown[09-04-2016 08:04:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048118;UNKNOWN;HARD;1;UNKNOWN - STO_Øl_RVM_101 (048118) - SPS link down
+Service Unknown[09-04-2016 08:04:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048086;UNKNOWN;HARD;1;UNKNOWN - STO_Ght_RVM_101 (048086) - SPS link down
+Service Unknown[09-04-2016 08:04:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048008;UNKNOWN;HARD;1;UNKNOWN - STO_Und_RVM_102 (048008) - SPS link down
+Service Unknown[09-04-2016 08:04:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047019;UNKNOWN;HARD;1;UNKNOWN - MET_Vea_RVM_101 (047019) - SPS link down
+Service Unknown[09-04-2016 08:04:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048147;UNKNOWN;HARD;1;UNKNOWN - STO_Vir_RVM_101 (048147) - SPS link down
+Service Unknown[09-04-2016 08:04:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049320;UNKNOWN;HARD;1;UNKNOWN - STO_Har_RVM_101 (049320) - SPS link down
+Service Unknown[09-04-2016 08:04:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049385;UNKNOWN;HARD;1;UNKNOWN - DSB_Kn_RVM_105 (049385) - SPS link down
+Service Unknown[09-04-2016 08:04:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047004;UNKNOWN;HARD;1;UNKNOWN - MET_Sot_RVM_101 (047004) - SPS link down
+Service Unknown[09-04-2016 08:04:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048062;UNKNOWN;HARD;1;UNKNOWN - STO_Emt_RVM_102 (048062) - SPS link down
+Service Unknown[09-04-2016 08:03:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047018;UNKNOWN;HARD;1;UNKNOWN - MET_Øre_RVM_101 (047018) - SPS link down
+Service Unknown[09-04-2016 08:03:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049558;UNKNOWN;HARD;1;UNKNOWN - DSB_Lp_RVM_101 (049558) - SPS link down
+Service Unknown[09-04-2016 08:03:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048015;UNKNOWN;HARD;1;UNKNOWN - STO_Ã…m_RVM_101 (048015) - SPS link down
+Service Unknown[09-04-2016 08:03:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048517;UNKNOWN;HARD;1;UNKNOWN - STO_Val_RVM_103 (048517) - SPS link down
+Service Unknown[09-04-2016 08:03:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045166;UNKNOWN;HARD;1;UNKNOWN - ARR_Bg_RVM_101 (045166) - SPS link down
+Service Unknown[09-04-2016 08:03:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049542;UNKNOWN;HARD;1;UNKNOWN - DSB_Hjs_RVM_101 (049542) - SPS link down
+Service Unknown[09-04-2016 08:03:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049420;UNKNOWN;HARD;1;UNKNOWN - DSB_Es_RVM_102 (049420) - SPS link down
+Service Unknown[09-04-2016 08:03:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048103;UNKNOWN;HARD;1;UNKNOWN - STO_Van_RVM_101 (048103) - SPS link down
+Service Unknown[09-04-2016 08:03:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047003;UNKNOWN;HARD;1;UNKNOWN - MET_Lit_RVM_101 (047003) - SPS link down
+Service Unknown[09-04-2016 08:03:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048146;UNKNOWN;HARD;1;UNKNOWN - STO_Sft_RVM_101 (048146) - SPS link down
+Service Unknown[09-04-2016 08:03:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048061;UNKNOWN;HARD;1;UNKNOWN - STO_Emt_RVM_101 (048061) - SPS link down
+Service Unknown[09-04-2016 08:03:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045152;UNKNOWN;HARD;1;UNKNOWN - ARR_Rk_RVM_101 (045152) - SPS link down
+Service Unknown[09-04-2016 08:03:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047017;UNKNOWN;HARD;1;UNKNOWN - MET_Bc_RVM_101 (047017) - SPS link down
+Service Unknown[09-04-2016 08:03:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049302;UNKNOWN;HARD;1;UNKNOWN - DSB_Vb_RVM_101 (049302) - SPS link down
+Service Unknown[09-04-2016 08:03:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049406;UNKNOWN;HARD;1;UNKNOWN - DSB_Vm_RVM_101 (049406) - SPS link down
+Service Unknown[09-04-2016 08:03:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048083;UNKNOWN;HARD;1;UNKNOWN - STO_Nø_RVM_101 (048083) - SPS link down
+Service Unknown[09-04-2016 08:03:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049556;UNKNOWN;HARD;1;UNKNOWN - DSB_Vsa_RVM_101 (049556) - SPS link down
+Service Unknown[09-04-2016 08:03:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048144;UNKNOWN;HARD;1;UNKNOWN - STO_Val_RVM_101 (048144) - SPS link down
+Service Unknown[09-04-2016 08:03:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047002;UNKNOWN;HARD;1;UNKNOWN - MET_Fl_RVM_101 (047002) - SPS link down
+Service Unknown[09-04-2016 08:03:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049419;UNKNOWN;HARD;1;UNKNOWN - DSB_Es_RVM_101 (049419) - SPS link down
+
+April 09, 2016 07:00
+
+Service Critical[09-04-2016 07:55:08] SERVICE ALERT: REJK-P-SQL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>99] - Physical Memory: Total: 511.968GB - Used: 509.826GB (100%) - Free: 2.142GB (0%)
+Service Unknown[09-04-2016 07:44:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049565;UNKNOWN;HARD;1;UNKNOWN - DSB_RÃ¥_RVM_101 (049565) - SPS link down
+Service Critical[09-04-2016 07:38:48] SERVICE ALERT: REJK-P-SQL003;SQL Job Execution - Thales DBA Info Collector - DBA;CRITICAL;HARD;1;CRITICAL - ThalesDBAInfoCollector Execution Status:Failed, Last Execution Date Time: 2016-04-09 07:00:00
+Service Critical[09-04-2016 07:02:28] SERVICE ALERT: AccessPoints;AP1_Stationsvej_5_Holstebro-10.87.40.20;CRITICAL;HARD;3;Critical - No response from host!
+Service Critical[09-04-2016 07:01:28] SERVICE ALERT: AccessPoints;AP1_Stationsvej_5_Holstebro-10.87.40.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[09-04-2016 07:00:28] SERVICE ALERT: AccessPoints;AP1_Stationsvej_5_Holstebro-10.87.40.20;CRITICAL;SOFT;1;Critical - No response from host!
+
+April 09, 2016 06:00
+
+Service Ok[09-04-2016 06:45:28] SERVICE ALERT: AccessPoints;AP1_Stationsvej_5_Holstebro-10.87.40.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[09-04-2016 06:44:28] SERVICE ALERT: AccessPoints;AP1_Stationsvej_5_Holstebro-10.87.40.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[09-04-2016 06:33:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049508;OK;HARD;1;OK - DSB_Ap_RVM_101 (049508) - 948 minutes since last transaction (0495081K.253)
+Service Ok[09-04-2016 06:29:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047028;OK;HARD;1;OK - MET_Cph_RVM_101 (047028) - 734 minutes since last transaction (0470281K.8D3)
+Service Ok[09-04-2016 06:29:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049374;OK;HARD;1;OK - DSB_Hf_RVM_101 (049374) - 140 minutes since last transaction (0493741K.C45)
+Service Ok[09-04-2016 06:01:38] SERVICE ALERT: REJK-P-SMC002;Ram usage;OK;HARD;1;OK - 3.2% (519380 kB) free.
+
+April 09, 2016 05:00
+
+Service Warning[09-04-2016 05:59:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049566;WARNING;HARD;1;WARNING - DSB_Ko_RVM_101 (049566) - 1445 minutes since last transaction (0495661K.329)
+Service Unknown[09-04-2016 05:33:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049508;UNKNOWN;HARD;1;UNKNOWN - DSB_Ap_RVM_101 (049508) - SPS link down
+Service Ok[09-04-2016 05:29:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044600;OK;HARD;1;OK - MT_Trg_RVM_101 (044600) - 839 minutes since last transaction (0446001K.18A)
+Service Ok[09-04-2016 05:21:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049523;OK;HARD;1;OK - DSB_Lg_RVM_101 (049523) - 483 minutes since last transaction (0495231K.C32)
+Service Ok[09-04-2016 05:21:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049544;OK;HARD;1;OK - DSB_Ã…s_RVM_101 (049544) - 515 minutes since last transaction (0495441K.2BB)
+Service Ok[09-04-2016 05:18:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049508;OK;HARD;1;OK - DSB_Ap_RVM_101 (049508) - 873 minutes since last transaction (0495081K.253)
+Service Ok[09-04-2016 05:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048110;OK;HARD;1;OK - STO_Ih_RVM_102 (048110) - 434 minutes since last transaction (0481101K.BFB)
+Service Unknown[09-04-2016 05:06:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049523;UNKNOWN;HARD;1;UNKNOWN - DSB_Lg_RVM_101 (049523) - SPS link down
+Service Unknown[09-04-2016 05:06:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049544;UNKNOWN;HARD;1;UNKNOWN - DSB_Ã…s_RVM_101 (049544) - SPS link down
+Service Ok[09-04-2016 05:06:28] SERVICE ALERT: REJK-P-INT002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 8GB - Used: 1.947GB (24%) - Free: 6.052GB (76%)
+
+April 09, 2016 04:00
+
+Service Unknown[09-04-2016 04:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048110;UNKNOWN;HARD;1;UNKNOWN - STO_Ih_RVM_102 (048110) - SPS link down
+Service Warning[09-04-2016 04:56:28] SERVICE ALERT: REJK-P-INT002;Ram usage;WARNING;HARD;1;WARNING - [Triggered by _MemUsed%>90] - Physical Memory: Total: 8GB - Used: 7.571GB (95%) - Free: 439.266MB (5%)
+Service Ok[09-04-2016 04:43:28] SERVICE ALERT: REJK-P-MDL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 16GB - Used: 9.648GB (60%) - Free: 6.351GB (40%)
+Service Ok[09-04-2016 04:41:48] SERVICE ALERT: REJK-P-MDL001;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 16GB - Used: 12.842GB (80%) - Free: 3.157GB (20%)
+Service Critical[09-04-2016 04:41:28] SERVICE ALERT: REJK-P-INT002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>95] - Physical Memory: Total: 8GB - Used: 7.733GB (97%) - Free: 273.266MB (3%)
+Service Unknown[09-04-2016 04:33:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049508;UNKNOWN;HARD;1;UNKNOWN - DSB_Ap_RVM_101 (049508) - SPS link down
+Service Warning[09-04-2016 04:31:28] SERVICE ALERT: REJK-P-INT002;Ram usage;WARNING;HARD;1;WARNING - [Triggered by _MemUsed%>90] - Physical Memory: Total: 8GB - Used: 7.362GB (92%) - Free: 652.973MB (8%)
+Service Ok[09-04-2016 04:24:28] SERVICE ALERT: REJK-P-MDL002;MDL incoming files age;OK;HARD;1;OK
+Service Ok[09-04-2016 04:18:38] SERVICE ALERT: REJK-P-MDL002;MDL incoming files queue;OK;HARD;1;OK
+Service Ok[09-04-2016 04:18:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049508;OK;HARD;1;OK - DSB_Ap_RVM_101 (049508) - 813 minutes since last transaction (0495081K.253)
+Service Ok[09-04-2016 04:18:28] SERVICE ALERT: REJK-P-MDL001;MDL incoming files queue;OK;HARD;1;OK
+Service Ok[09-04-2016 04:16:18] SERVICE ALERT: REJK-P-MDL001;MDL incoming files age;OK;HARD;1;OK
+Service Ok[09-04-2016 04:13:58] SERVICE ALERT: REJK-P-SQL003;SQL Job Execution - IFS Tracking Aggregation - DBA;OK;HARD;1;OK - IFS_Tracking_Aggregation execution status is normal
+Service Ok[09-04-2016 04:12:18] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_4_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_4.exe" running (0 excluded). (List is on next line)
+Service Ok[09-04-2016 04:11:28] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_3_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded). (List is on next line)
+Service Ok[09-04-2016 04:11:28] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_2_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_2.exe" running (0 excluded). (List is on next line)
+Service Ok[09-04-2016 04:08:38] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_2_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_2.exe" running (0 excluded). (List is on next line)
+Service Ok[09-04-2016 04:08:18] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_1_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_1.exe" running (0 excluded). (List is on next line)
+Service Ok[09-04-2016 04:08:18] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_4_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_4.exe" running (0 excluded). (List is on next line)
+Service Ok[09-04-2016 04:08:18] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_1_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_1.exe" running (0 excluded). (List is on next line)
+Service Ok[09-04-2016 04:08:18] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_3_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded). (List is on next line)
+Service Unknown[09-04-2016 04:03:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049508;UNKNOWN;HARD;1;UNKNOWN - DSB_Ap_RVM_101 (049508) - SPS link down
+Service Warning[09-04-2016 04:01:58] SERVICE ALERT: REJK-P-SQL003;SQL Job Execution - IFS Tracking Aggregation - DBA;WARNING;HARD;1;WARNING - IFS_Tracking_Aggregation has not been executed since 2 hours. Last Execution Status: Succeeded, Last Execution Date Time: 2016-04-09 02:00:00
+Service Critical[09-04-2016 04:01:48] SERVICE ALERT: REJK-P-MDL001;MDL incoming files age;CRITICAL;HARD;1;CRITICAL - modified time 7225 sec exceeded threshold of 7200 sec
+
+April 09, 2016 03:00
+
+Service Ok[09-04-2016 03:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049910;OK;HARD;1;OK - DSB_Kh_RVM_110 (049910) - 269 minutes since last transaction (0499101K.8E9)
+Service Ok[09-04-2016 03:58:38] SERVICE ALERT: REJK-P-WEB002;BackOffice Website;OK;HARD;1;HTTP OK: HTTP/1.1 200 OK - 4679 bytes in 0.540 second response time
+Service Critical[09-04-2016 03:53:48] SERVICE ALERT: REJK-P-WEB002;BackOffice Website;CRITICAL;HARD;1;CRITICAL - Socket timeout after 10 seconds
+Service Critical[09-04-2016 03:51:48] SERVICE ALERT: REJK-P-MDL001;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>95] - Physical Memory: Total: 16GB - Used: 15.445GB (97%) - Free: 567.352MB (3%)
+Service Critical[09-04-2016 03:48:28] SERVICE ALERT: REJK-P-MDL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>95] - Physical Memory: Total: 16GB - Used: 15.426GB (96%) - Free: 587.477MB (4%)
+Service Unknown[09-04-2016 03:44:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049910;UNKNOWN;HARD;1;UNKNOWN - DSB_Kh_RVM_110 (049910) - SPS link down
+Service Ok[09-04-2016 03:36:28] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[09-04-2016 03:35:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[09-04-2016 03:33:28] SERVICE ALERT: REJK-P-MDL002;Ram usage;WARNING;HARD;1;WARNING - [Triggered by _MemUsed%>90] - Physical Memory: Total: 16GB - Used: 14.678GB (92%) - Free: 1.321GB (8%)
+Service Warning[09-04-2016 03:31:48] SERVICE ALERT: REJK-P-MDL001;Ram usage;WARNING;HARD;1;WARNING - [Triggered by _MemUsed%>90] - Physical Memory: Total: 16GB - Used: 14.54GB (91%) - Free: 1.46GB (9%)
+Service Warning[09-04-2016 03:09:48] SERVICE ALERT: REJK-P-MDL002;MDL incoming files age;WARNING;HARD;1;WARNING - modified time 4139 sec exceeded threshold of 3600 sec
+Service Warning[09-04-2016 03:01:38] SERVICE ALERT: REJK-P-MDL001;MDL incoming files age;WARNING;HARD;1;WARNING - modified time 3625 sec exceeded threshold of 3600 sec
+
+April 09, 2016 02:00
+
+Service Ok[09-04-2016 02:50:08] SERVICE ALERT: REJK-P-SPS003;FSV history in;OK;HARD;1;OK
+Service Ok[09-04-2016 02:47:18] SERVICE ALERT: REJK-P-SPS008;FSV history in;OK;HARD;1;OK
+Service Ok[09-04-2016 02:47:18] SERVICE ALERT: REJK-P-SPS006;FSV history in;OK;HARD;1;OK
+Service Ok[09-04-2016 02:46:48] SERVICE ALERT: REJK-P-SPS005;FSV history in;OK;HARD;1;OK
+Service Warning[09-04-2016 02:46:38] SERVICE ALERT: REJK-P-SMC002;Ram usage;WARNING;HARD;1;WARNING - 1.1% (173048 kB) free!
+Service Ok[09-04-2016 02:46:28] SERVICE ALERT: REJK-P-SPS009;FSV history in;OK;HARD;1;OK
+Service Critical[09-04-2016 02:35:08] SERVICE ALERT: REJK-P-SPS003;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 2021 sec exceeded threshold of 1800 sec
+Service Critical[09-04-2016 02:32:18] SERVICE ALERT: REJK-P-SPS008;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 1849 sec exceeded threshold of 1800 sec
+Service Critical[09-04-2016 02:32:18] SERVICE ALERT: REJK-P-SPS006;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 1801 sec exceeded threshold of 1800 sec
+Service Critical[09-04-2016 02:31:48] SERVICE ALERT: REJK-P-SPS005;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 1812 sec exceeded threshold of 1800 sec
+Service Critical[09-04-2016 02:31:28] SERVICE ALERT: REJK-P-SPS009;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 1807 sec exceeded threshold of 1800 sec
+Service Ok[09-04-2016 02:06:58] SERVICE ALERT: REJK-P-SPS007;Disk D: usage;OK;HARD;1;OK - D:\ Total=120.00GB, Used=91.95GB (76.6%), Free=28.05GB (23.4%)
+Service Ok[09-04-2016 02:06:38] SERVICE ALERT: REJK-P-SPS003;Disk D: usage;OK;HARD;1;OK - D:\ Total=120.00GB, Used=89.60GB (74.7%), Free=30.39GB (25.3%)
+Service Ok[09-04-2016 02:06:28] SERVICE ALERT: REJK-P-SQL003;Boris connections;OK;HARD;1;OK - Number of BORIS TCRW connected: 248
+Service Ok[09-04-2016 02:04:28] SERVICE ALERT: REJK-P-SPS009;Disk D: usage;OK;HARD;1;OK - D:\ Total=120.00GB, Used=91.07GB (75.9%), Free=28.92GB (24.1%)
+Service Critical[09-04-2016 02:03:38] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_2_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_2.exe" running (0 excluded).
+Service Critical[09-04-2016 02:03:38] SERVICE ALERT: REJK-P-MDL002;MDL incoming files queue;CRITICAL;HARD;1;CRITICAL - count 1628 exceeded threshold of 1000
+Service Critical[09-04-2016 02:03:38] SERVICE ALERT: REJK-P-MDL001;MDL incoming files queue;CRITICAL;HARD;1;CRITICAL - count 1626 exceeded threshold of 1000
+Service Critical[09-04-2016 02:03:18] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_1_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_1.exe" running (0 excluded).
+Service Critical[09-04-2016 02:03:18] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_4_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_4.exe" running (0 excluded).
+Service Critical[09-04-2016 02:03:18] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_1_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_1.exe" running (0 excluded).
+Service Critical[09-04-2016 02:03:18] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_3_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded).
+Service Critical[09-04-2016 02:02:18] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_4_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_4.exe" running (0 excluded).
+Service Critical[09-04-2016 02:01:28] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_3_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded).
+Service Critical[09-04-2016 02:01:28] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_2_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_2.exe" running (0 excluded).
+Service Critical[09-04-2016 02:01:28] SERVICE ALERT: REJK-P-SQL003;Boris connections;CRITICAL;HARD;1;CRITICAL - Number of BORIS TCRW connected: 90
+
+April 09, 2016 01:00
+
+Service Critical[09-04-2016 01:41:38] SERVICE ALERT: REJK-P-SMC002;Ram usage;CRITICAL;HARD;1;CRITICAL - 1.0% (158576 kB) free!
+Service Ok[09-04-2016 01:21:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049305;OK;HARD;1;OK - DSB_Ni_RVM_101 (049305) - 80 minutes since last transaction (0493051K.44D)
+Service Ok[09-04-2016 01:19:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049919;OK;HARD;1;OK - DSB_Ka_RVM_101 (049919) - 3754 minutes since last transaction (0499191K.084)
+Service Ok[09-04-2016 01:19:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049449;OK;HARD;1;OK - DSB_Hl_RVM_102 (049449) - 288 minutes since last transaction (0494491K.AE5)
+Service Ok[09-04-2016 01:19:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049560;OK;HARD;1;OK - DSB_Ht_RVM_101 (049560) - 529 minutes since last transaction (0495601K.47F)
+Service Ok[09-04-2016 01:19:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049408;OK;HARD;1;OK - DSB_Rq_RVM_101 (049408) - 184 minutes since last transaction (0494081K.D73)
+Service Ok[09-04-2016 01:19:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049304;OK;HARD;1;OK - DSB_Ok_RVM_101 (049304) - 46 minutes since last transaction (0493041K.036)
+Service Ok[09-04-2016 01:19:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048086;OK;HARD;1;OK - STO_Ght_RVM_101 (048086) - 214 minutes since last transaction (0480861K.FC1)
+Service Ok[09-04-2016 01:19:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045138;OK;HARD;1;OK - ARR_Uf_RVM_101 (045138) - 724 minutes since last transaction (0451381K.0DB)
+Service Ok[09-04-2016 01:19:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049509;OK;HARD;1;OK - DSB_Gd_RVM_101 (049509) - 739 minutes since last transaction (0495091K.141)
+Service Ok[09-04-2016 01:19:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045167;OK;HARD;1;OK - ARR_Ev_RVM_101 (045167) - 5029 minutes since last transaction (0451671K.19C)
+Service Ok[09-04-2016 01:19:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049435;OK;HARD;1;OK - DSB_Næ_RVM_101 (049435) - 14 minutes since last transaction (0494351K.DBB)
+Service Ok[09-04-2016 01:19:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048016;OK;HARD;1;OK - STO_Nel_RVM_101 (048016) - 96 minutes since last transaction (0480161K.9E0)
+Service Ok[09-04-2016 01:19:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047019;OK;HARD;1;OK - MET_Vea_RVM_101 (047019) - 115 minutes since last transaction (0470191K.6BC)
+Service Ok[09-04-2016 01:19:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049543;OK;HARD;1;OK - DSB_Høs_RVM_101 (049543) - 2269 minutes since last transaction (0495431K.1FF)
+Service Ok[09-04-2016 01:19:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049905;OK;HARD;1;OK - DSB_Pe_RVM_101 (049905) - 154 minutes since last transaction (0499051K.89A)
+Service Warning[09-04-2016 01:19:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045111;WARNING;HARD;1;WARNING - ARR_Bw_RVM_101 (045111) - 2389 minutes since last transaction (0451111K.3C3)
+Service Ok[09-04-2016 01:19:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048104;OK;HARD;1;OK - STO_Jyt_RVM_101 (048104) - 45 minutes since last transaction (0481041K.176)
+Service Ok[09-04-2016 01:19:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049022;OK;HARD;1;OK - DSB_Næn_RVM_101 (049022) - 394 minutes since last transaction (0490221K.F8F)
+Service Ok[09-04-2016 01:19:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048062;OK;HARD;1;OK - STO_Emt_RVM_102 (048062) - 59 minutes since last transaction (0480621K.27B)
+Service Ok[09-04-2016 01:19:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047004;OK;HARD;1;OK - MET_Sot_RVM_101 (047004) - 46 minutes since last transaction (0470041K.C72)
+Service Ok[09-04-2016 01:19:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045153;OK;HARD;1;OK - ARR_Vg_RVM_101 (045153) - 184 minutes since last transaction (0451531K.09D)
+Service Ok[09-04-2016 01:19:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045124;OK;HARD;1;OK - ARR_Gu_RVM_101 (045124) - 814 minutes since last transaction (0451243K.02C)
+Service Ok[09-04-2016 01:19:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045001;OK;HARD;1;OK - NT_Ken_RVM_101 (045001) - 46 minutes since last transaction (0450011K.710)
+Service Ok[09-04-2016 01:18:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047018;OK;HARD;1;OK - MET_Øre_RVM_101 (047018) - 96 minutes since last transaction (0470181K.83D)
+Service Ok[09-04-2016 01:18:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049918;OK;HARD;1;OK - DSB_Tov_RVM_101 (049918) - 573 minutes since last transaction (0499181K.057)
+Service Ok[09-04-2016 01:18:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048117;OK;HARD;1;OK - STO_Gtg_RVM_101 (048117) - 45 minutes since last transaction (0481171K.E44)
+Service Ok[09-04-2016 01:18:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049558;OK;HARD;1;OK - DSB_Lp_RVM_101 (049558) - 513 minutes since last transaction (0495581K.479)
+Service Ok[09-04-2016 01:18:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049407;OK;HARD;1;OK - DSB_Oj_RVM_101 (049407) - 452 minutes since last transaction (0494071K.FB3)
+Service Ok[09-04-2016 01:18:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049303;OK;HARD;1;OK - DSB_Ru_RVM_101 (049303) - 243 minutes since last transaction (0493031K.F45)
+Service Ok[09-04-2016 01:18:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049448;OK;HARD;1;OK - DSB_Hl_RVM_101 (049448) - 33 minutes since last transaction (0494481K.4C0)
+Service Ok[09-04-2016 01:18:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048085;OK;HARD;1;OK - STO_Fut_RVM_101 (048085) - 45 minutes since last transaction (0480851K.7EF)
+Service Ok[09-04-2016 01:18:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045166;OK;HARD;1;OK - ARR_Bg_RVM_101 (045166) - 1090 minutes since last transaction (0451661K.1B9)
+Service Ok[09-04-2016 01:18:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045137;OK;HARD;1;OK - ARR_Tm_RVM_101 (045137) - 7413 minutes since last transaction (0451371K.15E)
+Service Ok[09-04-2016 01:18:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049904;OK;HARD;1;OK - DSB_Kk_RVM_102 (049904) - 153 minutes since last transaction (0499041K.E6C)
+Service Ok[09-04-2016 01:18:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045110;OK;HARD;1;OK - ARR_Vis_RVM_101 (045110) - 5069 minutes since last transaction (0451103K.023)
+Service Ok[09-04-2016 01:18:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049420;OK;HARD;1;OK - DSB_Es_RVM_102 (049420) - 108 minutes since last transaction (0494201K.F20)
+Service Ok[09-04-2016 01:18:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045123;OK;HARD;1;OK - ARR_Gje_RVM_101 (045123) - 573 minutes since last transaction (0451231K.E82)
+Service Ok[09-04-2016 01:18:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047003;OK;HARD;1;OK - MET_Lit_RVM_101 (047003) - 121 minutes since last transaction (0470031K.5E6)
+Service Ok[09-04-2016 01:18:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049021;OK;HARD;1;OK - DSB_Hz_RVM_101 (049021) - 213 minutes since last transaction (0490211K.C72)
+Service Ok[09-04-2016 01:18:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048061;OK;HARD;1;OK - STO_Emt_RVM_101 (048061) - 9 minutes since last transaction (0480611K.3A4)
+Service Ok[09-04-2016 01:18:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045152;OK;HARD;1;OK - ARR_Rk_RVM_101 (045152) - 558 minutes since last transaction (0451521K.301)
+Service Ok[09-04-2016 01:18:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048103;OK;HARD;1;OK - STO_Van_RVM_101 (048103) - 18 minutes since last transaction (0481031K.65B)
+Service Ok[09-04-2016 01:18:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044603;OK;HARD;1;OK - MT_Odd_RVM_101 (044603) - 318 minutes since last transaction (0446031K.69B)
+Service Ok[09-04-2016 01:18:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049319;OK;HARD;1;OK - DSB_Kl_RVM_102 (049319) - 109 minutes since last transaction (0493191K.1CD)
+Service Ok[09-04-2016 01:18:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049522;OK;HARD;1;OK - DSB_Ha_RVM_101 (049522) - 347 minutes since last transaction (0495221K.03D)
+Service Ok[09-04-2016 01:18:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049917;OK;HARD;1;OK - DSB_Rf_RVM_101 (049917) - 437 minutes since last transaction (0499171K.DE3)
+Service Ok[09-04-2016 01:18:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048116;OK;HARD;1;OK - STO_St_RVM_101 (048116) - 183 minutes since last transaction (0481161K.1C9)
+Service Ok[09-04-2016 01:18:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049447;OK;HARD;1;OK - DSB_Hb_RVM_101 (049447) - 63 minutes since last transaction (0494471K.28E)
+Service Ok[09-04-2016 01:18:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049406;OK;HARD;1;OK - DSB_Vm_RVM_101 (049406) - 595 minutes since last transaction (0494061K.ADC)
+Service Ok[09-04-2016 01:18:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048516;OK;HARD;1;OK - STO_Val_RVM_102 (048516) - 93 minutes since last transaction (0485161K.C15)
+Service Ok[09-04-2016 01:18:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049556;OK;HARD;1;OK - DSB_Vsa_RVM_101 (049556) - 347 minutes since last transaction (0495561K.3E2)
+Service Ok[09-04-2016 01:18:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047017;OK;HARD;1;OK - MET_Bc_RVM_101 (047017) - 58 minutes since last transaction (0470171K.07A)
+Service Ok[09-04-2016 01:18:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048014;OK;HARD;1;OK - STO_Frh_RVM_101 (048014) - 45 minutes since last transaction (0480141K.4A9)
+Service Ok[09-04-2016 01:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047902;OK;HARD;1;OK - MET_Khs_RVM_101 (047902) - 467 minutes since last transaction (0479021K.62A)
+Service Ok[09-04-2016 01:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045122;OK;HARD;1;OK - ARR_Esn_RVM_101 (045122) - 346 minutes since last transaction (0451221K.9C5)
+Service Ok[09-04-2016 01:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049903;OK;HARD;1;OK - DSB_Ro_RVM_104 (049903) - 113 minutes since last transaction (0499031K.FA2)
+Service Ok[09-04-2016 01:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045151;OK;HARD;1;OK - ARR_Bj_RVM_101 (045151) - 467 minutes since last transaction (0451511K.936)
+Service Ok[09-04-2016 01:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048102;OK;HARD;1;OK - STO_Pbt_RVM_101 (048102) - 182 minutes since last transaction (0481021K.024)
+Service Ok[09-04-2016 01:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049383;OK;HARD;1;OK - DSB_Kn_RVM_103 (049383) - 18 minutes since last transaction (0493831K.AE8)
+Service Ok[09-04-2016 01:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045135;OK;HARD;1;OK - ARR_Rj_RVM_101 (045135) - 242 minutes since last transaction (0451351K.CE3)
+Service Ok[09-04-2016 01:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048144;OK;HARD;1;OK - STO_Val_RVM_101 (048144) - 14 minutes since last transaction (0481441K.3D7)
+Service Ok[09-04-2016 01:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045165;OK;HARD;1;OK - ARR_Ik_RVM_101 (045165) - 32 minutes since last transaction (0451651K.C0F)
+Service Ok[09-04-2016 01:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049020;OK;HARD;1;OK - DSB_Gz_RVM_101 (049020) - 139 minutes since last transaction (0490201K.634)
+Service Ok[09-04-2016 01:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049507;OK;HARD;1;OK - DSB_Bd_RVM_101 (049507) - 13502 minutes since last transaction (0495071K.07E)
+Service Ok[09-04-2016 01:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047002;OK;HARD;1;OK - MET_Fl_RVM_101 (047002) - 197 minutes since last transaction (0470021K.2CE)
+Service Ok[09-04-2016 01:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045109;OK;HARD;1;OK - ARR_Trn_RVM_101 (045109) - 602 minutes since last transaction (0451091K.54E)
+Service Ok[09-04-2016 01:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048040;OK;HARD;1;OK - STO_Op_RVM_101 (048040) - 32 minutes since last transaction (0480401K.900)
+Service Ok[09-04-2016 01:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044602;OK;HARD;1;OK - MT_Mal_RVM_101 (044602) - 542 minutes since last transaction (0446021K.2B4)
+Service Ok[09-04-2016 01:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049419;OK;HARD;1;OK - DSB_Es_RVM_101 (049419) - 271 minutes since last transaction (0494191K.262)
+Service Ok[09-04-2016 01:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049318;OK;HARD;1;OK - DSB_Kl_RVM_101 (049318) - 138 minutes since last transaction (0493181K.092)
+Service Ok[09-04-2016 01:17:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049936;OK;HARD;1;OK - DSB_Lv_RVM_101 (049936) - 3059 minutes since last transaction (0499361K.03C)
+Service Unknown[09-04-2016 01:06:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049305;UNKNOWN;HARD;1;UNKNOWN - DSB_Ni_RVM_101 (049305) - SPS link down
+Service Unknown[09-04-2016 01:04:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049919;UNKNOWN;HARD;1;UNKNOWN - DSB_Ka_RVM_101 (049919) - SPS link down
+Service Unknown[09-04-2016 01:04:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049449;UNKNOWN;HARD;1;UNKNOWN - DSB_Hl_RVM_102 (049449) - SPS link down
+Service Unknown[09-04-2016 01:04:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049560;UNKNOWN;HARD;1;UNKNOWN - DSB_Ht_RVM_101 (049560) - SPS link down
+Service Unknown[09-04-2016 01:04:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049408;UNKNOWN;HARD;1;UNKNOWN - DSB_Rq_RVM_101 (049408) - SPS link down
+Service Unknown[09-04-2016 01:04:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049304;UNKNOWN;HARD;1;UNKNOWN - DSB_Ok_RVM_101 (049304) - SPS link down
+Service Unknown[09-04-2016 01:04:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048086;UNKNOWN;HARD;1;UNKNOWN - STO_Ght_RVM_101 (048086) - SPS link down
+Service Unknown[09-04-2016 01:04:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045138;UNKNOWN;HARD;1;UNKNOWN - ARR_Uf_RVM_101 (045138) - SPS link down
+Service Unknown[09-04-2016 01:04:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045167;UNKNOWN;HARD;1;UNKNOWN - ARR_Ev_RVM_101 (045167) - SPS link down
+Service Unknown[09-04-2016 01:04:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048016;UNKNOWN;HARD;1;UNKNOWN - STO_Nel_RVM_101 (048016) - SPS link down
+Service Unknown[09-04-2016 01:04:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049509;UNKNOWN;HARD;1;UNKNOWN - DSB_Gd_RVM_101 (049509) - SPS link down
+Service Unknown[09-04-2016 01:04:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049435;UNKNOWN;HARD;1;UNKNOWN - DSB_Næ_RVM_101 (049435) - SPS link down
+Service Unknown[09-04-2016 01:04:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047019;UNKNOWN;HARD;1;UNKNOWN - MET_Vea_RVM_101 (047019) - SPS link down
+Service Unknown[09-04-2016 01:04:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049543;UNKNOWN;HARD;1;UNKNOWN - DSB_Høs_RVM_101 (049543) - SPS link down
+Service Unknown[09-04-2016 01:04:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049905;UNKNOWN;HARD;1;UNKNOWN - DSB_Pe_RVM_101 (049905) - SPS link down
+Service Unknown[09-04-2016 01:04:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045111;UNKNOWN;HARD;1;UNKNOWN - ARR_Bw_RVM_101 (045111) - SPS link down
+Service Unknown[09-04-2016 01:04:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048104;UNKNOWN;HARD;1;UNKNOWN - STO_Jyt_RVM_101 (048104) - SPS link down
+Service Unknown[09-04-2016 01:04:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049022;UNKNOWN;HARD;1;UNKNOWN - DSB_Næn_RVM_101 (049022) - SPS link down
+Service Unknown[09-04-2016 01:04:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048062;UNKNOWN;HARD;1;UNKNOWN - STO_Emt_RVM_102 (048062) - SPS link down
+Service Unknown[09-04-2016 01:04:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047004;UNKNOWN;HARD;1;UNKNOWN - MET_Sot_RVM_101 (047004) - SPS link down
+Service Unknown[09-04-2016 01:04:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045153;UNKNOWN;HARD;1;UNKNOWN - ARR_Vg_RVM_101 (045153) - SPS link down
+Service Unknown[09-04-2016 01:04:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045124;UNKNOWN;HARD;1;UNKNOWN - ARR_Gu_RVM_101 (045124) - SPS link down
+Service Unknown[09-04-2016 01:04:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045001;UNKNOWN;HARD;1;UNKNOWN - NT_Ken_RVM_101 (045001) - SPS link down
+Service Unknown[09-04-2016 01:03:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049918;UNKNOWN;HARD;1;UNKNOWN - DSB_Tov_RVM_101 (049918) - SPS link down
+Service Unknown[09-04-2016 01:03:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049558;UNKNOWN;HARD;1;UNKNOWN - DSB_Lp_RVM_101 (049558) - SPS link down
+Service Unknown[09-04-2016 01:03:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047018;UNKNOWN;HARD;1;UNKNOWN - MET_Øre_RVM_101 (047018) - SPS link down
+Service Unknown[09-04-2016 01:03:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048117;UNKNOWN;HARD;1;UNKNOWN - STO_Gtg_RVM_101 (048117) - SPS link down
+Service Unknown[09-04-2016 01:03:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049303;UNKNOWN;HARD;1;UNKNOWN - DSB_Ru_RVM_101 (049303) - SPS link down
+Service Unknown[09-04-2016 01:03:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049407;UNKNOWN;HARD;1;UNKNOWN - DSB_Oj_RVM_101 (049407) - SPS link down
+Service Unknown[09-04-2016 01:03:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049448;UNKNOWN;HARD;1;UNKNOWN - DSB_Hl_RVM_101 (049448) - SPS link down
+Service Unknown[09-04-2016 01:03:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048085;UNKNOWN;HARD;1;UNKNOWN - STO_Fut_RVM_101 (048085) - SPS link down
+Service Unknown[09-04-2016 01:03:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045166;UNKNOWN;HARD;1;UNKNOWN - ARR_Bg_RVM_101 (045166) - SPS link down
+Service Unknown[09-04-2016 01:03:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045137;UNKNOWN;HARD;1;UNKNOWN - ARR_Tm_RVM_101 (045137) - SPS link down
+Service Unknown[09-04-2016 01:03:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049904;UNKNOWN;HARD;1;UNKNOWN - DSB_Kk_RVM_102 (049904) - SPS link down
+Service Unknown[09-04-2016 01:03:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045110;UNKNOWN;HARD;1;UNKNOWN - ARR_Vis_RVM_101 (045110) - SPS link down
+Service Unknown[09-04-2016 01:03:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049420;UNKNOWN;HARD;1;UNKNOWN - DSB_Es_RVM_102 (049420) - SPS link down
+Service Unknown[09-04-2016 01:03:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045123;UNKNOWN;HARD;1;UNKNOWN - ARR_Gje_RVM_101 (045123) - SPS link down
+Service Unknown[09-04-2016 01:03:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047003;UNKNOWN;HARD;1;UNKNOWN - MET_Lit_RVM_101 (047003) - SPS link down
+Service Unknown[09-04-2016 01:03:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049021;UNKNOWN;HARD;1;UNKNOWN - DSB_Hz_RVM_101 (049021) - SPS link down
+Service Unknown[09-04-2016 01:03:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048061;UNKNOWN;HARD;1;UNKNOWN - STO_Emt_RVM_101 (048061) - SPS link down
+Service Unknown[09-04-2016 01:03:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045152;UNKNOWN;HARD;1;UNKNOWN - ARR_Rk_RVM_101 (045152) - SPS link down
+Service Unknown[09-04-2016 01:03:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048103;UNKNOWN;HARD;1;UNKNOWN - STO_Van_RVM_101 (048103) - SPS link down
+Service Unknown[09-04-2016 01:03:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049319;UNKNOWN;HARD;1;UNKNOWN - DSB_Kl_RVM_102 (049319) - SPS link down
+Service Unknown[09-04-2016 01:03:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044603;UNKNOWN;HARD;1;UNKNOWN - MT_Odd_RVM_101 (044603) - SPS link down
+Service Unknown[09-04-2016 01:03:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049522;UNKNOWN;HARD;1;UNKNOWN - DSB_Ha_RVM_101 (049522) - SPS link down
+Service Unknown[09-04-2016 01:03:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049917;UNKNOWN;HARD;1;UNKNOWN - DSB_Rf_RVM_101 (049917) - SPS link down
+Service Unknown[09-04-2016 01:03:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048116;UNKNOWN;HARD;1;UNKNOWN - STO_St_RVM_101 (048116) - SPS link down
+Service Unknown[09-04-2016 01:03:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049406;UNKNOWN;HARD;1;UNKNOWN - DSB_Vm_RVM_101 (049406) - SPS link down
+Service Unknown[09-04-2016 01:03:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049447;UNKNOWN;HARD;1;UNKNOWN - DSB_Hb_RVM_101 (049447) - SPS link down
+Service Unknown[09-04-2016 01:03:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048516;UNKNOWN;HARD;1;UNKNOWN - STO_Val_RVM_102 (048516) - SPS link down
+Service Unknown[09-04-2016 01:03:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049556;UNKNOWN;HARD;1;UNKNOWN - DSB_Vsa_RVM_101 (049556) - SPS link down
+Service Unknown[09-04-2016 01:03:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048014;UNKNOWN;HARD;1;UNKNOWN - STO_Frh_RVM_101 (048014) - SPS link down
+Service Unknown[09-04-2016 01:03:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047017;UNKNOWN;HARD;1;UNKNOWN - MET_Bc_RVM_101 (047017) - SPS link down
+Service Unknown[09-04-2016 01:03:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047902;UNKNOWN;HARD;1;UNKNOWN - MET_Khs_RVM_101 (047902) - SPS link down
+Service Unknown[09-04-2016 01:03:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045122;UNKNOWN;HARD;1;UNKNOWN - ARR_Esn_RVM_101 (045122) - SPS link down
+Service Unknown[09-04-2016 01:03:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045151;UNKNOWN;HARD;1;UNKNOWN - ARR_Bj_RVM_101 (045151) - SPS link down
+Service Unknown[09-04-2016 01:03:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049903;UNKNOWN;HARD;1;UNKNOWN - DSB_Ro_RVM_104 (049903) - SPS link down
+Service Unknown[09-04-2016 01:03:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048102;UNKNOWN;HARD;1;UNKNOWN - STO_Pbt_RVM_101 (048102) - SPS link down
+Service Unknown[09-04-2016 01:03:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049383;UNKNOWN;HARD;1;UNKNOWN - DSB_Kn_RVM_103 (049383) - SPS link down
+Service Unknown[09-04-2016 01:03:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045135;UNKNOWN;HARD;1;UNKNOWN - ARR_Rj_RVM_101 (045135) - SPS link down
+Service Unknown[09-04-2016 01:03:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048144;UNKNOWN;HARD;1;UNKNOWN - STO_Val_RVM_101 (048144) - SPS link down
+Service Unknown[09-04-2016 01:03:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045165;UNKNOWN;HARD;1;UNKNOWN - ARR_Ik_RVM_101 (045165) - SPS link down
+Service Unknown[09-04-2016 01:03:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049020;UNKNOWN;HARD;1;UNKNOWN - DSB_Gz_RVM_101 (049020) - SPS link down
+Service Unknown[09-04-2016 01:03:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049507;UNKNOWN;HARD;1;UNKNOWN - DSB_Bd_RVM_101 (049507) - SPS link down
+Service Unknown[09-04-2016 01:03:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047002;UNKNOWN;HARD;1;UNKNOWN - MET_Fl_RVM_101 (047002) - SPS link down
+Service Unknown[09-04-2016 01:03:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048040;UNKNOWN;HARD;1;UNKNOWN - STO_Op_RVM_101 (048040) - SPS link down
+Service Unknown[09-04-2016 01:03:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045109;UNKNOWN;HARD;1;UNKNOWN - ARR_Trn_RVM_101 (045109) - SPS link down
+Service Unknown[09-04-2016 01:03:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044602;UNKNOWN;HARD;1;UNKNOWN - MT_Mal_RVM_101 (044602) - SPS link down
+Service Unknown[09-04-2016 01:03:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049419;UNKNOWN;HARD;1;UNKNOWN - DSB_Es_RVM_101 (049419) - SPS link down
+Service Unknown[09-04-2016 01:03:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049318;UNKNOWN;HARD;1;UNKNOWN - DSB_Kl_RVM_101 (049318) - SPS link down
+Service Unknown[09-04-2016 01:02:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049936;UNKNOWN;HARD;1;UNKNOWN - DSB_Lv_RVM_101 (049936) - SPS link down
+
+April 09, 2016 00:00
+
+Service Ok[09-04-2016 00:20:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[09-04-2016 00:19:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[09-04-2016 00:18:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[09-04-2016 00:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044600;UNKNOWN;HARD;1;UNKNOWN - MT_Trg_RVM_101 (044600) - SPS link down
+Service Warning[09-04-2016 00:06:38] SERVICE ALERT: REJK-P-SPS003;Disk D: usage;WARNING;HARD;1;WARNING - [Triggered by _Used%>90] - D:\ Total=120.00GB, Used=108.09GB (90.1%), Free=11.91GB (9.9%)
+Service Ok[09-04-2016 00:06:38] SERVICE ALERT: REJK-P-SPS001;FSV history out;OK;HARD;1;OK
+Service Ok[09-04-2016 00:01:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045108;OK;HARD;1;OK - ARR_Tdr_RVM_101 (045108) - 166 minutes since last transaction (0451081K.6A8)
+Service Critical[09-04-2016 00:01:38] SERVICE ALERT: REJK-P-SPS001;FSV history out;CRITICAL;HARD;1;CRITICAL - smb://rejk-p-sps001/D$/IFSBOData/FSV/Outgoing_histo/20160409/FSV_HistoOutgoing.txt not found
+Service Ok[09-04-2016 00:01:28] SERVICE ALERT: AccessPoints;AP1_Fabriksparken_18_Glostrup-10.71.84.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[09-04-2016 00:01:28] SERVICE ALERT: AccessPoints;AP1_Teglvaerksvej_27_B_Roskilde-10.71.58.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[09-04-2016 00:01:18] SERVICE ALERT: AccessPoints;AP1_Sonnesgade_19B_AarhusC-10.71.64.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[09-04-2016 00:01:18] SERVICE ALERT: AccessPoints;AP1_Banegaardspladsen_Herning-10.71.65.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[09-04-2016 00:01:18] SERVICE ALERT: AccessPoints;AP1_Industrivej_22_Skibby-10.71.44.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[09-04-2016 00:01:18] SERVICE ALERT: AccessPoints;AP1_Columbusvej_6_Soborg-10.71.35.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[09-04-2016 00:01:08] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;SOFT;2;OK - 0 row(s) in prg.ObjTransactionBuffer
+Service Critical[09-04-2016 00:00:28] SERVICE ALERT: AccessPoints;AP1_Fabriksparken_18_Glostrup-10.71.84.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[09-04-2016 00:00:28] SERVICE ALERT: AccessPoints;AP1_Teglvaerksvej_27_B_Roskilde-10.71.58.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[09-04-2016 00:00:28] SERVICE ALERT: AccessPoints;AP1_Sonnesgade_19B_AarhusC-10.71.64.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[09-04-2016 00:00:28] SERVICE ALERT: AccessPoints;AP1_Banegaardspladsen_Herning-10.71.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[09-04-2016 00:00:28] SERVICE ALERT: AccessPoints;AP1_Industrivej_22_Skibby-10.71.44.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[09-04-2016 00:00:28] SERVICE ALERT: AccessPoints;AP1_Columbusvej_6_Soborg-10.71.35.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[09-04-2016 00:00:08] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;SOFT;1;(Return code of 255 is out of bounds)
+Service Ok[09-04-2016 00:00:08] SERVICE ALERT: REJK-P-SQL006;Job Execution - Creation of collection letter DSB - BO;OK;HARD;1;OK - Normal execution interval
+
+Alert History
+Last Updated: Tue Apr 12 15:21:31 CEST 2016
+Nagios® Core™ 3.4.1 - www.nagios.org
+Logged in as ThalesMNI
+View Status Detail For All Hosts
+View Notifications For All Hosts
+All Hosts and Services
+
+Earlier Archive
+Earlier Archive
+Log File Navigation
+Fri Apr 8 00:00:00 CEST 2016
+to
+Sat Apr 9 00:00:00 CEST 2016 More Recent Archive
+More Recent Archive
+
+File: /var/log/nagios/archives/nagios-04-09-2016-00.log
+State type options:
+
+History detail level for all hosts:
+
+ Hide Flapping Alerts
+ Hide Downtime Alerts
+ Hide Process Messages
+ Older Entries First
+Update
+
+April 08, 2016 23:00
+
+Service Ok[08-04-2016 23:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049564;OK;HARD;1;OK - DSB_Mr_RVM_101 (049564) - 584 minutes since last transaction (0495641K.286)
+Service Unknown[08-04-2016 23:46:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045108;UNKNOWN;HARD;1;UNKNOWN - ARR_Tdr_RVM_101 (045108) - SPS link down
+Service Unknown[08-04-2016 23:44:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049564;UNKNOWN;HARD;1;UNKNOWN - DSB_Mr_RVM_101 (049564) - SPS link down
+Service Ok[08-04-2016 23:36:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048148;OK;HARD;1;OK - STO_Hot_RVM_101 (048148) - 96 minutes since last transaction (0481481K.A04)
+Service Warning[08-04-2016 23:34:28] SERVICE ALERT: REJK-P-SPS009;Disk D: usage;WARNING;HARD;1;WARNING - [Triggered by _Used%>90] - D:\ Total=120.00GB, Used=109.54GB (91.3%), Free=10.45GB (8.7%)
+Service Unknown[08-04-2016 23:29:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048019;UNKNOWN;HARD;1;UNKNOWN - STO_Gre_RVM_101 (048019) - SPS link down
+Service Unknown[08-04-2016 23:21:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048148;UNKNOWN;HARD;1;UNKNOWN - STO_Hot_RVM_101 (048148) - SPS link down
+Service Ok[08-04-2016 23:16:08] SERVICE ALERT: REJK-P-WEB002;IIS connections;OK;HARD;1;OK (Sample Period 27 sec) - Site Name="_Total", CurrentConnections=0, _ConnectionAttemptsPersec=0/sec
+Service Unknown[08-04-2016 23:15:48] SERVICE ALERT: REJK-P-WEB002;IIS connections;UNKNOWN;HARD;1;Collecting first WMI sample because the previous state data file (/tmp/cwpss_checkiisconnections_connections_rejkpweb002__TOTAL__.state) contained no data. Results will be shown the next time the plugin runs.
+Service Ok[08-04-2016 23:07:58] SERVICE ALERT: REJK-P-SQL006;Job - Payment journal posting DSB - BO;OK;HARD;1;OK, Current Status: Waiting
+Service Critical[08-04-2016 23:00:08] SERVICE ALERT: REJK-P-SQL006;Job Execution - Creation of collection letter DSB - BO;CRITICAL;HARD;1;CRITICAL - JOB - Creation of collection letter has not been executed since 2016-04-07 21:24:38. Current Status: Waiting
+
+April 08, 2016 22:00
+
+Service Ok[08-04-2016 22:55:18] SERVICE ALERT: REJK-P-INT003;Empty exports;OK;HARD;1;OK
+
+April 08, 2016 21:00
+
+Service Ok[08-04-2016 21:48:28] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[08-04-2016 21:47:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[08-04-2016 21:30:08] SERVICE ALERT: REJK-P-BCM003;RCOB import directory count;OK;HARD;1;OK
+Service Ok[08-04-2016 21:21:48] SERVICE ALERT: REJK-P-SQL003;Unprocessed TCS transactions;OK;HARD;1;OK
+Service Ok[08-04-2016 21:18:38] SERVICE ALERT: REJK-P-MDL002;MDL incoming files queue;OK;HARD;1;OK
+Service Ok[08-04-2016 21:18:28] SERVICE ALERT: REJK-P-MDL001;MDL incoming files queue;OK;HARD;1;OK
+Service Ok[08-04-2016 21:17:28] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[08-04-2016 21:16:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[08-04-2016 21:04:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048086;OK;HARD;1;OK - STO_Ght_RVM_101 (048086) - 49 minutes since last transaction (0480861K.FC0)
+Service Ok[08-04-2016 21:04:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049385;OK;HARD;1;OK - DSB_Kn_RVM_105 (049385) - 33 minutes since last transaction (0493851K.59F)
+Service Ok[08-04-2016 21:04:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048104;OK;HARD;1;OK - STO_Jyt_RVM_101 (048104) - 128 minutes since last transaction (0481041K.173)
+Service Ok[08-04-2016 21:04:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048062;OK;HARD;1;OK - STO_Emt_RVM_102 (048062) - 214 minutes since last transaction (0480621K.27A)
+Service Ok[08-04-2016 21:03:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049558;OK;HARD;1;OK - DSB_Lp_RVM_101 (049558) - 258 minutes since last transaction (0495581K.479)
+Service Ok[08-04-2016 21:03:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048015;OK;HARD;1;OK - STO_Ã…m_RVM_101 (048015) - 138 minutes since last transaction (0480151K.9DE)
+Service Ok[08-04-2016 21:03:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048085;OK;HARD;1;OK - STO_Fut_RVM_101 (048085) - 8 minutes since last transaction (0480851K.7EA)
+Service Critical[08-04-2016 21:03:38] SERVICE ALERT: REJK-P-MDL002;MDL incoming files queue;CRITICAL;HARD;1;CRITICAL - count 2489 exceeded threshold of 1000
+Service Warning[08-04-2016 21:03:28] SERVICE ALERT: REJK-P-MDL001;MDL incoming files queue;WARNING;HARD;1;WARNING - count 577 exceeded threshold of 500
+Service Ok[08-04-2016 21:03:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048146;OK;HARD;1;OK - STO_Sft_RVM_101 (048146) - 168 minutes since last transaction (0481461K.238)
+Service Ok[08-04-2016 21:03:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049384;OK;HARD;1;OK - DSB_Kn_RVM_104 (049384) - 16 minutes since last transaction (0493841K.F12)
+Service Ok[08-04-2016 21:03:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048061;OK;HARD;1;OK - STO_Emt_RVM_101 (048061) - 14 minutes since last transaction (0480611K.3A0)
+Service Ok[08-04-2016 21:03:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047003;OK;HARD;1;OK - MET_Lit_RVM_101 (047003) - 3 minutes since last transaction (0470031K.5E2)
+Service Ok[08-04-2016 21:03:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048116;OK;HARD;1;OK - STO_St_RVM_101 (048116) - 32 minutes since last transaction (0481161K.1C8)
+Service Ok[08-04-2016 21:03:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049406;OK;HARD;1;OK - DSB_Vm_RVM_101 (049406) - 340 minutes since last transaction (0494061K.ADC)
+Service Ok[08-04-2016 21:03:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048516;OK;HARD;1;OK - STO_Val_RVM_102 (048516) - 16 minutes since last transaction (0485161K.C12)
+Service Ok[08-04-2016 21:03:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049302;OK;HARD;1;OK - DSB_Vb_RVM_101 (049302) - 30 minutes since last transaction (0493021K.2C3)
+Service Ok[08-04-2016 21:03:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048014;OK;HARD;1;OK - STO_Frh_RVM_101 (048014) - 48 minutes since last transaction (0480141K.4A6)
+Service Ok[08-04-2016 21:03:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048102;OK;HARD;1;OK - STO_Pbt_RVM_101 (048102) - 92 minutes since last transaction (0481021K.021)
+Service Ok[08-04-2016 21:03:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049383;OK;HARD;1;OK - DSB_Kn_RVM_103 (049383) - 47 minutes since last transaction (0493831K.ADE)
+Service Ok[08-04-2016 21:03:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047002;OK;HARD;1;OK - MET_Fl_RVM_101 (047002) - 10 minutes since last transaction (0470021K.2CB)
+Service Ok[08-04-2016 21:03:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048040;OK;HARD;1;OK - STO_Op_RVM_101 (048040) - 32 minutes since last transaction (0480401K.8FB)
+Service Ok[08-04-2016 21:03:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048144;OK;HARD;1;OK - STO_Val_RVM_101 (048144) - 47 minutes since last transaction (0481441K.3CF)
+Service Ok[08-04-2016 21:01:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045108;OK;HARD;1;OK - ARR_Tdr_RVM_101 (045108) - 331 minutes since last transaction (0451083K.062)
+Service Ok[08-04-2016 21:01:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048013;OK;HARD;1;OK - STO_Avø_RVM_101 (048013) - 16 minutes since last transaction (0480131K.254)
+Service Ok[08-04-2016 21:01:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048082;OK;HARD;1;OK - STO_Bit_RVM_101 (048082) - 16 minutes since last transaction (0480821K.AA7)
+Service Ok[08-04-2016 21:01:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048515;OK;HARD;1;OK - STO_Ly_RVM_101 (048515) - 30 minutes since last transaction (0485151K.1D6)
+Service Ok[08-04-2016 21:01:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048115;OK;HARD;1;OK - STO_Vs_RVM_101 (048115) - 136 minutes since last transaction (0481151K.36E)
+Service Ok[08-04-2016 21:01:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049382;OK;HARD;1;OK - DSB_Kn_RVM_102 (049382) - 8 minutes since last transaction (0493821K.185)
+Service Ok[08-04-2016 21:01:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048143;OK;HARD;1;OK - STO_Jæt_RVM_101 (048143) - 12 minutes since last transaction (0481431K.833)
+Service Ok[08-04-2016 21:01:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048039;OK;HARD;1;OK - STO_Ch_RVM_101 (048039) - 15 minutes since last transaction (0480391K.B3E)
+
+April 08, 2016 20:00
+
+Service Unknown[08-04-2016 20:49:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048086;UNKNOWN;HARD;1;UNKNOWN - STO_Ght_RVM_101 (048086) - SPS link down
+Service Unknown[08-04-2016 20:49:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048104;UNKNOWN;HARD;1;UNKNOWN - STO_Jyt_RVM_101 (048104) - SPS link down
+Service Unknown[08-04-2016 20:49:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049385;UNKNOWN;HARD;1;UNKNOWN - DSB_Kn_RVM_105 (049385) - SPS link down
+Service Unknown[08-04-2016 20:49:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048062;UNKNOWN;HARD;1;UNKNOWN - STO_Emt_RVM_102 (048062) - SPS link down
+Service Unknown[08-04-2016 20:48:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049558;UNKNOWN;HARD;1;UNKNOWN - DSB_Lp_RVM_101 (049558) - SPS link down
+Service Unknown[08-04-2016 20:48:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048015;UNKNOWN;HARD;1;UNKNOWN - STO_Ã…m_RVM_101 (048015) - SPS link down
+Service Unknown[08-04-2016 20:48:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048085;UNKNOWN;HARD;1;UNKNOWN - STO_Fut_RVM_101 (048085) - SPS link down
+Service Unknown[08-04-2016 20:48:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048146;UNKNOWN;HARD;1;UNKNOWN - STO_Sft_RVM_101 (048146) - SPS link down
+Service Unknown[08-04-2016 20:48:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049384;UNKNOWN;HARD;1;UNKNOWN - DSB_Kn_RVM_104 (049384) - SPS link down
+Service Unknown[08-04-2016 20:48:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048061;UNKNOWN;HARD;1;UNKNOWN - STO_Emt_RVM_101 (048061) - SPS link down
+Service Unknown[08-04-2016 20:48:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047003;UNKNOWN;HARD;1;UNKNOWN - MET_Lit_RVM_101 (047003) - SPS link down
+Service Unknown[08-04-2016 20:48:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048116;UNKNOWN;HARD;1;UNKNOWN - STO_St_RVM_101 (048116) - SPS link down
+Service Unknown[08-04-2016 20:48:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049406;UNKNOWN;HARD;1;UNKNOWN - DSB_Vm_RVM_101 (049406) - SPS link down
+Service Unknown[08-04-2016 20:48:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048516;UNKNOWN;HARD;1;UNKNOWN - STO_Val_RVM_102 (048516) - SPS link down
+Service Unknown[08-04-2016 20:48:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049302;UNKNOWN;HARD;1;UNKNOWN - DSB_Vb_RVM_101 (049302) - SPS link down
+Service Unknown[08-04-2016 20:48:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048014;UNKNOWN;HARD;1;UNKNOWN - STO_Frh_RVM_101 (048014) - SPS link down
+Service Unknown[08-04-2016 20:48:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048102;UNKNOWN;HARD;1;UNKNOWN - STO_Pbt_RVM_101 (048102) - SPS link down
+Service Unknown[08-04-2016 20:48:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049383;UNKNOWN;HARD;1;UNKNOWN - DSB_Kn_RVM_103 (049383) - SPS link down
+Service Unknown[08-04-2016 20:48:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047002;UNKNOWN;HARD;1;UNKNOWN - MET_Fl_RVM_101 (047002) - SPS link down
+Service Unknown[08-04-2016 20:48:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048144;UNKNOWN;HARD;1;UNKNOWN - STO_Val_RVM_101 (048144) - SPS link down
+Service Unknown[08-04-2016 20:48:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048040;UNKNOWN;HARD;1;UNKNOWN - STO_Op_RVM_101 (048040) - SPS link down
+Service Unknown[08-04-2016 20:46:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045108;UNKNOWN;HARD;1;UNKNOWN - ARR_Tdr_RVM_101 (045108) - SPS link down
+Service Unknown[08-04-2016 20:46:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048013;UNKNOWN;HARD;1;UNKNOWN - STO_Avø_RVM_101 (048013) - SPS link down
+Service Unknown[08-04-2016 20:46:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048082;UNKNOWN;HARD;1;UNKNOWN - STO_Bit_RVM_101 (048082) - SPS link down
+Service Unknown[08-04-2016 20:46:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048515;UNKNOWN;HARD;1;UNKNOWN - STO_Ly_RVM_101 (048515) - SPS link down
+Service Unknown[08-04-2016 20:46:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048115;UNKNOWN;HARD;1;UNKNOWN - STO_Vs_RVM_101 (048115) - SPS link down
+Service Unknown[08-04-2016 20:46:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049382;UNKNOWN;HARD;1;UNKNOWN - DSB_Kn_RVM_102 (049382) - SPS link down
+Service Unknown[08-04-2016 20:46:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048143;UNKNOWN;HARD;1;UNKNOWN - STO_Jæt_RVM_101 (048143) - SPS link down
+Service Unknown[08-04-2016 20:46:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048039;UNKNOWN;HARD;1;UNKNOWN - STO_Ch_RVM_101 (048039) - SPS link down
+Service Critical[08-04-2016 20:15:08] SERVICE ALERT: REJK-P-BCM003;RCOB import directory count;CRITICAL;HARD;1;CRITICAL - count 4 exceeded threshold of 1
+Service Critical[08-04-2016 20:01:28] SERVICE ALERT: REJK-P-SQL003;Unprocessed TCS transactions;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+
+April 08, 2016 19:00
+
+Service Ok[08-04-2016 19:48:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049542;OK;HARD;1;OK - DSB_Hjs_RVM_101 (049542) - 3 minutes since last transaction (0495421K.31B)
+Service Ok[08-04-2016 19:44:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045160;OK;HARD;1;OK - ARR_Kæ_RVM_101 (045160) - 14 minutes since last transaction (0451601K.2D4)
+Service Warning[08-04-2016 19:36:58] SERVICE ALERT: REJK-P-SPS007;Disk D: usage;WARNING;HARD;1;WARNING - [Triggered by _Used%>90] - D:\ Total=120.00GB, Used=108.35GB (90.3%), Free=11.65GB (9.7%)
+Service Ok[08-04-2016 19:00:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049569;OK;HARD;1;OK - DSB_Kn_RVM_108 (049569) - 2 minutes since last transaction (0495691K.5C1)
+
+April 08, 2016 18:00
+
+Service Critical[08-04-2016 18:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045145;CRITICAL;HARD;1;CRITICAL - ARR_Hw_RVM_101 (045145) - 2894 minutes since last transaction (0451451K.2EB)
+Service Warning[08-04-2016 18:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048120;WARNING;HARD;1;WARNING - STO_Kid_RVM_101 (048120) - 1454 minutes since last transaction (0481201K.6CF)
+Service Unknown[08-04-2016 18:45:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049569;UNKNOWN;HARD;1;UNKNOWN - DSB_Kn_RVM_108 (049569) - SPS link down
+Service Unknown[08-04-2016 18:44:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047028;UNKNOWN;HARD;1;UNKNOWN - MET_Cph_RVM_101 (047028) - SPS link down
+Service Ok[08-04-2016 18:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045141;OK;HARD;1;OK - ARR_Hm_RVM_101 (045141) - 4709 minutes since last transaction (0451411K.108)
+Service Ok[08-04-2016 18:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049333;OK;HARD;1;OK - DSB_Hl_RVM_103 (049333) - 13 minutes since last transaction (0493331K.4B3)
+Service Ok[08-04-2016 18:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049564;OK;HARD;1;OK - DSB_Mr_RVM_101 (049564) - 239 minutes since last transaction (0495641K.286)
+Service Ok[08-04-2016 18:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049909;OK;HARD;1;OK - DSB_TÃ¥t_RVM_101 (049909) - 29 minutes since last transaction (0499091K.1B7)
+Service Ok[08-04-2016 18:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049910;OK;HARD;1;OK - DSB_Kh_RVM_110 (049910) - 44 minutes since last transaction (0499101K.8E0)
+Service Ok[08-04-2016 18:14:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049929;OK;HARD;1;OK - DSB_Lpt_RVM_101 (049929) - 464 minutes since last transaction (0499291K.0E4)
+
+April 08, 2016 17:00
+
+Service Unknown[08-04-2016 17:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045141;UNKNOWN;HARD;1;UNKNOWN - ARR_Hm_RVM_101 (045141) - SPS link down
+Service Unknown[08-04-2016 17:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049333;UNKNOWN;HARD;1;UNKNOWN - DSB_Hl_RVM_103 (049333) - SPS link down
+Service Unknown[08-04-2016 17:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049564;UNKNOWN;HARD;1;UNKNOWN - DSB_Mr_RVM_101 (049564) - SPS link down
+Service Unknown[08-04-2016 17:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049909;UNKNOWN;HARD;1;UNKNOWN - DSB_TÃ¥t_RVM_101 (049909) - SPS link down
+Service Unknown[08-04-2016 17:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049910;UNKNOWN;HARD;1;UNKNOWN - DSB_Kh_RVM_110 (049910) - SPS link down
+Service Unknown[08-04-2016 17:59:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049929;UNKNOWN;HARD;1;UNKNOWN - DSB_Lpt_RVM_101 (049929) - SPS link down
+Service Ok[08-04-2016 17:57:38] SERVICE ALERT: AccessPoints;AP4_Kobenhavn_Bernstoffsgade-10.65.2.23;OK;SOFT;2;OK - Got reply from host
+Service Critical[08-04-2016 17:56:48] SERVICE ALERT: AccessPoints;AP4_Kobenhavn_Bernstoffsgade-10.65.2.23;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[08-04-2016 17:51:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049906;OK;HARD;1;OK - DSB_Htå_RVM_101 (049906) - 4 minutes since last transaction (0499061K.5CB)
+Service Ok[08-04-2016 17:49:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049449;OK;HARD;1;OK - DSB_Hl_RVM_102 (049449) - 19 minutes since last transaction (0494491K.AE2)
+Service Ok[08-04-2016 17:49:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049366;OK;HARD;1;OK - DSB_Kh_RVM_106 (049366) - 4 minutes since last transaction (0493661K.40F)
+Service Ok[08-04-2016 17:48:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049364;OK;HARD;1;OK - DSB_Kh_RVM_104 (049364) - 3 minutes since last transaction (0493641K.8B0)
+Service Ok[08-04-2016 17:48:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049448;OK;HARD;1;OK - DSB_Hl_RVM_101 (049448) - 11 minutes since last transaction (0494481K.4B9)
+Service Ok[08-04-2016 17:44:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048071;OK;HARD;1;OK - STO_Vær_RVM_101 (048071) - 3 minutes since last transaction (0480713K.037)
+Service Warning[08-04-2016 17:44:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045160;WARNING;HARD;1;WARNING - ARR_Kæ_RVM_101 (045160) - 1454 minutes since last transaction (0451601K.2D3)
+Service Critical[08-04-2016 17:44:18] SERVICE ALERT: REJK-P-SQL006;AX Session EndBlocked;CRITICAL;HARD;1;CRITICAL - found 2 session(s) in status "Ending - Blocked"
+Service Unknown[08-04-2016 17:36:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049906;UNKNOWN;HARD;1;UNKNOWN - DSB_Htå_RVM_101 (049906) - SPS link down
+Service Unknown[08-04-2016 17:34:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049449;UNKNOWN;HARD;1;UNKNOWN - DSB_Hl_RVM_102 (049449) - SPS link down
+Service Unknown[08-04-2016 17:34:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049366;UNKNOWN;HARD;1;UNKNOWN - DSB_Kh_RVM_106 (049366) - SPS link down
+Service Ok[08-04-2016 17:34:08] SERVICE ALERT: AccessPoints;AP2_Kobenhavn_Bernstoffsgade-10.65.2.21;OK;SOFT;2;OK - Got reply from host
+Service Unknown[08-04-2016 17:33:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049364;UNKNOWN;HARD;1;UNKNOWN - DSB_Kh_RVM_104 (049364) - SPS link down
+Service Unknown[08-04-2016 17:33:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049448;UNKNOWN;HARD;1;UNKNOWN - DSB_Hl_RVM_101 (049448) - SPS link down
+Service Critical[08-04-2016 17:33:08] SERVICE ALERT: AccessPoints;AP2_Kobenhavn_Bernstoffsgade-10.65.2.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[08-04-2016 17:30:08] SERVICE ALERT: REJK-P-SPS004;SPS EOD Distribution - Action List;OK;HARD;1;OK - VCF: 53/0 (100%) - RVM: 39/0 (100%)
+Service Ok[08-04-2016 17:30:08] SERVICE ALERT: REJK-P-SPS004;SPS EOD Distribution - Secondary Blacklist;OK;HARD;1;OK - VCF: 53/0 (100%) - RVM: 39/0 (100%)
+Service Unknown[08-04-2016 17:29:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048071;UNKNOWN;HARD;1;UNKNOWN - STO_Vær_RVM_101 (048071) - SPS link down
+
+April 08, 2016 16:00
+
+Service Critical[08-04-2016 16:35:08] SERVICE ALERT: REJK-P-SQL006;AX Longrunning Exec;CRITICAL;HARD;1;CRITICAL - found 1 execution(s) running more than 21600 seconds.
+Service Ok[08-04-2016 16:27:18] SERVICE ALERT: AccessPoints;AP2_Gunnar_Clausensvej_4_Viby_j-10.87.71.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[08-04-2016 16:26:18] SERVICE ALERT: AccessPoints;AP2_Gunnar_Clausensvej_4_Viby_j-10.87.71.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[08-04-2016 16:21:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049561;WARNING;HARD;1;WARNING - DSB_Øds_RVM_101 (049561) - 1446 minutes since last transaction (0495611K.353)
+Service Ok[08-04-2016 16:18:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049406;OK;HARD;1;OK - DSB_Vm_RVM_101 (049406) - 55 minutes since last transaction (0494061K.ADC)
+Service Ok[08-04-2016 16:18:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049917;OK;HARD;1;OK - DSB_Rf_RVM_101 (049917) - 497 minutes since last transaction (0499171K.DE2)
+Service Ok[08-04-2016 16:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049383;OK;HARD;1;OK - DSB_Kn_RVM_103 (049383) - 14 minutes since last transaction (0493831K.AD5)
+Service Ok[08-04-2016 16:16:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049521;OK;HARD;1;OK - DSB_Ar_RVM_102 (049521) - 1 minutes since last transaction (0495211K.132)
+Service Ok[08-04-2016 16:16:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048013;OK;HARD;1;OK - STO_Avø_RVM_101 (048013) - 14 minutes since last transaction (0480131K.248)
+Service Ok[08-04-2016 16:16:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049405;OK;HARD;1;OK - DSB_Lk_RVM_101 (049405) - 76 minutes since last transaction (0494051K.C14)
+Service Ok[08-04-2016 16:16:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049555;OK;HARD;1;OK - DSB_Øs_RVM_101 (049555) - 46 minutes since last transaction (0495551K.5A4)
+Service Ok[08-04-2016 16:16:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048115;OK;HARD;1;OK - STO_Vs_RVM_101 (048115) - 55 minutes since last transaction (0481151K.36A)
+Service Ok[08-04-2016 16:16:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049446;OK;HARD;1;OK - DSB_Hj_RVM_101 (049446) - 12 minutes since last transaction (0494461K.B0B)
+Service Ok[08-04-2016 16:16:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048515;OK;HARD;1;OK - STO_Ly_RVM_101 (048515) - 1 minutes since last transaction (0485151K.1C7)
+Service Ok[08-04-2016 16:16:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049382;OK;HARD;1;OK - DSB_Kn_RVM_102 (049382) - 1 minutes since last transaction (0493821K.176)
+Service Ok[08-04-2016 16:16:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049902;OK;HARD;1;OK - DSB_Rg_RVM_102 (049902) - 1 minutes since last transaction (0499021K.686)
+Service Ok[08-04-2016 16:16:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049317;OK;HARD;1;OK - DSB_Vy_RVM_101 (049317) - 13 minutes since last transaction (0493171K.02F)
+Service Ok[08-04-2016 16:16:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045200;OK;HARD;1;OK - ARR_Bu_RVM_101 (045200) - 6156 minutes since last transaction (0452001K.140)
+Service Ok[08-04-2016 16:16:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048101;OK;HARD;1;OK - STO_Vat_RVM_101 (048101) - 1 minutes since last transaction (0481011K.6FE)
+Service Ok[08-04-2016 16:16:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048039;OK;HARD;1;OK - STO_Ch_RVM_101 (048039) - 1 minutes since last transaction (0480391K.B32)
+Service Ok[08-04-2016 16:15:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049212;OK;HARD;1;OK - DSB_Se_RVM_101 (049212) - 134 minutes since last transaction (0492121K.E80)
+Service Ok[08-04-2016 16:15:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049520;OK;HARD;1;OK - DSB_Ar_RVM_101 (049520) - 12 minutes since last transaction (0495201K.BD5)
+Service Ok[08-04-2016 16:15:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049554;OK;HARD;1;OK - DSB_Bak_RVM_101 (049554) - 45 minutes since last transaction (0495541K.512)
+Service Ok[08-04-2016 16:15:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049915;OK;HARD;1;OK - DSB_Vo_RVM_101 (049915) - 12 minutes since last transaction (0499151K.FF6)
+Service Ok[08-04-2016 16:15:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048514;OK;HARD;1;OK - STO_Ly_RVM_102 (048514) - 12 minutes since last transaction (0485141K.F0B)
+Service Ok[08-04-2016 16:15:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048012;OK;HARD;1;OK - STO_Bsa_RVM_101 (048012) - 59 minutes since last transaction (0480121K.ADF)
+Service Ok[08-04-2016 16:15:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049946;OK;HARD;1;OK - DSB_Kø_RVM_101 (049946) - 29 minutes since last transaction (0499461K.3B0)
+Service Ok[08-04-2016 16:15:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045163;OK;HARD;1;OK - ARR_Bic_RVM_101 (045163) - 12 minutes since last transaction (0451631K.2C7)
+Service Warning[08-04-2016 16:15:08] SERVICE ALERT: REJK-P-SPS004;SPS EOD Distribution - Action List;WARNING;HARD;1;WARNING - 99% updated in 63 minutes - VCF: 54/0 (100%) - RVM: 39/1 (98%)
+Service Ok[08-04-2016 16:15:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049417;OK;HARD;1;OK - DSB_Gø_RVM_101 (049417) - 254 minutes since last transaction (0494171K.805)
+Service Ok[08-04-2016 16:15:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049381;OK;HARD;1;OK - DSB_Kn_RVM_101 (049381) - 11 minutes since last transaction (0493811K.518)
+Service Critical[08-04-2016 16:15:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049505;CRITICAL;HARD;1;CRITICAL - DSB_Tp_RVM_101 (049505) - 8759 minutes since last transaction (0495051K.222)
+Service Ok[08-04-2016 16:15:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049316;OK;HARD;1;OK - DSB_Trk_RVM_101 (049316) - 12 minutes since last transaction (0493161K.4DD)
+Service Ok[08-04-2016 16:15:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048095;OK;HARD;1;OK - STO_Ryt_RVM_102 (048095) - 12 minutes since last transaction (0480951K.5ED)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045105;OK;HARD;1;OK - ARR_Sne_RVM_101 (045105) - 179 minutes since last transaction (0451051K.54C)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045131;OK;HARD;1;OK - ARR_Øg_RVM_101 (045131) - 12 minutes since last transaction (0451311K.E0F)
+Service Critical[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045161;CRITICAL;HARD;1;CRITICAL - ARR_Stu_RVM_101 (045161) - 63479 minutes since last transaction (0451613K.02A)
+Service Warning[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045145;WARNING;HARD;1;WARNING - ARR_Hw_RVM_101 (045145) - 2729 minutes since last transaction (0451451K.2EB)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045126;OK;HARD;1;OK - ARR_Va_RVM_101 (045126) - 12 minutes since last transaction (0451261K.ED7)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049306;OK;HARD;1;OK - DSB_Hum_RVM_101 (049306) - 13 minutes since last transaction (0493061K.93D)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045144;OK;HARD;1;OK - ARR_Ul_RVM_101 (045144) - 119 minutes since last transaction (0451441K.114)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045169;OK;HARD;1;OK - ARR_Sv_RVM_101 (045169) - 494 minutes since last transaction (0451691K.385)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045102;OK;HARD;1;OK - ARR_Ur_RVM_101 (045102) - 149 minutes since last transaction (0451021K.E6F)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045148;OK;HARD;1;OK - ARR_Vi_RVM_101 (045148) - 44 minutes since last transaction (0451481K.DCD)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045146;OK;HARD;1;OK - ARR_Ln_RVM_101 (045146) - 119 minutes since last transaction (0451461K.15E)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047022;OK;HARD;1;OK - MET_Lgp_RVM_101 (047022) - 22 minutes since last transaction (0470221K.2F3)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045194;OK;HARD;1;OK - ARR_Yd_RVM_101 (045194) - 4649 minutes since last transaction (0451941K.379)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049443;OK;HARD;1;OK - DSB_Lih_RVM_101 (049443) - 53 minutes since last transaction (0494431K.537)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045113;OK;HARD;1;OK - ARR_Æk_RVM_101 (045113) - 209 minutes since last transaction (0451131K.82B)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048088;OK;HARD;1;OK - STO_Fl_RVM_102 (048088) - 13 minutes since last transaction (0480881K.B82)
+Service Critical[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045104;CRITICAL;HARD;1;CRITICAL - ARR_Hæ_RVM_101 (045104) - 2892 minutes since last transaction (0451041K.270)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045196;OK;HARD;1;OK - ARR_Um_RVM_101 (045196) - 17534 minutes since last transaction (0451961K.069)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048011;OK;HARD;1;OK - STO_Vlb_RVM_101 (048011) - 12 minutes since last transaction (0480111K.57D)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049453;OK;HARD;1;OK - DSB_Kv_RVM_101 (049453) - 1999 minutes since last transaction (0494531K.245)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047013;OK;HARD;1;OK - MET_Khc_RVM_102 (047013) - 21 minutes since last transaction (0470131K.C20)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047023;OK;HARD;1;OK - MET_Lgp_RVM_102 (047023) - 14 minutes since last transaction (0470231K.60E)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048004;OK;HARD;1;OK - STO_Jsi_RVM_101 (048004) - 82 minutes since last transaction (0480041K.460)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048036;OK;HARD;1;OK - STO_Dbt_RVM_101 (048036) - 12 minutes since last transaction (0480361K.2EA)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049205;OK;HARD;1;OK - DSB_Sg_RVM_101 (049205) - 12 minutes since last transaction (0492051K.393)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048006;OK;HARD;1;OK - STO_Klu_RVM_101 (048006) - 29 minutes since last transaction (0480061K.AA0)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048090;OK;HARD;1;OK - STO_Ã…lm_RVM_101 (048090) - 29 minutes since last transaction (0480901K.0F1)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048032;OK;HARD;1;OK - STO_Nht_RVM_101 (048032) - 11 minutes since last transaction (0480321K.981)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048510;OK;HARD;1;OK - STO_TÃ¥_RVM_101 (048510) - 12 minutes since last transaction (0485101K.443)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049208;OK;HARD;1;OK - DSB_Rt_RVM_101 (049208) - 464 minutes since last transaction (0492081K.826)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048065;OK;HARD;1;OK - STO_Ket_RVM_101 (048065) - 11 minutes since last transaction (0480651K.54A)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048151;OK;HARD;1;OK - STO_Hi_RVM_101 (048151) - 12 minutes since last transaction (0481511K.536)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047026;OK;HARD;1;OK - MET_Feo_RVM_101 (047026) - 14 minutes since last transaction (0470261K.76A)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045193;OK;HARD;1;OK - ARR_Hrm_RVM_101 (045193) - 59 minutes since last transaction (0451931K.10C)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045117;OK;HARD;1;OK - ARR_Rb_RVM_101 (045117) - 59 minutes since last transaction (0451171K.F09)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047027;OK;HARD;1;OK - MET_Ksa_RVM_101 (047027) - 21 minutes since last transaction (0470271K.07B)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045158;OK;HARD;1;OK - ARR_Bs_RVM_101 (045158) - 223 minutes since last transaction (0451581K.224)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048093;OK;HARD;1;OK - STO_Ig_RVM_101 (048093) - 29 minutes since last transaction (0480931K.598)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049454;OK;HARD;1;OK - DSB_Fh_RVM_101 (049454) - 12 minutes since last transaction (0494541K.299)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045116;OK;HARD;1;OK - ARR_Vd_RVM_101 (045116) - 239 minutes since last transaction (0451161K.45A)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048120;OK;HARD;1;OK - STO_Kid_RVM_101 (048120) - 1289 minutes since last transaction (0481201K.6CF)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048037;OK;HARD;1;OK - STO_Dbt_RVM_102 (048037) - 12 minutes since last transaction (0480371K.259)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049518;OK;HARD;1;OK - DSB_Hs_RVM_101 (049518) - 12 minutes since last transaction (0495181K.3BB)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048109;OK;HARD;1;OK - STO_Mpt_RVM_101 (048109) - 29 minutes since last transaction (0481091K.6C5)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048121;OK;HARD;1;OK - STO_Hit_RVM_101 (048121) - 29 minutes since last transaction (0481211K.FBD)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049373;OK;HARD;1;OK - DSB_Sg_RVM_102 (049373) - 12 minutes since last transaction (0493731K.788)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049411;OK;HARD;1;OK - DSB_Kw_RVM_101 (049411) - 3134 minutes since last transaction (0494111K.106)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049011;OK;HARD;1;OK - DSB_Nv_RVM_101 (049011) - 29 minutes since last transaction (0490111K.309)
+Service Critical[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049504;CRITICAL;HARD;1;CRITICAL - DSB_Hp_RVM_101 (049504) - 88199 minutes since last transaction (0495041K.040)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048019;OK;HARD;1;OK - STO_Gre_RVM_101 (048019) - 11 minutes since last transaction (0480191K.C88)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045132;OK;HARD;1;OK - ARR_Ta_RVM_101 (045132) - 44 minutes since last transaction (0451321K.617)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049440;OK;HARD;1;OK - DSB_Og_RVM_101 (049440) - 89 minutes since last transaction (0494401K.BE5)
+Service Warning[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049410;WARNING;HARD;1;WARNING - DSB_Pa_RVM_101 (049410) - 1559 minutes since last transaction (0494101K.522)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047012;OK;HARD;1;OK - MET_Khc_RVM_101 (047012) - 8 minutes since last transaction (0470121K.D27)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049388;OK;HARD;1;OK - DSB_Od_RVM_103 (049388) - 13 minutes since last transaction (0493881K.31B)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049442;OK;HARD;1;OK - DSB_Abv_RVM_101 (049442) - 29 minutes since last transaction (0494421K.2A6)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049371;OK;HARD;1;OK - DSB_Nf_RVM_101 (049371) - 12 minutes since last transaction (0493711K.AE6)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049413;OK;HARD;1;OK - DSB_Sdb_RVM_101 (049413) - 52 minutes since last transaction (0494131K.DC4)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049414;OK;HARD;1;OK - DSB_Vn_RVM_101 (049414) - 12 minutes since last transaction (0494141K.2E6)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047010;OK;HARD;1;OK - MET_Kgn_RVM_101 (047010) - 14 minutes since last transaction (0470101K.1F6)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049333;OK;HARD;1;OK - DSB_Hl_RVM_103 (049333) - 12 minutes since last transaction (0493331K.4AB)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049380;OK;HARD;1;OK - DSB_RÃ¥d_RVM_101 (049380) - 12 minutes since last transaction (0493801K.63E)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048108;OK;HARD;1;OK - STO_Sko_RVM_101 (048108) - 29 minutes since last transaction (0481081K.C5F)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048152;OK;HARD;1;OK - STO_Hi_RVM_102 (048152) - 12 minutes since last transaction (0481521K.46B)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049503;OK;HARD;1;OK - DSB_Od_RVM_102 (049503) - 29 minutes since last transaction (0495031K.776)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049438;OK;HARD;1;OK - DSB_Sr_RVM_101 (049438) - 44 minutes since last transaction (0494381K.5CD)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048153;OK;HARD;1;OK - STO_Li_RVM_101 (048153) - 13 minutes since last transaction (0481531K.3DA)
+Service Warning[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049515;WARNING;HARD;1;WARNING - DSB_Bet_RVM_101 (049515) - 1484 minutes since last transaction (0495151K.3DA)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048154;OK;HARD;1;OK - STO_Vpt_RVM_101 (048154) - 11 minutes since last transaction (0481541K.02E)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049315;OK;HARD;1;OK - DSB_Hh_RVM_101 (049315) - 13 minutes since last transaction (0493151K.1FD)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049444;OK;HARD;1;OK - DSB_Bl_RVM_101 (049444) - 12 minutes since last transaction (0494441K.E9B)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049564;OK;HARD;1;OK - DSB_Mr_RVM_101 (049564) - 119 minutes since last transaction (0495641K.286)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049351;OK;HARD;1;OK - DSB_Næ_RVM_102 (049351) - 12 minutes since last transaction (0493511K.5DE)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049568;OK;HARD;1;OK - DSB_Gr_RVM_101 (049568) - 44 minutes since last transaction (0495681K.AAE)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049923;OK;HARD;1;OK - DSB_Ro_RVM_101 (049923) - 11 minutes since last transaction (0499231K.B42)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049529;OK;HARD;1;OK - DSB_Bb_RVM_101 (049529) - 52 minutes since last transaction (0495291K.99E)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049113;OK;HARD;1;OK - DSB_Ol_RVM_101 (049113) - 74 minutes since last transaction (0491131K.EB4)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049551;OK;HARD;1;OK - DSB_Svv_RVM_101 (049551) - 11 minutes since last transaction (0495511K.630)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049565;OK;HARD;1;OK - DSB_RÃ¥_RVM_101 (049565) - 223 minutes since last transaction (0495651K.3A4)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049528;OK;HARD;1;OK - DSB_Ty_RVM_101 (049528) - 164 minutes since last transaction (0495281K.655)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048035;OK;HARD;1;OK - STO_Vpt_RVM_103 (048035) - 11 minutes since last transaction (0480351K.EC6)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049402;OK;HARD;1;OK - DSB_Fa_RVM_102 (049402) - 12 minutes since last transaction (0494021K.872)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049530;OK;HARD;1;OK - DSB_Hr_RVM_101 (049530) - 59 minutes since last transaction (0495301K.233)
+Service Ok[08-04-2016 16:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048018;OK;HARD;1;OK - STO_Syv_RVM_101 (048018) - 29 minutes since last transaction (0480181K.750)
+Service Ok[08-04-2016 16:14:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049567;OK;HARD;1;OK - DSB_Tu_RVM_101 (049567) - 59 minutes since last transaction (0495671K.215)
+Service Warning[08-04-2016 16:14:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049550;WARNING;HARD;1;WARNING - DSB_Sis_RVM_101 (049550) - 30689 minutes since last transaction (0495501K.06D)
+Service Ok[08-04-2016 16:14:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049911;OK;HARD;1;OK - DSB_Htå_RVM_102 (049911) - 11 minutes since last transaction (0499111K.8AC)
+Service Ok[08-04-2016 16:14:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049311;OK;HARD;1;OK - DSB_Øre_RVM_101 (049311) - 12 minutes since last transaction (0493111K.B82)
+Service Ok[08-04-2016 16:14:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049912;OK;HARD;1;OK - DSB_Ro_RVM_103 (049912) - 11 minutes since last transaction (0499121K.F2F)
+Service Ok[08-04-2016 16:14:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049547;OK;HARD;1;OK - DSB_Rus_RVM_101 (049547) - 404 minutes since last transaction (0495471K.0CC)
+Service Ok[08-04-2016 16:14:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048066;OK;HARD;1;OK - STO_Bud_RVM_101 (048066) - 11 minutes since last transaction (0480661K.4A2)
+Service Ok[08-04-2016 16:14:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049552;OK;HARD;1;OK - DSB_Svg_RVM_101 (049552) - 11 minutes since last transaction (0495521K.E6C)
+Service Ok[08-04-2016 16:14:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049562;OK;HARD;1;OK - DSB_Lt_RVM_101 (049562) - 374 minutes since last transaction (0495621K.1EC)
+Service Ok[08-04-2016 16:14:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049441;OK;HARD;1;OK - DSB_Ab_RVM_101 (049441) - 13 minutes since last transaction (0494411K.0C7)
+Service Ok[08-04-2016 16:14:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049907;OK;HARD;1;OK - DSB_Rg_RVM_101 (049907) - 13 minutes since last transaction (0499071K.A2F)
+Service Ok[08-04-2016 16:14:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049352;OK;HARD;1;OK - DSB_Vj_RVM_101 (049352) - 12 minutes since last transaction (0493521K.9B4)
+Service Ok[08-04-2016 16:14:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049913;OK;HARD;1;OK - DSB_Lj_RVM_101 (049913) - 48 minutes since last transaction (0499131K.9D0)
+Service Ok[08-04-2016 16:14:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049914;OK;HARD;1;OK - DSB_Lw_RVM_101 (049914) - 29 minutes since last transaction (0499141K.95B)
+Service Ok[08-04-2016 16:14:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048094;OK;HARD;1;OK - STO_Ryt_RVM_101 (048094) - 12 minutes since last transaction (0480941K.9ED)
+Service Ok[08-04-2016 16:14:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048122;OK;HARD;1;OK - STO_Rdo_RVM_101 (048122) - 11 minutes since last transaction (0481221K.C70)
+Service Ok[08-04-2016 16:14:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049313;OK;HARD;1;OK - DSB_Cph_RVM_101 (049313) - 12 minutes since last transaction (0493131K.F06)
+Service Ok[08-04-2016 16:14:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049545;OK;HARD;1;OK - DSB_Pds_RVM_101 (049545) - 526 minutes since last transaction (0495451K.0C5)
+Service Ok[08-04-2016 16:14:18] SERVICE ALERT: AccessPoints;AP1_Ravnevej_1_Esbjerg-10.85.100.20;OK;HARD;3;OK - Got reply from host
+Service Ok[08-04-2016 16:06:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047020;OK;HARD;1;OK - MET_Amb_RVM_101 (047020) - 6 minutes since last transaction (0470201K.1B7)
+Service Ok[08-04-2016 16:06:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047005;OK;HARD;1;OK - MET_Fb_RVM_101 (047005) - 5 minutes since last transaction (0470051K.252)
+Service Ok[08-04-2016 16:03:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045152;OK;HARD;1;OK - ARR_Rk_RVM_101 (045152) - 3 minutes since last transaction (0451521K.301)
+Service Unknown[08-04-2016 16:03:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049406;UNKNOWN;HARD;1;UNKNOWN - DSB_Vm_RVM_101 (049406) - SPS link down
+Service Unknown[08-04-2016 16:03:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049917;UNKNOWN;HARD;1;UNKNOWN - DSB_Rf_RVM_101 (049917) - SPS link down
+Service Unknown[08-04-2016 16:03:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049383;UNKNOWN;HARD;1;UNKNOWN - DSB_Kn_RVM_103 (049383) - SPS link down
+Service Unknown[08-04-2016 16:01:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048013;UNKNOWN;HARD;1;UNKNOWN - STO_Avø_RVM_101 (048013) - SPS link down
+Service Unknown[08-04-2016 16:01:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049521;UNKNOWN;HARD;1;UNKNOWN - DSB_Ar_RVM_102 (049521) - SPS link down
+Service Unknown[08-04-2016 16:01:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049405;UNKNOWN;HARD;1;UNKNOWN - DSB_Lk_RVM_101 (049405) - SPS link down
+Service Unknown[08-04-2016 16:01:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049555;UNKNOWN;HARD;1;UNKNOWN - DSB_Øs_RVM_101 (049555) - SPS link down
+Service Unknown[08-04-2016 16:01:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048115;UNKNOWN;HARD;1;UNKNOWN - STO_Vs_RVM_101 (048115) - SPS link down
+Service Unknown[08-04-2016 16:01:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049446;UNKNOWN;HARD;1;UNKNOWN - DSB_Hj_RVM_101 (049446) - SPS link down
+Service Unknown[08-04-2016 16:01:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048515;UNKNOWN;HARD;1;UNKNOWN - STO_Ly_RVM_101 (048515) - SPS link down
+Service Unknown[08-04-2016 16:01:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049902;UNKNOWN;HARD;1;UNKNOWN - DSB_Rg_RVM_102 (049902) - SPS link down
+Service Unknown[08-04-2016 16:01:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049382;UNKNOWN;HARD;1;UNKNOWN - DSB_Kn_RVM_102 (049382) - SPS link down
+Service Unknown[08-04-2016 16:01:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049317;UNKNOWN;HARD;1;UNKNOWN - DSB_Vy_RVM_101 (049317) - SPS link down
+Service Unknown[08-04-2016 16:01:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045200;UNKNOWN;HARD;1;UNKNOWN - ARR_Bu_RVM_101 (045200) - SPS link down
+Service Unknown[08-04-2016 16:01:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048101;UNKNOWN;HARD;1;UNKNOWN - STO_Vat_RVM_101 (048101) - SPS link down
+Service Unknown[08-04-2016 16:01:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048039;UNKNOWN;HARD;1;UNKNOWN - STO_Ch_RVM_101 (048039) - SPS link down
+Service Unknown[08-04-2016 16:00:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049212;UNKNOWN;HARD;1;UNKNOWN - DSB_Se_RVM_101 (049212) - SPS link down
+Service Unknown[08-04-2016 16:00:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049554;UNKNOWN;HARD;1;UNKNOWN - DSB_Bak_RVM_101 (049554) - SPS link down
+Service Unknown[08-04-2016 16:00:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049520;UNKNOWN;HARD;1;UNKNOWN - DSB_Ar_RVM_101 (049520) - SPS link down
+Service Unknown[08-04-2016 16:00:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049915;UNKNOWN;HARD;1;UNKNOWN - DSB_Vo_RVM_101 (049915) - SPS link down
+Service Unknown[08-04-2016 16:00:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048514;UNKNOWN;HARD;1;UNKNOWN - STO_Ly_RVM_102 (048514) - SPS link down
+Service Unknown[08-04-2016 16:00:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048012;UNKNOWN;HARD;1;UNKNOWN - STO_Bsa_RVM_101 (048012) - SPS link down
+Service Unknown[08-04-2016 16:00:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049946;UNKNOWN;HARD;1;UNKNOWN - DSB_Kø_RVM_101 (049946) - SPS link down
+Service Unknown[08-04-2016 16:00:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045163;UNKNOWN;HARD;1;UNKNOWN - ARR_Bic_RVM_101 (045163) - SPS link down
+Service Unknown[08-04-2016 16:00:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049417;UNKNOWN;HARD;1;UNKNOWN - DSB_Gø_RVM_101 (049417) - SPS link down
+Service Unknown[08-04-2016 16:00:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049381;UNKNOWN;HARD;1;UNKNOWN - DSB_Kn_RVM_101 (049381) - SPS link down
+Service Unknown[08-04-2016 16:00:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049505;UNKNOWN;HARD;1;UNKNOWN - DSB_Tp_RVM_101 (049505) - SPS link down
+Service Ok[08-04-2016 16:00:08] SERVICE ALERT: AccessPoints;AP1_Jernbanegade_25_Esbjerg-10.64.3.20;OK;SOFT;2;OK - Got reply from host
+Service Unknown[08-04-2016 16:00:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049316;UNKNOWN;HARD;1;UNKNOWN - DSB_Trk_RVM_101 (049316) - SPS link down
+Service Unknown[08-04-2016 16:00:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048095;UNKNOWN;HARD;1;UNKNOWN - STO_Ryt_RVM_102 (048095) - SPS link down
+
+April 08, 2016 15:00
+
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045105;UNKNOWN;HARD;1;UNKNOWN - ARR_Sne_RVM_101 (045105) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045131;UNKNOWN;HARD;1;UNKNOWN - ARR_Øg_RVM_101 (045131) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045161;UNKNOWN;HARD;1;UNKNOWN - ARR_Stu_RVM_101 (045161) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045145;UNKNOWN;HARD;1;UNKNOWN - ARR_Hw_RVM_101 (045145) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045126;UNKNOWN;HARD;1;UNKNOWN - ARR_Va_RVM_101 (045126) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045144;UNKNOWN;HARD;1;UNKNOWN - ARR_Ul_RVM_101 (045144) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049306;UNKNOWN;HARD;1;UNKNOWN - DSB_Hum_RVM_101 (049306) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045169;UNKNOWN;HARD;1;UNKNOWN - ARR_Sv_RVM_101 (045169) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045102;UNKNOWN;HARD;1;UNKNOWN - ARR_Ur_RVM_101 (045102) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045148;UNKNOWN;HARD;1;UNKNOWN - ARR_Vi_RVM_101 (045148) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047022;UNKNOWN;HARD;1;UNKNOWN - MET_Lgp_RVM_101 (047022) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045146;UNKNOWN;HARD;1;UNKNOWN - ARR_Ln_RVM_101 (045146) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045194;UNKNOWN;HARD;1;UNKNOWN - ARR_Yd_RVM_101 (045194) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049443;UNKNOWN;HARD;1;UNKNOWN - DSB_Lih_RVM_101 (049443) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045113;UNKNOWN;HARD;1;UNKNOWN - ARR_Æk_RVM_101 (045113) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048088;UNKNOWN;HARD;1;UNKNOWN - STO_Fl_RVM_102 (048088) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045104;UNKNOWN;HARD;1;UNKNOWN - ARR_Hæ_RVM_101 (045104) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045196;UNKNOWN;HARD;1;UNKNOWN - ARR_Um_RVM_101 (045196) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048011;UNKNOWN;HARD;1;UNKNOWN - STO_Vlb_RVM_101 (048011) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049453;UNKNOWN;HARD;1;UNKNOWN - DSB_Kv_RVM_101 (049453) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047013;UNKNOWN;HARD;1;UNKNOWN - MET_Khc_RVM_102 (047013) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047023;UNKNOWN;HARD;1;UNKNOWN - MET_Lgp_RVM_102 (047023) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048004;UNKNOWN;HARD;1;UNKNOWN - STO_Jsi_RVM_101 (048004) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048036;UNKNOWN;HARD;1;UNKNOWN - STO_Dbt_RVM_101 (048036) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049205;UNKNOWN;HARD;1;UNKNOWN - DSB_Sg_RVM_101 (049205) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048006;UNKNOWN;HARD;1;UNKNOWN - STO_Klu_RVM_101 (048006) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048090;UNKNOWN;HARD;1;UNKNOWN - STO_Ã…lm_RVM_101 (048090) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048032;UNKNOWN;HARD;1;UNKNOWN - STO_Nht_RVM_101 (048032) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048510;UNKNOWN;HARD;1;UNKNOWN - STO_TÃ¥_RVM_101 (048510) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049208;UNKNOWN;HARD;1;UNKNOWN - DSB_Rt_RVM_101 (049208) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048065;UNKNOWN;HARD;1;UNKNOWN - STO_Ket_RVM_101 (048065) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048151;UNKNOWN;HARD;1;UNKNOWN - STO_Hi_RVM_101 (048151) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047026;UNKNOWN;HARD;1;UNKNOWN - MET_Feo_RVM_101 (047026) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045193;UNKNOWN;HARD;1;UNKNOWN - ARR_Hrm_RVM_101 (045193) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045117;UNKNOWN;HARD;1;UNKNOWN - ARR_Rb_RVM_101 (045117) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047027;UNKNOWN;HARD;1;UNKNOWN - MET_Ksa_RVM_101 (047027) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045158;UNKNOWN;HARD;1;UNKNOWN - ARR_Bs_RVM_101 (045158) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048093;UNKNOWN;HARD;1;UNKNOWN - STO_Ig_RVM_101 (048093) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049374;UNKNOWN;HARD;1;UNKNOWN - DSB_Hf_RVM_101 (049374) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049454;UNKNOWN;HARD;1;UNKNOWN - DSB_Fh_RVM_101 (049454) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048120;UNKNOWN;HARD;1;UNKNOWN - STO_Kid_RVM_101 (048120) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045116;UNKNOWN;HARD;1;UNKNOWN - ARR_Vd_RVM_101 (045116) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048037;UNKNOWN;HARD;1;UNKNOWN - STO_Dbt_RVM_102 (048037) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049518;UNKNOWN;HARD;1;UNKNOWN - DSB_Hs_RVM_101 (049518) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048109;UNKNOWN;HARD;1;UNKNOWN - STO_Mpt_RVM_101 (048109) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048121;UNKNOWN;HARD;1;UNKNOWN - STO_Hit_RVM_101 (048121) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049411;UNKNOWN;HARD;1;UNKNOWN - DSB_Kw_RVM_101 (049411) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049373;UNKNOWN;HARD;1;UNKNOWN - DSB_Sg_RVM_102 (049373) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049011;UNKNOWN;HARD;1;UNKNOWN - DSB_Nv_RVM_101 (049011) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049504;UNKNOWN;HARD;1;UNKNOWN - DSB_Hp_RVM_101 (049504) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048019;UNKNOWN;HARD;1;UNKNOWN - STO_Gre_RVM_101 (048019) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045132;UNKNOWN;HARD;1;UNKNOWN - ARR_Ta_RVM_101 (045132) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049440;UNKNOWN;HARD;1;UNKNOWN - DSB_Og_RVM_101 (049440) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049410;UNKNOWN;HARD;1;UNKNOWN - DSB_Pa_RVM_101 (049410) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047012;UNKNOWN;HARD;1;UNKNOWN - MET_Khc_RVM_101 (047012) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049388;UNKNOWN;HARD;1;UNKNOWN - DSB_Od_RVM_103 (049388) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049442;UNKNOWN;HARD;1;UNKNOWN - DSB_Abv_RVM_101 (049442) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049371;UNKNOWN;HARD;1;UNKNOWN - DSB_Nf_RVM_101 (049371) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049414;UNKNOWN;HARD;1;UNKNOWN - DSB_Vn_RVM_101 (049414) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049413;UNKNOWN;HARD;1;UNKNOWN - DSB_Sdb_RVM_101 (049413) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047010;UNKNOWN;HARD;1;UNKNOWN - MET_Kgn_RVM_101 (047010) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049333;UNKNOWN;HARD;1;UNKNOWN - DSB_Hl_RVM_103 (049333) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049380;UNKNOWN;HARD;1;UNKNOWN - DSB_RÃ¥d_RVM_101 (049380) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048108;UNKNOWN;HARD;1;UNKNOWN - STO_Sko_RVM_101 (048108) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048152;UNKNOWN;HARD;1;UNKNOWN - STO_Hi_RVM_102 (048152) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049503;UNKNOWN;HARD;1;UNKNOWN - DSB_Od_RVM_102 (049503) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049438;UNKNOWN;HARD;1;UNKNOWN - DSB_Sr_RVM_101 (049438) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048153;UNKNOWN;HARD;1;UNKNOWN - STO_Li_RVM_101 (048153) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049515;UNKNOWN;HARD;1;UNKNOWN - DSB_Bet_RVM_101 (049515) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048154;UNKNOWN;HARD;1;UNKNOWN - STO_Vpt_RVM_101 (048154) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049315;UNKNOWN;HARD;1;UNKNOWN - DSB_Hh_RVM_101 (049315) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049444;UNKNOWN;HARD;1;UNKNOWN - DSB_Bl_RVM_101 (049444) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049564;UNKNOWN;HARD;1;UNKNOWN - DSB_Mr_RVM_101 (049564) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049351;UNKNOWN;HARD;1;UNKNOWN - DSB_Næ_RVM_102 (049351) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049568;UNKNOWN;HARD;1;UNKNOWN - DSB_Gr_RVM_101 (049568) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049923;UNKNOWN;HARD;1;UNKNOWN - DSB_Ro_RVM_101 (049923) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049529;UNKNOWN;HARD;1;UNKNOWN - DSB_Bb_RVM_101 (049529) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049113;UNKNOWN;HARD;1;UNKNOWN - DSB_Ol_RVM_101 (049113) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049551;UNKNOWN;HARD;1;UNKNOWN - DSB_Svv_RVM_101 (049551) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049528;UNKNOWN;HARD;1;UNKNOWN - DSB_Ty_RVM_101 (049528) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049565;UNKNOWN;HARD;1;UNKNOWN - DSB_RÃ¥_RVM_101 (049565) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048035;UNKNOWN;HARD;1;UNKNOWN - STO_Vpt_RVM_103 (048035) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049402;UNKNOWN;HARD;1;UNKNOWN - DSB_Fa_RVM_102 (049402) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049530;UNKNOWN;HARD;1;UNKNOWN - DSB_Hr_RVM_101 (049530) - SPS link down
+Service Unknown[08-04-2016 15:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048018;UNKNOWN;HARD;1;UNKNOWN - STO_Syv_RVM_101 (048018) - SPS link down
+Service Unknown[08-04-2016 15:59:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049567;UNKNOWN;HARD;1;UNKNOWN - DSB_Tu_RVM_101 (049567) - SPS link down
+Service Unknown[08-04-2016 15:59:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049550;UNKNOWN;HARD;1;UNKNOWN - DSB_Sis_RVM_101 (049550) - SPS link down
+Service Unknown[08-04-2016 15:59:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049911;UNKNOWN;HARD;1;UNKNOWN - DSB_Htå_RVM_102 (049911) - SPS link down
+Service Unknown[08-04-2016 15:59:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049311;UNKNOWN;HARD;1;UNKNOWN - DSB_Øre_RVM_101 (049311) - SPS link down
+Service Unknown[08-04-2016 15:59:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049912;UNKNOWN;HARD;1;UNKNOWN - DSB_Ro_RVM_103 (049912) - SPS link down
+Service Unknown[08-04-2016 15:59:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049547;UNKNOWN;HARD;1;UNKNOWN - DSB_Rus_RVM_101 (049547) - SPS link down
+Service Unknown[08-04-2016 15:59:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048066;UNKNOWN;HARD;1;UNKNOWN - STO_Bud_RVM_101 (048066) - SPS link down
+Service Unknown[08-04-2016 15:59:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049552;UNKNOWN;HARD;1;UNKNOWN - DSB_Svg_RVM_101 (049552) - SPS link down
+Service Unknown[08-04-2016 15:59:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049441;UNKNOWN;HARD;1;UNKNOWN - DSB_Ab_RVM_101 (049441) - SPS link down
+Service Unknown[08-04-2016 15:59:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049913;UNKNOWN;HARD;1;UNKNOWN - DSB_Lj_RVM_101 (049913) - SPS link down
+Service Unknown[08-04-2016 15:59:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049562;UNKNOWN;HARD;1;UNKNOWN - DSB_Lt_RVM_101 (049562) - SPS link down
+Service Unknown[08-04-2016 15:59:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049352;UNKNOWN;HARD;1;UNKNOWN - DSB_Vj_RVM_101 (049352) - SPS link down
+Service Unknown[08-04-2016 15:59:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049907;UNKNOWN;HARD;1;UNKNOWN - DSB_Rg_RVM_101 (049907) - SPS link down
+Service Unknown[08-04-2016 15:59:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048094;UNKNOWN;HARD;1;UNKNOWN - STO_Ryt_RVM_101 (048094) - SPS link down
+Service Unknown[08-04-2016 15:59:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049914;UNKNOWN;HARD;1;UNKNOWN - DSB_Lw_RVM_101 (049914) - SPS link down
+Service Unknown[08-04-2016 15:59:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048122;UNKNOWN;HARD;1;UNKNOWN - STO_Rdo_RVM_101 (048122) - SPS link down
+Service Unknown[08-04-2016 15:59:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049313;UNKNOWN;HARD;1;UNKNOWN - DSB_Cph_RVM_101 (049313) - SPS link down
+Service Unknown[08-04-2016 15:59:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049545;UNKNOWN;HARD;1;UNKNOWN - DSB_Pds_RVM_101 (049545) - SPS link down
+Service Critical[08-04-2016 15:59:08] SERVICE ALERT: AccessPoints;AP1_Jernbanegade_25_Esbjerg-10.64.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[08-04-2016 15:51:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047020;UNKNOWN;HARD;1;UNKNOWN - MET_Amb_RVM_101 (047020) - SPS link down
+Service Unknown[08-04-2016 15:51:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047005;UNKNOWN;HARD;1;UNKNOWN - MET_Fb_RVM_101 (047005) - SPS link down
+Service Ok[08-04-2016 15:50:38] SERVICE ALERT: AccessPoints;AP1_Orestad_Boulevard_101_Kh-10.74.25.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[08-04-2016 15:49:38] SERVICE ALERT: AccessPoints;AP1_Orestad_Boulevard_101_Kh-10.74.25.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[08-04-2016 15:45:08] SERVICE ALERT: REJK-P-SPS004;SPS EOD Distribution - Secondary Blacklist;WARNING;HARD;1;WARNING - 99% updated in 62 minutes - VCF: 54/0 (100%) - RVM: 39/1 (98%)
+Service Warning[08-04-2016 15:44:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049515;WARNING;HARD;1;WARNING - DSB_Bet_RVM_101 (049515) - 1454 minutes since last transaction (0495151K.3DA)
+Service Critical[08-04-2016 15:29:28] SERVICE ALERT: AccessPoints;AP1_Ravnevej_1_Esbjerg-10.85.100.20;CRITICAL;HARD;3;Critical - No response from host!
+Service Critical[08-04-2016 15:28:28] SERVICE ALERT: AccessPoints;AP1_Ravnevej_1_Esbjerg-10.85.100.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[08-04-2016 15:27:28] SERVICE ALERT: AccessPoints;AP1_Ravnevej_1_Esbjerg-10.85.100.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[08-04-2016 15:07:58] SERVICE ALERT: REJK-P-SQL006;Job - Payment journal posting DSB - BO;WARNING;HARD;1;WARNING - Job has failed 1 times during past 2 executions, Current Status: Waiting
+
+April 08, 2016 14:00
+
+Service Ok[08-04-2016 14:48:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049508;OK;HARD;1;OK - DSB_Ap_RVM_101 (049508) - 3 minutes since last transaction (0495081K.253)
+Service Warning[08-04-2016 14:29:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049410;WARNING;HARD;1;WARNING - DSB_Pa_RVM_101 (049410) - 1454 minutes since last transaction (0494101K.522)
+Service Ok[08-04-2016 14:29:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049564;OK;HARD;1;OK - DSB_Mr_RVM_101 (049564) - 14 minutes since last transaction (0495641K.286)
+Service Ok[08-04-2016 14:20:58] SERVICE ALERT: AccessPoints;AP1_Dregaardsvej_2_Dronninglund-10.85.87.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[08-04-2016 14:20:48] SERVICE ALERT: AccessPoints;AP1_Ostermarksvej_20_hojer-10.85.76.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[08-04-2016 14:19:58] SERVICE ALERT: AccessPoints;AP1_Dregaardsvej_2_Dronninglund-10.85.87.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[08-04-2016 14:19:58] SERVICE ALERT: AccessPoints;AP1_Ostermarksvej_20_hojer-10.85.76.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[08-04-2016 14:03:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049508;CRITICAL;HARD;1;CRITICAL - DSB_Ap_RVM_101 (049508) - 2883 minutes since last transaction (0495081K.252)
+
+April 08, 2016 13:00
+
+Service Ok[08-04-2016 13:46:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[08-04-2016 13:45:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[08-04-2016 13:44:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[08-04-2016 13:36:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048148;OK;HARD;1;OK - STO_Hot_RVM_101 (048148) - 21 minutes since last transaction (0481481K.9EE)
+Service Ok[08-04-2016 13:27:08] SERVICE ALERT: REJK-P-SQL006;Job - Payment journal posting TSM - BO;OK;HARD;1;OK, Current Status: Waiting
+Service Unknown[08-04-2016 13:21:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048148;UNKNOWN;HARD;1;UNKNOWN - STO_Hot_RVM_101 (048148) - SPS link down
+Service Ok[08-04-2016 13:14:28] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[08-04-2016 13:14:08] SERVICE ALERT: REJK-P-SQL006;Job - Payment journal posting TSY - BO;OK;HARD;1;OK, Current Status: Waiting
+Service Critical[08-04-2016 13:13:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[08-04-2016 13:13:18] SERVICE ALERT: REJK-P-SQL006;Job - Payment journal posting TSN - BO;OK;HARD;1;OK, Current Status: Waiting
+Service Ok[08-04-2016 13:10:58] SERVICE ALERT: REJK-P-SQL006;Job - Payment journal posting TSJ - BO;OK;HARD;1;OK, Current Status: Waiting
+Service Ok[08-04-2016 13:07:58] SERVICE ALERT: REJK-P-SQL006;Job - Payment journal posting DSB - BO;OK;HARD;1;OK, Current Status: Waiting
+Service Ok[08-04-2016 13:06:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049525;OK;HARD;1;OK - DSB_Vjs_RVM_101 (049525) - 6 minutes since last transaction (0495251K.389)
+Service Ok[08-04-2016 13:00:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049554;OK;HARD;1;OK - DSB_Bak_RVM_101 (049554) - 0 minutes since last transaction (0495543K.04A)
+
+April 08, 2016 12:00
+
+Service Unknown[08-04-2016 12:30:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049554;UNKNOWN;HARD;1;UNKNOWN - DSB_Bak_RVM_101 (049554) - SPS link down
+Service Warning[08-04-2016 12:06:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045112;WARNING;HARD;1;WARNING - ARR_Ds_RVM_101 (045112) - 1444 minutes since last transaction (0451121K.241)
+
+April 08, 2016 11:00
+
+Service Ok[08-04-2016 11:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048032;OK;HARD;1;OK - STO_Nht_RVM_101 (048032) - 25 minutes since last transaction (0480323K.096)
+Service Critical[08-04-2016 11:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049564;CRITICAL;HARD;1;CRITICAL - DSB_Mr_RVM_101 (049564) - 4514 minutes since last transaction (0495641K.285)
+Service Critical[08-04-2016 11:45:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045163;CRITICAL;HARD;1;CRITICAL - ARR_Bic_RVM_101 (045163) - 2894 minutes since last transaction (0451631K.2C6)
+Service Ok[08-04-2016 11:45:08] SERVICE ALERT: REJK-P-BCM003;RCOB import directory count;OK;HARD;1;OK
+Service Ok[08-04-2016 11:41:28] SERVICE ALERT: REJK-P-SQL003;Unprocessed TCS transactions;OK;HARD;1;OK
+Service Ok[08-04-2016 11:36:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048119;OK;HARD;1;OK - STO_Fs_RVM_101 (048119) - 6 minutes since last transaction (0481191K.77D)
+Service Ok[08-04-2016 11:36:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049436;OK;HARD;1;OK - DSB_Ad_RVM_101 (049436) - 1086 minutes since last transaction (0494361K.D94)
+Service Ok[08-04-2016 11:36:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048105;OK;HARD;1;OK - STO_Ist_RVM_101 (048105) - 14 minutes since last transaction (0481051K.8D1)
+Service Ok[08-04-2016 11:34:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049408;OK;HARD;1;OK - DSB_Rq_RVM_101 (049408) - 949 minutes since last transaction (0494081K.D6B)
+Service Ok[08-04-2016 11:34:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048118;OK;HARD;1;OK - STO_Øl_RVM_101 (048118) - 34 minutes since last transaction (0481181K.625)
+Service Ok[08-04-2016 11:34:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048086;OK;HARD;1;OK - STO_Ght_RVM_101 (048086) - 19 minutes since last transaction (0480861K.FB3)
+Service Ok[08-04-2016 11:34:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049543;OK;HARD;1;OK - DSB_Høs_RVM_101 (049543) - 1444 minutes since last transaction (0495431K.1FF)
+Service Ok[08-04-2016 11:34:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048016;OK;HARD;1;OK - STO_Nel_RVM_101 (048016) - 9 minutes since last transaction (0480161K.9C8)
+Service Ok[08-04-2016 11:34:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048008;OK;HARD;1;OK - STO_Und_RVM_102 (048008) - 198 minutes since last transaction (0480081K.B61)
+Service Warning[08-04-2016 11:34:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045111;WARNING;HARD;1;WARNING - ARR_Bw_RVM_101 (045111) - 1564 minutes since last transaction (0451111K.3C3)
+Service Ok[08-04-2016 11:34:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045167;OK;HARD;1;OK - ARR_Ev_RVM_101 (045167) - 4204 minutes since last transaction (0451671K.19C)
+Service Ok[08-04-2016 11:34:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045138;OK;HARD;1;OK - ARR_Uf_RVM_101 (045138) - 109 minutes since last transaction (0451381K.0D9)
+Service Ok[08-04-2016 11:34:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048104;OK;HARD;1;OK - STO_Jyt_RVM_101 (048104) - 124 minutes since last transaction (0481041K.16B)
+Service Ok[08-04-2016 11:34:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048147;OK;HARD;1;OK - STO_Vir_RVM_101 (048147) - 12 minutes since last transaction (0481471K.EB0)
+Service Ok[08-04-2016 11:34:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049022;OK;HARD;1;OK - DSB_Næn_RVM_101 (049022) - 184 minutes since last transaction (0490221K.F8C)
+Service Ok[08-04-2016 11:34:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049385;OK;HARD;1;OK - DSB_Kn_RVM_105 (049385) - 12 minutes since last transaction (0493851K.588)
+Service Ok[08-04-2016 11:34:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045153;OK;HARD;1;OK - ARR_Vg_RVM_101 (045153) - 49 minutes since last transaction (0451531K.08B)
+Service Ok[08-04-2016 11:34:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048062;OK;HARD;1;OK - STO_Emt_RVM_102 (048062) - 94 minutes since last transaction (0480621K.277)
+Service Ok[08-04-2016 11:34:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045001;OK;HARD;1;OK - NT_Ken_RVM_101 (045001) - 1 minutes since last transaction (0450011K.6E0)
+Service Ok[08-04-2016 11:33:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049918;OK;HARD;1;OK - DSB_Tov_RVM_101 (049918) - 963 minutes since last transaction (0499181K.053)
+Service Ok[08-04-2016 11:33:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049558;OK;HARD;1;OK - DSB_Lp_RVM_101 (049558) - 1083 minutes since last transaction (0495581K.477)
+Service Ok[08-04-2016 11:33:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048117;OK;HARD;1;OK - STO_Gtg_RVM_101 (048117) - 249 minutes since last transaction (0481171K.E3B)
+Service Ok[08-04-2016 11:33:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048015;OK;HARD;1;OK - STO_Ã…m_RVM_101 (048015) - 18 minutes since last transaction (0480151K.9D1)
+Service Ok[08-04-2016 11:33:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049407;OK;HARD;1;OK - DSB_Oj_RVM_101 (049407) - 138 minutes since last transaction (0494071K.FAE)
+Service Ok[08-04-2016 11:33:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049303;OK;HARD;1;OK - DSB_Ru_RVM_101 (049303) - 93 minutes since last transaction (0493031K.F38)
+Service Ok[08-04-2016 11:33:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049364;OK;HARD;1;OK - DSB_Kh_RVM_104 (049364) - 18 minutes since last transaction (0493641K.897)
+Service Ok[08-04-2016 11:33:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049448;OK;HARD;1;OK - DSB_Hl_RVM_101 (049448) - 18 minutes since last transaction (0494481K.4A9)
+Service Ok[08-04-2016 11:33:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048085;OK;HARD;1;OK - STO_Fut_RVM_101 (048085) - 0 minutes since last transaction (0480851K.7D6)
+Service Ok[08-04-2016 11:33:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048517;OK;HARD;1;OK - STO_Val_RVM_103 (048517) - 0 minutes since last transaction (0485171K.74B)
+Service Ok[08-04-2016 11:33:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045166;OK;HARD;1;OK - ARR_Bg_RVM_101 (045166) - 265 minutes since last transaction (0451661K.1B9)
+Service Ok[08-04-2016 11:33:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045110;OK;HARD;1;OK - ARR_Vis_RVM_101 (045110) - 4244 minutes since last transaction (0451103K.023)
+Service Ok[08-04-2016 11:33:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049904;OK;HARD;1;OK - DSB_Kk_RVM_102 (049904) - 0 minutes since last transaction (0499041K.E5D)
+Service Warning[08-04-2016 11:33:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049542;WARNING;HARD;1;WARNING - DSB_Hjs_RVM_101 (049542) - 1548 minutes since last transaction (0495421K.31A)
+Service Warning[08-04-2016 11:33:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049508;WARNING;HARD;1;WARNING - DSB_Ap_RVM_101 (049508) - 2733 minutes since last transaction (0495081K.252)
+Service Ok[08-04-2016 11:33:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045137;OK;HARD;1;OK - ARR_Tm_RVM_101 (045137) - 6588 minutes since last transaction (0451371K.15E)
+Service Ok[08-04-2016 11:33:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049420;OK;HARD;1;OK - DSB_Es_RVM_102 (049420) - 12 minutes since last transaction (0494201K.F0A)
+Service Ok[08-04-2016 11:33:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049384;OK;HARD;1;OK - DSB_Kn_RVM_104 (049384) - 33 minutes since last transaction (0493841K.EF1)
+Service Ok[08-04-2016 11:33:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048146;OK;HARD;1;OK - STO_Sft_RVM_101 (048146) - 138 minutes since last transaction (0481461K.22E)
+Service Ok[08-04-2016 11:33:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048061;OK;HARD;1;OK - STO_Emt_RVM_101 (048061) - 48 minutes since last transaction (0480611K.38B)
+Service Ok[08-04-2016 11:33:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047917;OK;HARD;1;OK - MET_Kn_RVM_101 (047917) - 0 minutes since last transaction (0479171K.EF5)
+Service Ok[08-04-2016 11:33:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044603;OK;HARD;1;OK - MT_Odd_RVM_101 (044603) - 63 minutes since last transaction (0446031K.696)
+Service Ok[08-04-2016 11:33:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049021;OK;HARD;1;OK - DSB_Hz_RVM_101 (049021) - 0 minutes since last transaction (0490211K.C5E)
+Service Warning[08-04-2016 11:33:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045152;WARNING;HARD;1;WARNING - ARR_Rk_RVM_101 (045152) - 1717 minutes since last transaction (0451521K.300)
+Service Ok[08-04-2016 11:33:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048103;OK;HARD;1;OK - STO_Van_RVM_101 (048103) - 3 minutes since last transaction (0481031K.633)
+Service Ok[08-04-2016 11:33:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045123;OK;HARD;1;OK - ARR_Gje_RVM_101 (045123) - 0 minutes since last transaction (0451231K.E7D)
+Service Ok[08-04-2016 11:33:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049319;OK;HARD;1;OK - DSB_Kl_RVM_102 (049319) - 93 minutes since last transaction (0493191K.1BF)
+Service Ok[08-04-2016 11:33:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048014;OK;HARD;1;OK - STO_Frh_RVM_101 (048014) - 32 minutes since last transaction (0480141K.48F)
+Service Ok[08-04-2016 11:33:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049917;OK;HARD;1;OK - DSB_Rf_RVM_101 (049917) - 212 minutes since last transaction (0499171K.DE2)
+Service Ok[08-04-2016 11:33:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049302;OK;HARD;1;OK - DSB_Vb_RVM_101 (049302) - 77 minutes since last transaction (0493021K.2AD)
+Service Ok[08-04-2016 11:33:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049522;OK;HARD;1;OK - DSB_Ha_RVM_101 (049522) - 62 minutes since last transaction (0495221K.034)
+Service Ok[08-04-2016 11:33:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047017;OK;HARD;1;OK - MET_Bc_RVM_101 (047017) - 43 minutes since last transaction (0470171K.062)
+Service Ok[08-04-2016 11:33:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049447;OK;HARD;1;OK - DSB_Hb_RVM_101 (049447) - 17 minutes since last transaction (0494471K.272)
+Service Ok[08-04-2016 11:33:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049363;OK;HARD;1;OK - DSB_Kh_RVM_103 (049363) - 17 minutes since last transaction (0493631K.6CA)
+Service Ok[08-04-2016 11:33:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048516;OK;HARD;1;OK - STO_Val_RVM_102 (048516) - 77 minutes since last transaction (0485161K.BFA)
+Service Ok[08-04-2016 11:33:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049556;OK;HARD;1;OK - DSB_Vsa_RVM_101 (049556) - 694 minutes since last transaction (0495561K.3E0)
+Service Ok[08-04-2016 11:33:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048116;OK;HARD;1;OK - STO_St_RVM_101 (048116) - 108 minutes since last transaction (0481161K.1B9)
+Service Ok[08-04-2016 11:33:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049541;OK;HARD;1;OK - DSB_Frs_RVM_101 (049541) - 5913 minutes since last transaction (0495411K.222)
+Service Ok[08-04-2016 11:33:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048083;OK;HARD;1;OK - STO_Nø_RVM_101 (048083) - 3 minutes since last transaction (0480831K.41D)
+Service Ok[08-04-2016 11:33:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049383;OK;HARD;1;OK - DSB_Kn_RVM_103 (049383) - 11 minutes since last transaction (0493831K.AC6)
+Service Ok[08-04-2016 11:33:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047002;OK;HARD;1;OK - MET_Fl_RVM_101 (047002) - 17 minutes since last transaction (0470021K.2B7)
+Service Ok[08-04-2016 11:33:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049903;OK;HARD;1;OK - DSB_Ro_RVM_104 (049903) - 8 minutes since last transaction (0499031K.F79)
+Service Ok[08-04-2016 11:33:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047902;OK;HARD;1;OK - MET_Khs_RVM_101 (047902) - 62 minutes since last transaction (0479021K.625)
+Service Ok[08-04-2016 11:33:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048102;OK;HARD;1;OK - STO_Pbt_RVM_101 (048102) - 18 minutes since last transaction (0481021K.012)
+Service Ok[08-04-2016 11:33:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049507;OK;HARD;1;OK - DSB_Bd_RVM_101 (049507) - 12677 minutes since last transaction (0495071K.07E)
+Service Ok[08-04-2016 11:33:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045122;OK;HARD;1;OK - ARR_Esn_RVM_101 (045122) - 77 minutes since last transaction (0451223K.032)
+Service Ok[08-04-2016 11:33:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049020;OK;HARD;1;OK - DSB_Gz_RVM_101 (049020) - 92 minutes since last transaction (0490201K.62C)
+Service Ok[08-04-2016 11:33:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049419;OK;HARD;1;OK - DSB_Es_RVM_101 (049419) - 17 minutes since last transaction (0494191K.24E)
+Service Ok[08-04-2016 11:33:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045165;OK;HARD;1;OK - ARR_Ik_RVM_101 (045165) - 293 minutes since last transaction (0451651K.C0A)
+Service Ok[08-04-2016 11:33:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044602;OK;HARD;1;OK - MT_Mal_RVM_101 (044602) - 351 minutes since last transaction (0446021K.2B1)
+Service Ok[08-04-2016 11:33:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045151;OK;HARD;1;OK - ARR_Bj_RVM_101 (045151) - 77 minutes since last transaction (0451511K.92F)
+Service Ok[08-04-2016 11:33:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048144;OK;HARD;1;OK - STO_Val_RVM_101 (048144) - 32 minutes since last transaction (0481441K.3B8)
+Service Ok[08-04-2016 11:33:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045135;OK;HARD;1;OK - ARR_Rj_RVM_101 (045135) - 47 minutes since last transaction (0451351K.CDB)
+Service Ok[08-04-2016 11:33:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045109;OK;HARD;1;OK - ARR_Trn_RVM_101 (045109) - 1022 minutes since last transaction (0451091K.54B)
+Service Ok[08-04-2016 11:33:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049318;OK;HARD;1;OK - DSB_Kl_RVM_101 (049318) - 932 minutes since last transaction (0493181K.089)
+Service Ok[08-04-2016 11:33:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048040;OK;HARD;1;OK - STO_Op_RVM_101 (048040) - 8 minutes since last transaction (0480401K.8E8)
+Service Ok[08-04-2016 11:32:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049936;OK;HARD;1;OK - DSB_Lv_RVM_101 (049936) - 2234 minutes since last transaction (0499361K.03C)
+Service Ok[08-04-2016 11:31:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048013;OK;HARD;1;OK - STO_Avø_RVM_101 (048013) - 5 minutes since last transaction (0480131K.23E)
+Service Ok[08-04-2016 11:31:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049301;OK;HARD;1;OK - DSB_SÃ¥_RVM_101 (049301) - 121 minutes since last transaction (0493011K.27C)
+Service Ok[08-04-2016 11:31:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049521;OK;HARD;1;OK - DSB_Ar_RVM_102 (049521) - 11 minutes since last transaction (0495211K.11D)
+Service Ok[08-04-2016 11:31:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045134;OK;HARD;1;OK - ARR_Lm_RVM_101 (045134) - 136 minutes since last transaction (0451341K.2EE)
+Service Ok[08-04-2016 11:31:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049555;OK;HARD;1;OK - DSB_Øs_RVM_101 (049555) - 234 minutes since last transaction (0495551K.5A2)
+Service Ok[08-04-2016 11:31:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049947;OK;HARD;1;OK - DSB_Ek_RVM_101 (049947) - 46 minutes since last transaction (0499471K.717)
+Service Ok[08-04-2016 11:31:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048115;OK;HARD;1;OK - STO_Vs_RVM_101 (048115) - 211 minutes since last transaction (0481151K.367)
+Service Ok[08-04-2016 11:31:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049446;OK;HARD;1;OK - DSB_Hj_RVM_101 (049446) - 16 minutes since last transaction (0494461K.AFF)
+Service Ok[08-04-2016 11:31:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049382;OK;HARD;1;OK - DSB_Kn_RVM_102 (049382) - 76 minutes since last transaction (0493821K.168)
+Service Ok[08-04-2016 11:31:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049902;OK;HARD;1;OK - DSB_Rg_RVM_102 (049902) - 16 minutes since last transaction (0499021K.673)
+Service Ok[08-04-2016 11:31:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049540;OK;HARD;1;OK - DSB_Oss_RVM_101 (049540) - 1 minutes since last transaction (0495401K.661)
+Service Ok[08-04-2016 11:31:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049506;OK;HARD;1;OK - DSB_Sc_RVM_101 (049506) - 7096 minutes since last transaction (0495061K.072)
+Service Ok[08-04-2016 11:31:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049317;OK;HARD;1;OK - DSB_Vy_RVM_101 (049317) - 31 minutes since last transaction (0493171K.02C)
+Service Ok[08-04-2016 11:31:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045200;OK;HARD;1;OK - ARR_Bu_RVM_101 (045200) - 5871 minutes since last transaction (0452001K.140)
+Service Ok[08-04-2016 11:31:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048039;OK;HARD;1;OK - STO_Ch_RVM_101 (048039) - 16 minutes since last transaction (0480391K.B29)
+Service Ok[08-04-2016 11:31:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045150;OK;HARD;1;OK - ARR_Up_RVM_101 (045150) - 1 minutes since last transaction (0451503K.04B)
+Service Unknown[08-04-2016 11:29:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048032;UNKNOWN;HARD;1;UNKNOWN - STO_Nht_RVM_101 (048032) - SPS link down
+Service Ok[08-04-2016 11:29:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045020;OK;HARD;1;OK - NT_Hhs_RVM_101 (045020) - 7 minutes since last transaction (0450201K.A55)
+Service Unknown[08-04-2016 11:29:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049564;UNKNOWN;HARD;1;UNKNOWN - DSB_Mr_RVM_101 (049564) - SPS link down
+Service Ok[08-04-2016 11:25:58] SERVICE ALERT: REJK-P-SQL003;SQL Job Execution - IFS Tracking Aggregation - DBA;OK;HARD;1;OK - IFS_Tracking_Aggregation execution status is normal
+Service Critical[08-04-2016 11:22:58] SERVICE ALERT: REJK-P-SQL003;SQL Job Execution - IFS Tracking Aggregation - DBA;CRITICAL;HARD;1;CRITICAL - IFS_Tracking_Aggregation Execution Status:Failed, Last Execution Date Time: 2016-04-08 11:20:00
+Service Unknown[08-04-2016 11:21:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048119;UNKNOWN;HARD;1;UNKNOWN - STO_Fs_RVM_101 (048119) - SPS link down
+Service Unknown[08-04-2016 11:21:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049436;UNKNOWN;HARD;1;UNKNOWN - DSB_Ad_RVM_101 (049436) - SPS link down
+Service Unknown[08-04-2016 11:21:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048105;UNKNOWN;HARD;1;UNKNOWN - STO_Ist_RVM_101 (048105) - SPS link down
+Service Unknown[08-04-2016 11:19:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049408;UNKNOWN;HARD;1;UNKNOWN - DSB_Rq_RVM_101 (049408) - SPS link down
+Service Unknown[08-04-2016 11:19:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048118;UNKNOWN;HARD;1;UNKNOWN - STO_Øl_RVM_101 (048118) - SPS link down
+Service Unknown[08-04-2016 11:19:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048086;UNKNOWN;HARD;1;UNKNOWN - STO_Ght_RVM_101 (048086) - SPS link down
+Service Unknown[08-04-2016 11:19:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049543;UNKNOWN;HARD;1;UNKNOWN - DSB_Høs_RVM_101 (049543) - SPS link down
+Service Unknown[08-04-2016 11:19:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048016;UNKNOWN;HARD;1;UNKNOWN - STO_Nel_RVM_101 (048016) - SPS link down
+Service Unknown[08-04-2016 11:19:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048008;UNKNOWN;HARD;1;UNKNOWN - STO_Und_RVM_102 (048008) - SPS link down
+Service Unknown[08-04-2016 11:19:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045111;UNKNOWN;HARD;1;UNKNOWN - ARR_Bw_RVM_101 (045111) - SPS link down
+Service Unknown[08-04-2016 11:19:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045167;UNKNOWN;HARD;1;UNKNOWN - ARR_Ev_RVM_101 (045167) - SPS link down
+Service Unknown[08-04-2016 11:19:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045138;UNKNOWN;HARD;1;UNKNOWN - ARR_Uf_RVM_101 (045138) - SPS link down
+Service Unknown[08-04-2016 11:19:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048104;UNKNOWN;HARD;1;UNKNOWN - STO_Jyt_RVM_101 (048104) - SPS link down
+Service Unknown[08-04-2016 11:19:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049385;UNKNOWN;HARD;1;UNKNOWN - DSB_Kn_RVM_105 (049385) - SPS link down
+Service Unknown[08-04-2016 11:19:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049022;UNKNOWN;HARD;1;UNKNOWN - DSB_Næn_RVM_101 (049022) - SPS link down
+Service Unknown[08-04-2016 11:19:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048147;UNKNOWN;HARD;1;UNKNOWN - STO_Vir_RVM_101 (048147) - SPS link down
+Service Unknown[08-04-2016 11:19:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045153;UNKNOWN;HARD;1;UNKNOWN - ARR_Vg_RVM_101 (045153) - SPS link down
+Service Unknown[08-04-2016 11:19:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048062;UNKNOWN;HARD;1;UNKNOWN - STO_Emt_RVM_102 (048062) - SPS link down
+Service Unknown[08-04-2016 11:19:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045001;UNKNOWN;HARD;1;UNKNOWN - NT_Ken_RVM_101 (045001) - SPS link down
+Service Unknown[08-04-2016 11:18:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049558;UNKNOWN;HARD;1;UNKNOWN - DSB_Lp_RVM_101 (049558) - SPS link down
+Service Unknown[08-04-2016 11:18:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048117;UNKNOWN;HARD;1;UNKNOWN - STO_Gtg_RVM_101 (048117) - SPS link down
+Service Unknown[08-04-2016 11:18:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049918;UNKNOWN;HARD;1;UNKNOWN - DSB_Tov_RVM_101 (049918) - SPS link down
+Service Unknown[08-04-2016 11:18:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048015;UNKNOWN;HARD;1;UNKNOWN - STO_Ã…m_RVM_101 (048015) - SPS link down
+Service Unknown[08-04-2016 11:18:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049407;UNKNOWN;HARD;1;UNKNOWN - DSB_Oj_RVM_101 (049407) - SPS link down
+Service Unknown[08-04-2016 11:18:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049303;UNKNOWN;HARD;1;UNKNOWN - DSB_Ru_RVM_101 (049303) - SPS link down
+Service Unknown[08-04-2016 11:18:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049364;UNKNOWN;HARD;1;UNKNOWN - DSB_Kh_RVM_104 (049364) - SPS link down
+Service Unknown[08-04-2016 11:18:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049448;UNKNOWN;HARD;1;UNKNOWN - DSB_Hl_RVM_101 (049448) - SPS link down
+Service Unknown[08-04-2016 11:18:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048085;UNKNOWN;HARD;1;UNKNOWN - STO_Fut_RVM_101 (048085) - SPS link down
+Service Unknown[08-04-2016 11:18:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048517;UNKNOWN;HARD;1;UNKNOWN - STO_Val_RVM_103 (048517) - SPS link down
+Service Unknown[08-04-2016 11:18:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045166;UNKNOWN;HARD;1;UNKNOWN - ARR_Bg_RVM_101 (045166) - SPS link down
+Service Unknown[08-04-2016 11:18:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045110;UNKNOWN;HARD;1;UNKNOWN - ARR_Vis_RVM_101 (045110) - SPS link down
+Service Unknown[08-04-2016 11:18:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049904;UNKNOWN;HARD;1;UNKNOWN - DSB_Kk_RVM_102 (049904) - SPS link down
+Service Unknown[08-04-2016 11:18:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049542;UNKNOWN;HARD;1;UNKNOWN - DSB_Hjs_RVM_101 (049542) - SPS link down
+Service Unknown[08-04-2016 11:18:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049508;UNKNOWN;HARD;1;UNKNOWN - DSB_Ap_RVM_101 (049508) - SPS link down
+Service Unknown[08-04-2016 11:18:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045137;UNKNOWN;HARD;1;UNKNOWN - ARR_Tm_RVM_101 (045137) - SPS link down
+Service Unknown[08-04-2016 11:18:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049420;UNKNOWN;HARD;1;UNKNOWN - DSB_Es_RVM_102 (049420) - SPS link down
+Service Unknown[08-04-2016 11:18:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049384;UNKNOWN;HARD;1;UNKNOWN - DSB_Kn_RVM_104 (049384) - SPS link down
+Service Unknown[08-04-2016 11:18:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048146;UNKNOWN;HARD;1;UNKNOWN - STO_Sft_RVM_101 (048146) - SPS link down
+Service Unknown[08-04-2016 11:18:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048061;UNKNOWN;HARD;1;UNKNOWN - STO_Emt_RVM_101 (048061) - SPS link down
+Service Unknown[08-04-2016 11:18:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047917;UNKNOWN;HARD;1;UNKNOWN - MET_Kn_RVM_101 (047917) - SPS link down
+Service Unknown[08-04-2016 11:18:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049021;UNKNOWN;HARD;1;UNKNOWN - DSB_Hz_RVM_101 (049021) - SPS link down
+Service Unknown[08-04-2016 11:18:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044603;UNKNOWN;HARD;1;UNKNOWN - MT_Odd_RVM_101 (044603) - SPS link down
+Service Unknown[08-04-2016 11:18:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045152;UNKNOWN;HARD;1;UNKNOWN - ARR_Rk_RVM_101 (045152) - SPS link down
+Service Unknown[08-04-2016 11:18:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048103;UNKNOWN;HARD;1;UNKNOWN - STO_Van_RVM_101 (048103) - SPS link down
+Service Unknown[08-04-2016 11:18:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045123;UNKNOWN;HARD;1;UNKNOWN - ARR_Gje_RVM_101 (045123) - SPS link down
+Service Unknown[08-04-2016 11:18:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049319;UNKNOWN;HARD;1;UNKNOWN - DSB_Kl_RVM_102 (049319) - SPS link down
+Service Unknown[08-04-2016 11:18:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048014;UNKNOWN;HARD;1;UNKNOWN - STO_Frh_RVM_101 (048014) - SPS link down
+Service Unknown[08-04-2016 11:18:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049917;UNKNOWN;HARD;1;UNKNOWN - DSB_Rf_RVM_101 (049917) - SPS link down
+Service Unknown[08-04-2016 11:18:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049522;UNKNOWN;HARD;1;UNKNOWN - DSB_Ha_RVM_101 (049522) - SPS link down
+Service Unknown[08-04-2016 11:18:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049302;UNKNOWN;HARD;1;UNKNOWN - DSB_Vb_RVM_101 (049302) - SPS link down
+Service Unknown[08-04-2016 11:18:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047017;UNKNOWN;HARD;1;UNKNOWN - MET_Bc_RVM_101 (047017) - SPS link down
+Service Unknown[08-04-2016 11:18:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049447;UNKNOWN;HARD;1;UNKNOWN - DSB_Hb_RVM_101 (049447) - SPS link down
+Service Unknown[08-04-2016 11:18:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048516;UNKNOWN;HARD;1;UNKNOWN - STO_Val_RVM_102 (048516) - SPS link down
+Service Unknown[08-04-2016 11:18:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049363;UNKNOWN;HARD;1;UNKNOWN - DSB_Kh_RVM_103 (049363) - SPS link down
+Service Unknown[08-04-2016 11:18:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049556;UNKNOWN;HARD;1;UNKNOWN - DSB_Vsa_RVM_101 (049556) - SPS link down
+Service Unknown[08-04-2016 11:18:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048116;UNKNOWN;HARD;1;UNKNOWN - STO_St_RVM_101 (048116) - SPS link down
+Service Unknown[08-04-2016 11:18:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049541;UNKNOWN;HARD;1;UNKNOWN - DSB_Frs_RVM_101 (049541) - SPS link down
+Service Unknown[08-04-2016 11:18:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048083;UNKNOWN;HARD;1;UNKNOWN - STO_Nø_RVM_101 (048083) - SPS link down
+Service Unknown[08-04-2016 11:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049383;UNKNOWN;HARD;1;UNKNOWN - DSB_Kn_RVM_103 (049383) - SPS link down
+Service Unknown[08-04-2016 11:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047002;UNKNOWN;HARD;1;UNKNOWN - MET_Fl_RVM_101 (047002) - SPS link down
+Service Unknown[08-04-2016 11:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049903;UNKNOWN;HARD;1;UNKNOWN - DSB_Ro_RVM_104 (049903) - SPS link down
+Service Unknown[08-04-2016 11:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047902;UNKNOWN;HARD;1;UNKNOWN - MET_Khs_RVM_101 (047902) - SPS link down
+Service Unknown[08-04-2016 11:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049507;UNKNOWN;HARD;1;UNKNOWN - DSB_Bd_RVM_101 (049507) - SPS link down
+Service Unknown[08-04-2016 11:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048102;UNKNOWN;HARD;1;UNKNOWN - STO_Pbt_RVM_101 (048102) - SPS link down
+Service Unknown[08-04-2016 11:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045122;UNKNOWN;HARD;1;UNKNOWN - ARR_Esn_RVM_101 (045122) - SPS link down
+Service Unknown[08-04-2016 11:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049020;UNKNOWN;HARD;1;UNKNOWN - DSB_Gz_RVM_101 (049020) - SPS link down
+Service Unknown[08-04-2016 11:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049419;UNKNOWN;HARD;1;UNKNOWN - DSB_Es_RVM_101 (049419) - SPS link down
+Service Unknown[08-04-2016 11:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045165;UNKNOWN;HARD;1;UNKNOWN - ARR_Ik_RVM_101 (045165) - SPS link down
+Service Unknown[08-04-2016 11:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044602;UNKNOWN;HARD;1;UNKNOWN - MT_Mal_RVM_101 (044602) - SPS link down
+Service Unknown[08-04-2016 11:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048144;UNKNOWN;HARD;1;UNKNOWN - STO_Val_RVM_101 (048144) - SPS link down
+Service Unknown[08-04-2016 11:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045151;UNKNOWN;HARD;1;UNKNOWN - ARR_Bj_RVM_101 (045151) - SPS link down
+Service Unknown[08-04-2016 11:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045109;UNKNOWN;HARD;1;UNKNOWN - ARR_Trn_RVM_101 (045109) - SPS link down
+Service Unknown[08-04-2016 11:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045135;UNKNOWN;HARD;1;UNKNOWN - ARR_Rj_RVM_101 (045135) - SPS link down
+Service Unknown[08-04-2016 11:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049318;UNKNOWN;HARD;1;UNKNOWN - DSB_Kl_RVM_101 (049318) - SPS link down
+Service Unknown[08-04-2016 11:18:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048040;UNKNOWN;HARD;1;UNKNOWN - STO_Op_RVM_101 (048040) - SPS link down
+Service Unknown[08-04-2016 11:17:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049936;UNKNOWN;HARD;1;UNKNOWN - DSB_Lv_RVM_101 (049936) - SPS link down
+Service Unknown[08-04-2016 11:16:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049301;UNKNOWN;HARD;1;UNKNOWN - DSB_SÃ¥_RVM_101 (049301) - SPS link down
+Service Unknown[08-04-2016 11:16:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048013;UNKNOWN;HARD;1;UNKNOWN - STO_Avø_RVM_101 (048013) - SPS link down
+Service Unknown[08-04-2016 11:16:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049521;UNKNOWN;HARD;1;UNKNOWN - DSB_Ar_RVM_102 (049521) - SPS link down
+Service Unknown[08-04-2016 11:16:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045134;UNKNOWN;HARD;1;UNKNOWN - ARR_Lm_RVM_101 (045134) - SPS link down
+Service Unknown[08-04-2016 11:16:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049555;UNKNOWN;HARD;1;UNKNOWN - DSB_Øs_RVM_101 (049555) - SPS link down
+Service Unknown[08-04-2016 11:16:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049947;UNKNOWN;HARD;1;UNKNOWN - DSB_Ek_RVM_101 (049947) - SPS link down
+Service Unknown[08-04-2016 11:16:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048115;UNKNOWN;HARD;1;UNKNOWN - STO_Vs_RVM_101 (048115) - SPS link down
+Service Unknown[08-04-2016 11:16:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049446;UNKNOWN;HARD;1;UNKNOWN - DSB_Hj_RVM_101 (049446) - SPS link down
+Service Unknown[08-04-2016 11:16:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049382;UNKNOWN;HARD;1;UNKNOWN - DSB_Kn_RVM_102 (049382) - SPS link down
+Service Unknown[08-04-2016 11:16:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049902;UNKNOWN;HARD;1;UNKNOWN - DSB_Rg_RVM_102 (049902) - SPS link down
+Service Unknown[08-04-2016 11:16:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049506;UNKNOWN;HARD;1;UNKNOWN - DSB_Sc_RVM_101 (049506) - SPS link down
+Service Unknown[08-04-2016 11:16:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049317;UNKNOWN;HARD;1;UNKNOWN - DSB_Vy_RVM_101 (049317) - SPS link down
+Service Unknown[08-04-2016 11:16:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045200;UNKNOWN;HARD;1;UNKNOWN - ARR_Bu_RVM_101 (045200) - SPS link down
+Service Unknown[08-04-2016 11:16:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048039;UNKNOWN;HARD;1;UNKNOWN - STO_Ch_RVM_101 (048039) - SPS link down
+Service Unknown[08-04-2016 11:16:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045150;UNKNOWN;HARD;1;UNKNOWN - ARR_Up_RVM_101 (045150) - SPS link down
+
+April 08, 2016 10:00
+
+Service Ok[08-04-2016 10:51:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045154;OK;HARD;1;OK - ARR_Sm_RVM_101 (045154) - 6 minutes since last transaction (0451541K.304)
+Service Critical[08-04-2016 10:49:08] SERVICE ALERT: REJK-P-SQL003;Unprocessed TCS transactions;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Critical[08-04-2016 10:36:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045125;CRITICAL;HARD;1;CRITICAL - ARR_Vka_RVM_101 (045125) - 2886 minutes since last transaction (0451251K.35E)
+
+April 08, 2016 09:00
+
+Service Warning[08-04-2016 09:48:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049542;WARNING;HARD;1;WARNING - DSB_Hjs_RVM_101 (049542) - 1443 minutes since last transaction (0495421K.31A)
+Service Warning[08-04-2016 09:46:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049540;WARNING;HARD;1;WARNING - DSB_Oss_RVM_101 (049540) - 1441 minutes since last transaction (0495401K.660)
+Service Warning[08-04-2016 09:34:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045111;WARNING;HARD;1;WARNING - ARR_Bw_RVM_101 (045111) - 1444 minutes since last transaction (0451111K.3C3)
+Service Warning[08-04-2016 09:29:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045020;WARNING;HARD;1;WARNING - NT_Hhs_RVM_101 (045020) - 1441 minutes since last transaction (0450201K.A54)
+Service Warning[08-04-2016 09:27:08] SERVICE ALERT: REJK-P-SQL006;Job - Payment journal posting TSM - BO;WARNING;HARD;1;WARNING - Job has failed 1 times during past 2 executions, Current Status: Waiting
+Service Ok[08-04-2016 09:16:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045134;OK;HARD;1;OK - ARR_Lm_RVM_101 (045134) - 1 minutes since last transaction (0451341K.2EE)
+Service Warning[08-04-2016 09:14:08] SERVICE ALERT: REJK-P-SQL006;Job - Payment journal posting TSY - BO;WARNING;HARD;1;WARNING - Job has failed 1 times during past 2 executions, Current Status: Waiting
+Service Warning[08-04-2016 09:13:18] SERVICE ALERT: REJK-P-SQL006;Job - Payment journal posting TSN - BO;WARNING;HARD;1;WARNING - Job has failed 1 times during past 2 executions, Current Status: Waiting
+Service Warning[08-04-2016 09:10:58] SERVICE ALERT: REJK-P-SQL006;Job - Payment journal posting TSJ - BO;WARNING;HARD;1;WARNING - Job has failed 1 times during past 2 executions, Current Status: Waiting
+Service Warning[08-04-2016 09:07:58] SERVICE ALERT: REJK-P-SQL006;Job - Payment journal posting DSB - BO;WARNING;HARD;1;WARNING - Job has failed 1 times during past 2 executions, Current Status: Waiting
+Service Warning[08-04-2016 09:06:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045154;WARNING;HARD;1;WARNING - ARR_Sm_RVM_101 (045154) - 1446 minutes since last transaction (0451541K.303)
+
+April 08, 2016 08:00
+
+Service Ok[08-04-2016 08:07:28] SERVICE ALERT: AccessPoints;AP1_DSB_Helpdesk_EPID_Solvgade-10.79.2.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[08-04-2016 08:06:38] SERVICE ALERT: AccessPoints;AP1_DSB_Helpdesk_EPID_Solvgade-10.79.2.20;CRITICAL;SOFT;1;Critical - No response from host!
+
+April 08, 2016 07:00
+
+Service Ok[08-04-2016 07:51:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045112;OK;HARD;1;OK - ARR_Ds_RVM_101 (045112) - 1189 minutes since last transaction (0451121K.241)
+Service Ok[08-04-2016 07:49:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045138;OK;HARD;1;OK - ARR_Uf_RVM_101 (045138) - 979 minutes since last transaction (0451381K.0D7)
+Service Ok[08-04-2016 07:49:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049905;OK;HARD;1;OK - DSB_Pe_RVM_101 (049905) - 607 minutes since last transaction (0499051K.890)
+Service Ok[08-04-2016 07:44:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049208;OK;HARD;1;OK - DSB_Rt_RVM_101 (049208) - 7 minutes since last transaction (0492081K.824)
+Service Ok[08-04-2016 07:44:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045159;OK;HARD;1;OK - ARR_Td_RVM_101 (045159) - 7 minutes since last transaction (0451591K.13F)
+Service Unknown[08-04-2016 07:36:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045112;UNKNOWN;HARD;1;UNKNOWN - ARR_Ds_RVM_101 (045112) - SPS link down
+Service Ok[08-04-2016 07:36:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048001;OK;HARD;1;OK - STO_Kj_RVM_101 (048001) - 1002 minutes since last transaction (0480013K.0D6)
+Service Unknown[08-04-2016 07:34:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045138;UNKNOWN;HARD;1;UNKNOWN - ARR_Uf_RVM_101 (045138) - SPS link down
+Service Unknown[08-04-2016 07:34:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049905;UNKNOWN;HARD;1;UNKNOWN - DSB_Pe_RVM_101 (049905) - SPS link down
+Service Ok[08-04-2016 07:29:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049563;OK;HARD;1;OK - DSB_Os_RVM_101 (049563) - 5 minutes since last transaction (0495631K.35C)
+Service Ok[08-04-2016 07:28:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[08-04-2016 07:27:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[08-04-2016 07:26:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[08-04-2016 07:24:08] SERVICE ALERT: REJK-P-SPS007;SPS EOD Distribution - Primary Blacklist;OK;HARD;1;OK - VCF: 55/0 (100%) - RVM: 38/0 (100%)
+Service Ok[08-04-2016 07:23:28] SERVICE ALERT: REJK-P-SPS007;SPS EOD Distribution - Secondary Blacklist;OK;HARD;1;OK - VCF: 55/0 (100%) - RVM: 38/0 (100%)
+Service Ok[08-04-2016 07:23:18] SERVICE ALERT: REJK-P-SPS007;SPS EOD Distribution - Action List;OK;HARD;1;OK - VCF: 55/0 (100%) - RVM: 38/0 (100%)
+Service Unknown[08-04-2016 07:21:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048001;UNKNOWN;HARD;1;UNKNOWN - STO_Kj_RVM_101 (048001) - SPS link down
+Service Warning[08-04-2016 07:16:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045134;WARNING;HARD;1;WARNING - ARR_Lm_RVM_101 (045134) - 1441 minutes since last transaction (0451341K.2ED)
+Service Ok[08-04-2016 07:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045169;OK;HARD;1;OK - ARR_Sv_RVM_101 (045169) - 6 minutes since last transaction (0451691K.384)
+Service Ok[08-04-2016 07:14:18] SERVICE ALERT: AccessPoints;AP2_Fanovej_12_Hjorring-10.75.6.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[08-04-2016 07:13:18] SERVICE ALERT: AccessPoints;AP2_Fanovej_12_Hjorring-10.75.6.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[08-04-2016 07:03:28] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045152;WARNING;HARD;1;WARNING - ARR_Rk_RVM_101 (045152) - 1447 minutes since last transaction (0451521K.300)
+
+April 08, 2016 06:00
+
+Service Ok[08-04-2016 06:49:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049385;OK;HARD;1;OK - DSB_Kn_RVM_105 (049385) - 153 minutes since last transaction (0493851K.57E)
+Service Unknown[08-04-2016 06:34:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049385;UNKNOWN;HARD;1;UNKNOWN - DSB_Kn_RVM_105 (049385) - SPS link down
+Service Ok[08-04-2016 06:04:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049560;OK;HARD;1;OK - DSB_Ht_RVM_101 (049560) - 949 minutes since last transaction (0495601K.47C)
+
+April 08, 2016 05:00
+
+Service Unknown[08-04-2016 05:49:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049560;UNKNOWN;HARD;1;UNKNOWN - DSB_Ht_RVM_101 (049560) - SPS link down
+Service Critical[08-04-2016 05:29:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049564;CRITICAL;HARD;1;CRITICAL - DSB_Mr_RVM_101 (049564) - 4124 minutes since last transaction (0495641K.285)
+Service Ok[08-04-2016 05:21:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049921;OK;HARD;1;OK - DSB_Re_RVM_101 (049921) - 591 minutes since last transaction (0499211K.9D5)
+Service Ok[08-04-2016 05:16:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044601;OK;HARD;1;OK - MT_Mst_RVM_101 (044601) - 901 minutes since last transaction (0446011K.1DF)
+Service Ok[08-04-2016 05:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044600;OK;HARD;1;OK - MT_Trg_RVM_101 (044600) - 809 minutes since last transaction (0446001K.189)
+Service Unknown[08-04-2016 05:14:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049564;UNKNOWN;HARD;1;UNKNOWN - DSB_Mr_RVM_101 (049564) - SPS link down
+Service Ok[08-04-2016 05:11:28] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[08-04-2016 05:10:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[08-04-2016 05:06:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049921;UNKNOWN;HARD;1;UNKNOWN - DSB_Re_RVM_101 (049921) - SPS link down
+Service Ok[08-04-2016 05:06:28] SERVICE ALERT: REJK-P-INT002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 8GB - Used: 2.051GB (26%) - Free: 5.948GB (74%)
+Service Unknown[08-04-2016 05:01:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044601;UNKNOWN;HARD;1;UNKNOWN - MT_Mst_RVM_101 (044601) - SPS link down
+
+April 08, 2016 04:00
+
+Service Unknown[08-04-2016 04:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044600;UNKNOWN;HARD;1;UNKNOWN - MT_Trg_RVM_101 (044600) - SPS link down
+Service Ok[08-04-2016 04:59:38] SERVICE ALERT: AccessPoints;AP2_Niels_Bohrs_Vej_26_Skanderborg-10.87.26.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[08-04-2016 04:58:38] SERVICE ALERT: AccessPoints;AP2_Niels_Bohrs_Vej_26_Skanderborg-10.87.26.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[08-04-2016 04:56:28] SERVICE ALERT: REJK-P-INT002;Ram usage;WARNING;HARD;1;WARNING - [Triggered by _MemUsed%>90] - Physical Memory: Total: 8GB - Used: 7.62GB (95%) - Free: 388.395MB (5%)
+Service Ok[08-04-2016 04:52:18] SERVICE ALERT: REJK-P-SPS010;FSV history out;OK;HARD;1;OK
+Service Ok[08-04-2016 04:51:48] SERVICE ALERT: REJK-P-MDL001;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 16GB - Used: 9.56GB (60%) - Free: 6.439GB (40%)
+Service Ok[08-04-2016 04:50:18] SERVICE ALERT: AccessPoints;AP2_Skovlytoften_36_Holte-10.71.38.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[08-04-2016 04:50:18] SERVICE ALERT: AccessPoints;AP1_Industrivej_42_Roskilde-10.71.81.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[08-04-2016 04:50:18] SERVICE ALERT: AccessPoints;AP1_Hareskovvej_15A_Kalundborg-10.71.86.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[08-04-2016 04:50:18] SERVICE ALERT: AccessPoints;AP2_Columbusvej_6_Soborg-10.71.35.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[08-04-2016 04:50:08] SERVICE ALERT: AccessPoints;AP1_Norholmsvej_164_Aalborg-10.75.49.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[08-04-2016 04:50:08] SERVICE ALERT: AccessPoints;AP2_Sandvadsvej_15_B_Koege-10.71.71.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[08-04-2016 04:49:18] SERVICE ALERT: AccessPoints;AP2_Skovlytoften_36_Holte-10.71.38.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[08-04-2016 04:49:18] SERVICE ALERT: AccessPoints;AP1_Industrivej_42_Roskilde-10.71.81.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[08-04-2016 04:49:18] SERVICE ALERT: AccessPoints;AP1_Hareskovvej_15A_Kalundborg-10.71.86.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[08-04-2016 04:49:18] SERVICE ALERT: AccessPoints;AP2_Columbusvej_6_Soborg-10.71.35.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[08-04-2016 04:49:18] SERVICE ALERT: REJK-P-SPS004;FSV history out;OK;HARD;1;OK
+Service Critical[08-04-2016 04:49:18] SERVICE ALERT: AccessPoints;AP1_Norholmsvej_164_Aalborg-10.75.49.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[08-04-2016 04:49:18] SERVICE ALERT: AccessPoints;AP2_Sandvadsvej_15_B_Koege-10.71.71.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[08-04-2016 04:48:18] SERVICE ALERT: REJK-P-SPS003;FSV history out;OK;HARD;1;OK
+Service Critical[08-04-2016 04:44:18] SERVICE ALERT: REJK-P-SPS004;FSV history out;CRITICAL;HARD;1;CRITICAL - modified time 1064 sec exceeded threshold of 900 sec
+Service Ok[08-04-2016 04:43:28] SERVICE ALERT: REJK-P-MDL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 16GB - Used: 9.62GB (60%) - Free: 6.38GB (40%)
+Service Critical[08-04-2016 04:43:18] SERVICE ALERT: REJK-P-SPS003;FSV history out;CRITICAL;HARD;1;CRITICAL - modified time 903 sec exceeded threshold of 900 sec
+Service Critical[08-04-2016 04:42:18] SERVICE ALERT: REJK-P-SPS010;FSV history out;CRITICAL;HARD;1;CRITICAL - modified time 964 sec exceeded threshold of 900 sec
+Service Critical[08-04-2016 04:41:28] SERVICE ALERT: REJK-P-INT002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>95] - Physical Memory: Total: 8GB - Used: 7.767GB (97%) - Free: 237.836MB (3%)
+Service Ok[08-04-2016 04:36:38] SERVICE ALERT: REJK-P-SPS001;FSV history out;OK;HARD;1;OK
+Service Ok[08-04-2016 04:36:28] SERVICE ALERT: REJK-P-SMC003;Ram usage;OK;HARD;1;OK - 6.0% (972016 kB) free.
+Service Ok[08-04-2016 04:36:28] SERVICE ALERT: REJK-P-SPS005;FSV history out;OK;HARD;1;OK
+Service Ok[08-04-2016 04:33:38] SERVICE ALERT: REJK-P-MDL002;MDL incoming files queue;OK;HARD;1;OK
+Service Ok[08-04-2016 04:33:28] SERVICE ALERT: REJK-P-MDL001;MDL incoming files queue;OK;HARD;1;OK
+Service Critical[08-04-2016 04:31:38] SERVICE ALERT: REJK-P-SPS001;FSV history out;CRITICAL;HARD;1;CRITICAL - modified time 1092 sec exceeded threshold of 900 sec
+Service Warning[08-04-2016 04:31:28] SERVICE ALERT: REJK-P-INT002;Ram usage;WARNING;HARD;1;WARNING - [Triggered by _MemUsed%>90] - Physical Memory: Total: 8GB - Used: 7.401GB (93%) - Free: 612.965MB (7%)
+Service Critical[08-04-2016 04:31:28] SERVICE ALERT: REJK-P-SPS005;FSV history out;CRITICAL;HARD;1;CRITICAL - modified time 964 sec exceeded threshold of 900 sec
+Service Ok[08-04-2016 04:29:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049567;OK;HARD;1;OK - DSB_Tu_RVM_101 (049567) - 2515 minutes since last transaction (0495671K.213)
+Service Warning[08-04-2016 04:26:28] SERVICE ALERT: REJK-P-SMC003;Ram usage;WARNING;HARD;1;WARNING - 1.2% (195396 kB) free!
+Service Ok[08-04-2016 04:24:28] SERVICE ALERT: REJK-P-MDL002;MDL incoming files age;OK;HARD;1;OK
+Service Critical[08-04-2016 04:21:28] SERVICE ALERT: REJK-P-SMC003;Ram usage;CRITICAL;HARD;1;CRITICAL - 1.0% (159836 kB) free!
+Service Ok[08-04-2016 04:16:38] SERVICE ALERT: REJK-P-MDL001;MDL incoming files age;OK;HARD;1;OK
+Service Unknown[08-04-2016 04:14:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049567;UNKNOWN;HARD;1;UNKNOWN - DSB_Tu_RVM_101 (049567) - SPS link down
+Service Ok[08-04-2016 04:13:58] SERVICE ALERT: REJK-P-SQL003;SQL Job Execution - IFS Tracking Aggregation - DBA;OK;HARD;1;OK - IFS_Tracking_Aggregation execution status is normal
+Service Ok[08-04-2016 04:08:38] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_2_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_2.exe" running (0 excluded). (List is on next line)
+Service Ok[08-04-2016 04:08:18] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_1_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_1.exe" running (0 excluded). (List is on next line)
+Service Ok[08-04-2016 04:08:18] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_4_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_4.exe" running (0 excluded). (List is on next line)
+Service Ok[08-04-2016 04:08:18] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_1_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_1.exe" running (0 excluded). (List is on next line)
+Service Ok[08-04-2016 04:08:18] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_3_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded). (List is on next line)
+Service Ok[08-04-2016 04:07:18] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_4_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_4.exe" running (0 excluded). (List is on next line)
+Service Ok[08-04-2016 04:06:28] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_3_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded). (List is on next line)
+Service Ok[08-04-2016 04:06:28] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_2_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_2.exe" running (0 excluded). (List is on next line)
+Service Ok[08-04-2016 04:03:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049542;OK;HARD;1;OK - DSB_Hjs_RVM_101 (049542) - 1098 minutes since last transaction (0495421K.31A)
+Service Critical[08-04-2016 04:01:58] SERVICE ALERT: REJK-P-MDL001;MDL incoming files age;CRITICAL;HARD;1;CRITICAL - modified time 7222 sec exceeded threshold of 7200 sec
+Service Warning[08-04-2016 04:01:58] SERVICE ALERT: REJK-P-SQL003;SQL Job Execution - IFS Tracking Aggregation - DBA;WARNING;HARD;1;WARNING - IFS_Tracking_Aggregation has not been executed since 2 hours. Last Execution Status: Succeeded, Last Execution Date Time: 2016-04-08 02:00:00
+Service Ok[08-04-2016 04:01:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045164;OK;HARD;1;OK - ARR_Hu_RVM_101 (045164) - 571 minutes since last transaction (0451641K.443)
+Service Ok[08-04-2016 04:00:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049212;OK;HARD;1;OK - DSB_Se_RVM_101 (049212) - 359 minutes since last transaction (0492121K.E79)
+Service Ok[08-04-2016 04:00:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049534;OK;HARD;1;OK - DSB_Str_RVM_101 (049534) - 704 minutes since last transaction (0495341K.984)
+
+April 08, 2016 03:00
+
+Service Ok[08-04-2016 03:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045197;OK;HARD;1;OK - ARR_He_RVM_101 (045197) - 7889 minutes since last transaction (0451971K.0D7)
+Service Ok[08-04-2016 03:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045156;OK;HARD;1;OK - ARR_Sk_RVM_101 (045156) - 494 minutes since last transaction (0451561K.ACD)
+Service Ok[08-04-2016 03:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047027;OK;HARD;1;OK - MET_Ksa_RVM_101 (047027) - 202 minutes since last transaction (0470271K.069)
+Service Ok[08-04-2016 03:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049410;OK;HARD;1;OK - DSB_Pa_RVM_101 (049410) - 824 minutes since last transaction (0494101K.522)
+Service Ok[08-04-2016 03:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049501;OK;HARD;1;OK - DSB_Ng_RVM_101 (049501) - 202 minutes since last transaction (0495011K.2E0)
+Service Ok[08-04-2016 03:59:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049930;OK;HARD;1;OK - DSB_Hk_RVM_101 (049930) - 194 minutes since last transaction (0499301K.24B)
+Service Ok[08-04-2016 03:59:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049531;OK;HARD;1;OK - DSB_Id_RVM_101 (049531) - 374 minutes since last transaction (0495311K.532)
+Service Ok[08-04-2016 03:59:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049441;OK;HARD;1;OK - DSB_Ab_RVM_101 (049441) - 414 minutes since last transaction (0494411K.0AF)
+Service Ok[08-04-2016 03:59:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049914;OK;HARD;1;OK - DSB_Lw_RVM_101 (049914) - 524 minutes since last transaction (0499141K.959)
+Service Ok[08-04-2016 03:59:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049907;OK;HARD;1;OK - DSB_Rg_RVM_101 (049907) - 237 minutes since last transaction (0499071K.A1E)
+Service Critical[08-04-2016 03:56:48] SERVICE ALERT: REJK-P-MDL001;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>95] - Physical Memory: Total: 16GB - Used: 15.594GB (97%) - Free: 415.012MB (3%)
+Service Critical[08-04-2016 03:53:28] SERVICE ALERT: REJK-P-MDL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>95] - Physical Memory: Total: 16GB - Used: 15.365GB (96%) - Free: 649.707MB (4%)
+Service Unknown[08-04-2016 03:48:38] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049542;UNKNOWN;HARD;1;UNKNOWN - DSB_Hjs_RVM_101 (049542) - SPS link down
+Service Unknown[08-04-2016 03:46:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045164;UNKNOWN;HARD;1;UNKNOWN - ARR_Hu_RVM_101 (045164) - SPS link down
+Service Unknown[08-04-2016 03:45:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049212;UNKNOWN;HARD;1;UNKNOWN - DSB_Se_RVM_101 (049212) - SPS link down
+Service Unknown[08-04-2016 03:45:08] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049534;UNKNOWN;HARD;1;UNKNOWN - DSB_Str_RVM_101 (049534) - SPS link down
+Service Unknown[08-04-2016 03:44:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045197;UNKNOWN;HARD;1;UNKNOWN - ARR_He_RVM_101 (045197) - SPS link down
+Service Unknown[08-04-2016 03:44:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045156;UNKNOWN;HARD;1;UNKNOWN - ARR_Sk_RVM_101 (045156) - SPS link down
+Service Unknown[08-04-2016 03:44:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047027;UNKNOWN;HARD;1;UNKNOWN - MET_Ksa_RVM_101 (047027) - SPS link down
+Service Unknown[08-04-2016 03:44:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049410;UNKNOWN;HARD;1;UNKNOWN - DSB_Pa_RVM_101 (049410) - SPS link down
+Service Unknown[08-04-2016 03:44:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049501;UNKNOWN;HARD;1;UNKNOWN - DSB_Ng_RVM_101 (049501) - SPS link down
+Service Unknown[08-04-2016 03:44:58] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049930;UNKNOWN;HARD;1;UNKNOWN - DSB_Hk_RVM_101 (049930) - SPS link down
+Service Unknown[08-04-2016 03:44:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049531;UNKNOWN;HARD;1;UNKNOWN - DSB_Id_RVM_101 (049531) - SPS link down
+Service Unknown[08-04-2016 03:44:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049441;UNKNOWN;HARD;1;UNKNOWN - DSB_Ab_RVM_101 (049441) - SPS link down
+Service Unknown[08-04-2016 03:44:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049914;UNKNOWN;HARD;1;UNKNOWN - DSB_Lw_RVM_101 (049914) - SPS link down
+Service Unknown[08-04-2016 03:44:48] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049907;UNKNOWN;HARD;1;UNKNOWN - DSB_Rg_RVM_101 (049907) - SPS link down
+Service Ok[08-04-2016 03:40:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[08-04-2016 03:39:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[08-04-2016 03:38:28] SERVICE ALERT: REJK-P-MDL002;Ram usage;WARNING;HARD;1;WARNING - [Triggered by _MemUsed%>90] - Physical Memory: Total: 16GB - Used: 14.518GB (91%) - Free: 1.482GB (9%)
+Service Warning[08-04-2016 03:36:48] SERVICE ALERT: REJK-P-MDL001;Ram usage;WARNING;HARD;1;WARNING - [Triggered by _MemUsed%>90] - Physical Memory: Total: 16GB - Used: 14.581GB (91%) - Free: 1.419GB (9%)
+Service Ok[08-04-2016 03:31:58] SERVICE ALERT: REJK-P-SQL006;Job - Entity log export NO AIF DSB - SI;OK;HARD;1;OK, Current Status: Waiting
+Service Ok[08-04-2016 03:16:28] SERVICE ALERT: REJK-P-WEB005;CWS Login;OK;SOFT;2;OK - Login succeeded
+Service Critical[08-04-2016 03:15:28] SERVICE ALERT: REJK-P-WEB005;CWS Login;CRITICAL;SOFT;1;Critical - Login failed!
+Service Ok[08-04-2016 03:10:28] SERVICE ALERT: REJK-P-WEB005;CWS Login;OK;SOFT;2;OK - Login succeeded
+Service Warning[08-04-2016 03:09:48] SERVICE ALERT: REJK-P-MDL002;MDL incoming files age;WARNING;HARD;1;WARNING - modified time 4063 sec exceeded threshold of 3600 sec
+Service Critical[08-04-2016 03:09:28] SERVICE ALERT: REJK-P-WEB005;CWS Login;CRITICAL;SOFT;1;Critical - Login failed!
+Service Ok[08-04-2016 03:05:28] SERVICE ALERT: REJK-P-WEB008;CWS Login;OK;SOFT;3;OK - Login succeeded
+Service Ok[08-04-2016 03:04:28] SERVICE ALERT: REJK-P-WEB007;CWS Login;OK;SOFT;2;OK - Login succeeded
+Service Ok[08-04-2016 03:04:28] SERVICE ALERT: REJK-P-WEB005;CWS Login;OK;SOFT;2;OK - Login succeeded
+Service Critical[08-04-2016 03:04:28] SERVICE ALERT: REJK-P-WEB008;CWS Login;CRITICAL;SOFT;2;Critical - Login failed!
+Service Critical[08-04-2016 03:04:18] SERVICE ALERT: REJK-P-WEB007;CWS Login;CRITICAL;SOFT;1;Critical - Login time exceeded 30 seconds!
+Service Critical[08-04-2016 03:04:18] SERVICE ALERT: REJK-P-WEB005;CWS Login;CRITICAL;SOFT;1;Critical - Login time exceeded 30 seconds!
+Service Critical[08-04-2016 03:04:18] SERVICE ALERT: REJK-P-WEB008;CWS Login;CRITICAL;SOFT;1;Critical - Login time exceeded 30 seconds!
+Service Ok[08-04-2016 03:02:58] SERVICE ALERT: REJK-P-WEB005;IIS connections;OK;HARD;1;OK (Sample Period 59 sec) - Site Name="_Total", CurrentConnections=46, _ConnectionAttemptsPersec=0/sec
+Service Warning[08-04-2016 03:01:58] SERVICE ALERT: REJK-P-SQL006;Job - Entity log export NO AIF DSB - SI;WARNING;HARD;1;WARNING - Job has failed 1 times during past 5 executions, Current Status: Waiting
+Service Warning[08-04-2016 03:01:58] SERVICE ALERT: REJK-P-WEB005;IIS connections;WARNING;HARD;1;WARNING (Sample Period 61 sec) - [Triggered by CurrentConnections>50] - Site Name="_Total", CurrentConnections=65, _ConnectionAttemptsPersec=1/sec
+Service Ok[08-04-2016 03:01:38] SERVICE ALERT: REJK-P-SMC002;Ram usage;OK;HARD;1;OK - 8.8% (1429080 kB) free.
+Service Warning[08-04-2016 03:01:28] SERVICE ALERT: REJK-P-MDL001;MDL incoming files age;WARNING;HARD;1;WARNING - modified time 3622 sec exceeded threshold of 3600 sec
+
+April 08, 2016 02:00
+
+Service Critical[08-04-2016 02:34:08] SERVICE ALERT: REJK-P-SPS007;SPS EOD Distribution - Primary Blacklist;CRITICAL;HARD;1;CRITICAL - 1 devices (RVM or VCF) has EOD older than previous version
+Service Warning[08-04-2016 02:29:08] SERVICE ALERT: REJK-P-SPS007;SPS EOD Distribution - Primary Blacklist;WARNING;HARD;1;WARNING - 99% updated in 208 minutes - VCF: 56/0 (100%) - RVM: 38/1 (97%)
+Service Critical[08-04-2016 02:28:28] SERVICE ALERT: REJK-P-SPS007;SPS EOD Distribution - Secondary Blacklist;CRITICAL;HARD;1;CRITICAL - 1 devices (RVM or VCF) has EOD older than previous version
+Service Critical[08-04-2016 02:28:18] SERVICE ALERT: REJK-P-SPS007;SPS EOD Distribution - Action List;CRITICAL;HARD;1;CRITICAL - 1 devices (RVM or VCF) has EOD older than previous version
+Service Critical[08-04-2016 02:26:38] SERVICE ALERT: REJK-P-SMC002;Ram usage;CRITICAL;HARD;1;CRITICAL - 1.0% (167412 kB) free!
+Service Ok[08-04-2016 02:24:08] SERVICE ALERT: REJK-P-SPS007;SPS EOD Distribution - Primary Blacklist;OK;HARD;1;OK - VCF: 56/0 (100%) - RVM: 35/0 (100%)
+Service Ok[08-04-2016 02:23:28] SERVICE ALERT: REJK-P-SPS007;SPS EOD Distribution - Secondary Blacklist;OK;HARD;1;OK - VCF: 56/0 (100%) - RVM: 35/0 (100%)
+Service Ok[08-04-2016 02:23:18] SERVICE ALERT: REJK-P-SPS007;SPS EOD Distribution - Action List;OK;HARD;1;OK - VCF: 56/0 (100%) - RVM: 35/0 (100%)
+Service Ok[08-04-2016 02:06:28] SERVICE ALERT: REJK-P-SQL003;Boris connections;OK;HARD;1;OK - Number of BORIS TCRW connected: 264
+Service Critical[08-04-2016 02:03:38] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_2_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_2.exe" running (0 excluded).
+Service Critical[08-04-2016 02:03:38] SERVICE ALERT: REJK-P-MDL002;MDL incoming files queue;CRITICAL;HARD;1;CRITICAL - count 1601 exceeded threshold of 1000
+Service Critical[08-04-2016 02:03:28] SERVICE ALERT: REJK-P-MDL001;MDL incoming files queue;CRITICAL;HARD;1;CRITICAL - count 1391 exceeded threshold of 1000
+Service Critical[08-04-2016 02:03:18] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_1_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_1.exe" running (0 excluded).
+Service Critical[08-04-2016 02:03:18] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_4_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_4.exe" running (0 excluded).
+Service Critical[08-04-2016 02:03:18] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_1_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_1.exe" running (0 excluded).
+Service Critical[08-04-2016 02:03:18] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_3_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded).
+Service Critical[08-04-2016 02:02:18] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_4_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_4.exe" running (0 excluded).
+Service Critical[08-04-2016 02:01:28] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_3_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded).
+Service Critical[08-04-2016 02:01:28] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_2_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_2.exe" running (0 excluded).
+Service Ok[08-04-2016 02:01:28] SERVICE ALERT: REJK-P-SQL006;Job Execution - Creation of collection letter OSS - BO;OK;HARD;1;OK - Normal execution interval
+
+April 08, 2016 01:00
+
+Service Ok[08-04-2016 01:24:28] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[08-04-2016 01:23:38] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[08-04-2016 01:16:38] SERVICE ALERT: REJK-P-SMC002;Ram usage;WARNING;HARD;1;WARNING - 1.1% (176056 kB) free!
+Service Critical[08-04-2016 01:11:38] SERVICE ALERT: REJK-P-SMC002;Ram usage;CRITICAL;HARD;1;CRITICAL - 1.0% (169920 kB) free!
+
+April 08, 2016 00:00
+
+Service Warning[08-04-2016 00:31:38] SERVICE ALERT: REJK-P-SMC002;Ram usage;WARNING;HARD;1;WARNING - 1.6% (268868 kB) free!
+Service Ok[08-04-2016 00:09:58] SERVICE ALERT: REJK-P-SPS007;FSV history in;OK;HARD;1;OK
+Service Ok[08-04-2016 00:08:28] SERVICE ALERT: REJK-P-SPS004;FSV history in;OK;HARD;1;OK
+Service Ok[08-04-2016 00:07:38] SERVICE ALERT: REJK-P-SQL006;Job Execution - Creation of collection letter TSY - BO;OK;HARD;1;OK - Normal execution interval
+Service Ok[08-04-2016 00:07:18] SERVICE ALERT: REJK-P-SPS008;FSV history in;OK;HARD;1;OK
+Service Ok[08-04-2016 00:06:48] SERVICE ALERT: REJK-P-SQL006;Job Execution - Creation of collection letter TSN - BO;OK;HARD;1;OK - Normal execution interval
+Service Ok[08-04-2016 00:05:08] SERVICE ALERT: REJK-P-SQL006;Job Execution - Creation of collection letter TSM - BO;OK;HARD;1;OK - Normal execution interval
+Service Critical[08-04-2016 00:04:58] SERVICE ALERT: REJK-P-SPS007;FSV history in;CRITICAL;HARD;1;CRITICAL - smb://rejk-p-sps007/D$/IFSBOData/FSV/Incoming_histo/20160408/FSV_HistoIncoming.txt not found
+Service Warning[08-04-2016 00:04:08] SERVICE ALERT: REJK-P-SPS007;SPS EOD Distribution - Primary Blacklist;WARNING;HARD;1;WARNING - 99% updated in 63 minutes - VCF: 56/0 (100%) - RVM: 38/1 (97%)
+Service Ok[08-04-2016 00:03:58] SERVICE ALERT: REJK-P-SQL006;Job Execution - Creation of collection letter TSJ - BO;OK;HARD;1;OK - Normal execution interval
+Service Critical[08-04-2016 00:03:28] SERVICE ALERT: REJK-P-SPS004;FSV history in;CRITICAL;HARD;1;CRITICAL - smb://rejk-p-sps004/D$/IFSBOData/FSV/Incoming_histo/20160408/FSV_HistoIncoming.txt not found
+Service Ok[08-04-2016 00:03:18] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049556;OK;HARD;1;OK - DSB_Vsa_RVM_101 (049556) - 4 minutes since last transaction (0495561K.3E0)
+Service Ok[08-04-2016 00:02:38] SERVICE ALERT: REJK-P-SQL006;Job Execution - Creation of collection letter REJ - BO;OK;HARD;1;OK - Normal execution interval
+Service Critical[08-04-2016 00:02:18] SERVICE ALERT: REJK-P-SPS008;FSV history in;CRITICAL;HARD;1;CRITICAL - smb://rejk-p-sps008/D$/IFSBOData/FSV/Incoming_histo/20160408/FSV_HistoIncoming.txt not found
+Service Warning[08-04-2016 00:01:28] SERVICE ALERT: REJK-P-SQL006;Job Execution - Creation of collection letter OSS - BO;WARNING;HARD;1;WARNING - JOB - Creation of collection letter has not been executed since 2016-04-06 21:01:58. Current Status: Executing
+Service Ok[08-04-2016 00:00:08] SERVICE ALERT: REJK-P-SQL006;Job Execution - Creation of collection letter DSB - BO;OK;HARD;1;OK - Normal execution interval
+
+Alert History
+Last Updated: Tue Apr 12 15:21:41 CEST 2016
+Nagios® Core™ 3.4.1 - www.nagios.org
+Logged in as ThalesMNI
+View Status Detail For All Hosts
+View Notifications For All Hosts
+All Hosts and Services
+
+Earlier Archive
+Earlier Archive
+Log File Navigation
+Tue Apr 5 00:00:00 CEST 2016
+to
+Wed Apr 6 00:00:00 CEST 2016 More Recent Archive
+More Recent Archive
+
+File: /var/log/nagios/archives/nagios-04-06-2016-00.log
+State type options:
+
+History detail level for all hosts:
+
+ Hide Flapping Alerts
+ Hide Downtime Alerts
+ Hide Process Messages
+ Older Entries First
+Update
+
+April 05, 2016 23:00
+
+Service Critical[05-04-2016 23:59:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 23:49:34] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 23:48:34] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 23:44:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 23:43:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 23:36:44] SERVICE ALERT: REJK-P-AOS002;Ax32Serv process;OK;HARD;1;OK - Found 1 Instance(s) of "Ax32Serv.exe" running (0 excluded). (List is on next line)
+Service Ok[05-04-2016 23:35:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 23:34:34] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 23:28:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 23:27:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[05-04-2016 23:22:44] SERVICE ALERT: REJK-P-AOS002;Ax32Serv process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "Ax32Serv.exe" running (0 excluded).
+Service Ok[05-04-2016 23:12:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 23:11:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 23:03:34] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 23:02:34] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 23:00:04] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 0 row(s) in prg.ObjTransactionBuffer
+Service Critical[05-04-2016 23:00:04] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Critical[05-04-2016 23:00:04] SERVICE ALERT: REJK-P-SQL006;Job Execution - Creation of collection letter DSB - BO;CRITICAL;HARD;1;CRITICAL - JOB - Creation of collection letter has not been executed since 2016-04-04 21:33:43. Current Status: Waiting
+
+April 05, 2016 22:00
+
+Service Critical[05-04-2016 22:58:34] SERVICE ALERT: REJK-P-SPS009;SPS EOD Distribution - Secondary Blacklist;CRITICAL;HARD;1;CRITICAL - 1 devices (RVM or VCF) has EOD older than previous version
+Service Ok[05-04-2016 22:49:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 22:48:34] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 22:41:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;HARD;3;OK - Got reply from host
+Service Ok[05-04-2016 22:33:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[05-04-2016 22:32:34] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[05-04-2016 22:31:34] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 22:04:04] SERVICE ALERT: REJK-P-SQL003;Unprocessed TCS transactions;OK;HARD;1;OK
+Service Ok[05-04-2016 22:01:34] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 22:00:34] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 22:00:04] SERVICE ALERT: REJK-P-BCM003;RCOB import directory count;OK;HARD;1;OK
+
+April 05, 2016 21:00
+
+Service Critical[05-04-2016 21:56:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;HARD;3;Critical - No response from host!
+Service Critical[05-04-2016 21:55:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[05-04-2016 21:54:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 21:47:34] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 21:46:34] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 21:30:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[05-04-2016 21:30:14] SERVICE ALERT: REJK-P-BCM003;RCOB Under Production;OK;HARD;1;OK - oldest order in status "Under Production": 2016-04-03 06:18:20
+Service Critical[05-04-2016 21:29:34] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 21:24:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 21:23:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 21:20:04] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 0 row(s) in prg.ObjTransactionBuffer
+Service Critical[05-04-2016 21:20:04] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Ok[05-04-2016 21:18:34] SERVICE ALERT: REJK-P-MDL002;MDL incoming files queue;OK;HARD;1;OK
+Service Ok[05-04-2016 21:18:34] SERVICE ALERT: REJK-P-MDL001;MDL incoming files queue;OK;HARD;1;OK
+Service Critical[05-04-2016 21:03:34] SERVICE ALERT: REJK-P-MDL002;MDL incoming files queue;CRITICAL;HARD;1;CRITICAL - count 2014 exceeded threshold of 1000
+Service Critical[05-04-2016 21:03:34] SERVICE ALERT: REJK-P-MDL001;MDL incoming files queue;CRITICAL;HARD;1;CRITICAL - count 2110 exceeded threshold of 1000
+
+April 05, 2016 20:00
+
+Service Ok[05-04-2016 20:59:34] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Warning[05-04-2016 20:58:34] SERVICE ALERT: REJK-P-SPS009;SPS EOD Distribution - Action List;WARNING;HARD;1;WARNING - 99% updated in 61 minutes - VCF: 50/0 (100%) - RVM: 41/1 (98%)
+Service Critical[05-04-2016 20:58:34] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 20:53:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 20:52:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 20:37:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 20:36:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 20:36:34] SERVICE ALERT: REJK-P-TCF001;Disk C: usage;OK;HARD;1;OK - C:\ Total=60.00GB, Used=28.25GB (47.1%), Free=31.74GB (52.9%)
+Service Warning[05-04-2016 20:36:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045112;WARNING;HARD;1;WARNING - ARR_Ds_RVM_101 (045112) - 1446 minutes since last transaction (0451121K.23C)
+Service Ok[05-04-2016 20:36:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045139;OK;HARD;1;OK - ARR_Vem_RVM_101 (045139) - 1746 minutes since last transaction (0451391K.1D1)
+Service Ok[05-04-2016 20:34:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049524;OK;HARD;1;OK - DSB_Rd_RVM_101 (049524) - 94 minutes since last transaction (0495241K.94C)
+Service Ok[05-04-2016 20:34:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049449;OK;HARD;1;OK - DSB_Hl_RVM_102 (049449) - 64 minutes since last transaction (0494491K.ABA)
+Service Ok[05-04-2016 20:34:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049366;OK;HARD;1;OK - DSB_Kh_RVM_106 (049366) - 4 minutes since last transaction (0493661K.37F)
+Service Ok[05-04-2016 20:34:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048518;OK;HARD;1;OK - STO_Ih_RVM_101 (048518) - 94 minutes since last transaction (0485181K.834)
+Service Ok[05-04-2016 20:34:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048118;OK;HARD;1;OK - STO_Øl_RVM_101 (048118) - 214 minutes since last transaction (0481181K.5ED)
+Service Ok[05-04-2016 20:34:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048086;OK;HARD;1;OK - STO_Ght_RVM_101 (048086) - 4 minutes since last transaction (0480861K.F7F)
+Service Ok[05-04-2016 20:34:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047019;OK;HARD;1;OK - MET_Vea_RVM_101 (047019) - 79 minutes since last transaction (0470191K.678)
+Service Ok[05-04-2016 20:34:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048016;OK;HARD;1;OK - STO_Nel_RVM_101 (048016) - 19 minutes since last transaction (0480161K.98F)
+Service Ok[05-04-2016 20:34:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049905;OK;HARD;1;OK - DSB_Pe_RVM_101 (049905) - 336 minutes since last transaction (0499051K.87D)
+Service Ok[05-04-2016 20:34:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045138;OK;HARD;1;OK - ARR_Uf_RVM_101 (045138) - 349 minutes since last transaction (0451381K.0D6)
+Service Ok[05-04-2016 20:34:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045111;OK;HARD;1;OK - ARR_Bw_RVM_101 (045111) - 514 minutes since last transaction (0451111K.3BC)
+Service Ok[05-04-2016 20:34:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049435;OK;HARD;1;OK - DSB_Næ_RVM_101 (049435) - 49 minutes since last transaction (0494351K.D45)
+Service Ok[05-04-2016 20:34:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049320;OK;HARD;1;OK - STO_Har_RVM_101 (049320) - 259 minutes since last transaction (0493201K.7A1)
+Service Ok[05-04-2016 20:34:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045124;OK;HARD;1;OK - ARR_Gu_RVM_101 (045124) - 2199 minutes since last transaction (0451241K.26F)
+Service Critical[05-04-2016 20:33:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049918;CRITICAL;HARD;1;CRITICAL - DSB_Tov_RVM_101 (049918) - 5958 minutes since last transaction (0499181K.04E)
+Service Ok[05-04-2016 20:33:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048117;OK;HARD;1;OK - STO_Gtg_RVM_101 (048117) - 25 minutes since last transaction (0481171K.E22)
+Service Ok[05-04-2016 20:33:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047018;OK;HARD;1;OK - MET_Øre_RVM_101 (047018) - 3 minutes since last transaction (0470181K.7B7)
+Service Ok[05-04-2016 20:33:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049303;OK;HARD;1;OK - DSB_Ru_RVM_101 (049303) - 3 minutes since last transaction (0493031K.F04)
+Service Ok[05-04-2016 20:33:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048015;OK;HARD;1;OK - STO_Ã…m_RVM_101 (048015) - 153 minutes since last transaction (0480151K.9A9)
+Service Ok[05-04-2016 20:33:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049448;OK;HARD;1;OK - DSB_Hl_RVM_101 (049448) - 3 minutes since last transaction (0494481K.456)
+Service Ok[05-04-2016 20:33:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049364;OK;HARD;1;OK - DSB_Kh_RVM_104 (049364) - 3 minutes since last transaction (0493641K.827)
+Service Ok[05-04-2016 20:33:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045166;OK;HARD;1;OK - ARR_Bg_RVM_101 (045166) - 770 minutes since last transaction (0451663K.079)
+Service Ok[05-04-2016 20:33:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045110;OK;HARD;1;OK - ARR_Vis_RVM_101 (045110) - 464 minutes since last transaction (0451103K.023)
+Service Ok[05-04-2016 20:33:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049542;OK;HARD;1;OK - DSB_Hjs_RVM_101 (049542) - 648 minutes since last transaction (0495421K.317)
+Service Ok[05-04-2016 20:33:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049420;OK;HARD;1;OK - DSB_Es_RVM_102 (049420) - 63 minutes since last transaction (0494201K.ED6)
+Service Ok[05-04-2016 20:33:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045123;OK;HARD;1;OK - ARR_Gje_RVM_101 (045123) - 272 minutes since last transaction (0451231K.E71)
+Service Ok[05-04-2016 20:33:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044603;OK;HARD;1;OK - MT_Odd_RVM_101 (044603) - 288 minutes since last transaction (0446031K.685)
+Service Ok[05-04-2016 20:33:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047003;OK;HARD;1;OK - MET_Lit_RVM_101 (047003) - 107 minutes since last transaction (0470031K.575)
+Service Warning[05-04-2016 20:33:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045152;WARNING;HARD;1;WARNING - ARR_Rk_RVM_101 (045152) - 2253 minutes since last transaction (0451521K.2FC)
+Service Ok[05-04-2016 20:33:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049021;OK;HARD;1;OK - DSB_Hz_RVM_101 (049021) - 63 minutes since last transaction (0490211K.C26)
+Service Ok[05-04-2016 20:33:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048061;OK;HARD;1;OK - STO_Emt_RVM_101 (048061) - 152 minutes since last transaction (0480611K.352)
+Service Ok[05-04-2016 20:33:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048103;OK;HARD;1;OK - STO_Van_RVM_101 (048103) - 63 minutes since last transaction (0481031K.5BF)
+Service Ok[05-04-2016 20:33:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047917;OK;HARD;1;OK - MET_Kn_RVM_101 (047917) - 18 minutes since last transaction (0479171K.E71)
+Service Ok[05-04-2016 20:33:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048116;OK;HARD;1;OK - STO_St_RVM_101 (048116) - 33 minutes since last transaction (0481161K.184)
+Service Ok[05-04-2016 20:33:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048083;OK;HARD;1;OK - STO_Nø_RVM_101 (048083) - 17 minutes since last transaction (0480831K.3B4)
+Service Ok[05-04-2016 20:33:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049447;OK;HARD;1;OK - DSB_Hb_RVM_101 (049447) - 137 minutes since last transaction (0494471K.249)
+Service Ok[05-04-2016 20:33:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049406;OK;HARD;1;OK - DSB_Vm_RVM_101 (049406) - 123 minutes since last transaction (0494061K.AC7)
+Service Ok[05-04-2016 20:33:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049541;OK;HARD;1;OK - DSB_Frs_RVM_101 (049541) - 2133 minutes since last transaction (0495411K.222)
+Service Ok[05-04-2016 20:33:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049302;OK;HARD;1;OK - DSB_Vb_RVM_101 (049302) - 152 minutes since last transaction (0493021K.273)
+Service Ok[05-04-2016 20:33:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047017;OK;HARD;1;OK - MET_Bc_RVM_101 (047017) - 33 minutes since last transaction (0470171K.014)
+Service Ok[05-04-2016 20:33:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049556;OK;HARD;1;OK - DSB_Vsa_RVM_101 (049556) - 483 minutes since last transaction (0495561K.3DB)
+Service Ok[05-04-2016 20:33:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048102;OK;HARD;1;OK - STO_Pbt_RVM_101 (048102) - 2 minutes since last transaction (0481021K.FDC)
+Service Ok[05-04-2016 20:33:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049507;OK;HARD;1;OK - DSB_Bd_RVM_101 (049507) - 8897 minutes since last transaction (0495071K.07E)
+Service Ok[05-04-2016 20:33:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044602;OK;HARD;1;OK - MT_Mal_RVM_101 (044602) - 437 minutes since last transaction (0446021K.2A9)
+Service Ok[05-04-2016 20:33:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045122;OK;HARD;1;OK - ARR_Esn_RVM_101 (045122) - 17 minutes since last transaction (0451221K.9B2)
+Service Ok[05-04-2016 20:33:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048040;OK;HARD;1;OK - STO_Op_RVM_101 (048040) - 24 minutes since last transaction (0480401K.89A)
+Service Ok[05-04-2016 20:33:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049903;OK;HARD;1;OK - DSB_Ro_RVM_104 (049903) - 2 minutes since last transaction (0499031K.F06)
+Service Ok[05-04-2016 20:33:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049020;OK;HARD;1;OK - DSB_Gz_RVM_101 (049020) - 47 minutes since last transaction (0490201K.614)
+Service Ok[05-04-2016 20:33:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045151;OK;HARD;1;OK - ARR_Bj_RVM_101 (045151) - 227 minutes since last transaction (0451511K.920)
+Service Ok[05-04-2016 20:33:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049419;OK;HARD;1;OK - DSB_Es_RVM_101 (049419) - 33 minutes since last transaction (0494191K.203)
+Service Ok[05-04-2016 20:33:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045109;OK;HARD;1;OK - ARR_Trn_RVM_101 (045109) - 602 minutes since last transaction (0451093K.029)
+Service Ok[05-04-2016 20:33:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045135;OK;HARD;1;OK - ARR_Rj_RVM_101 (045135) - 452 minutes since last transaction (0451351K.CCC)
+Service Ok[05-04-2016 20:32:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049936;OK;HARD;1;OK - DSB_Lv_RVM_101 (049936) - 2867 minutes since last transaction (0499361K.03B)
+Service Ok[05-04-2016 20:31:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049405;OK;HARD;1;OK - DSB_Lk_RVM_101 (049405) - 753 minutes since last transaction (0494051K.C07)
+Service Ok[05-04-2016 20:31:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049362;OK;HARD;1;OK - DSB_Kh_RVM_102 (049362) - 10 minutes since last transaction (0493621K.C1F)
+Service Ok[05-04-2016 20:31:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049521;OK;HARD;1;OK - DSB_Ar_RVM_102 (049521) - 1 minutes since last transaction (0495211K.091)
+Service Ok[05-04-2016 20:31:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049301;OK;HARD;1;OK - DSB_SÃ¥_RVM_101 (049301) - 16 minutes since last transaction (0493011K.264)
+Service Ok[05-04-2016 20:31:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048115;OK;HARD;1;OK - STO_Vs_RVM_101 (048115) - 1 minutes since last transaction (0481151K.350)
+Service Ok[05-04-2016 20:31:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048082;OK;HARD;1;OK - STO_Bit_RVM_101 (048082) - 1 minutes since last transaction (0480821K.A2D)
+Service Ok[05-04-2016 20:31:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045108;OK;HARD;1;OK - ARR_Tdr_RVM_101 (045108) - 61 minutes since last transaction (0451081K.69F)
+Service Ok[05-04-2016 20:31:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047015;OK;HARD;1;OK - MET_Uni_RVM_101 (047015) - 17 minutes since last transaction (0470151K.843)
+Service Ok[05-04-2016 20:31:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048143;OK;HARD;1;OK - STO_Jæt_RVM_101 (048143) - 76 minutes since last transaction (0481431K.7EC)
+Service Ok[05-04-2016 20:31:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045200;OK;HARD;1;OK - ARR_Bu_RVM_101 (045200) - 2091 minutes since last transaction (0452001K.140)
+Service Ok[05-04-2016 20:31:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048101;OK;HARD;1;OK - STO_Vat_RVM_101 (048101) - 61 minutes since last transaction (0481011K.6CB)
+Service Ok[05-04-2016 20:31:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045121;OK;HARD;1;OK - ARR_Tb_RVM_101 (045121) - 136 minutes since last transaction (0451211K.6D1)
+Service Ok[05-04-2016 20:31:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045150;OK;HARD;1;OK - ARR_Up_RVM_101 (045150) - 766 minutes since last transaction (0451501K.3AA)
+Service Ok[05-04-2016 20:30:14] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 0 row(s) in prg.ObjTransactionBuffer
+Service Critical[05-04-2016 20:30:14] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Ok[05-04-2016 20:29:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049380;OK;HARD;1;OK - DSB_RÃ¥d_RVM_101 (049380) - 20 minutes since last transaction (0493801K.635)
+Service Ok[05-04-2016 20:25:14] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 0 row(s) in prg.ObjTransactionBuffer
+Service Critical[05-04-2016 20:25:14] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Ok[05-04-2016 20:22:14] SERVICE ALERT: REJK-P-SMC001;load;OK;HARD;1;OK - load average: 18.42, 19.69, 17.37
+Service Unknown[05-04-2016 20:21:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045139;UNKNOWN;HARD;1;UNKNOWN - ARR_Vem_RVM_101 (045139) - SPS link down
+Service Unknown[05-04-2016 20:19:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049524;UNKNOWN;HARD;1;UNKNOWN - DSB_Rd_RVM_101 (049524) - SPS link down
+Service Unknown[05-04-2016 20:19:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049449;UNKNOWN;HARD;1;UNKNOWN - DSB_Hl_RVM_102 (049449) - SPS link down
+Service Unknown[05-04-2016 20:19:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049366;UNKNOWN;HARD;1;UNKNOWN - DSB_Kh_RVM_106 (049366) - SPS link down
+Service Unknown[05-04-2016 20:19:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048118;UNKNOWN;HARD;1;UNKNOWN - STO_Øl_RVM_101 (048118) - SPS link down
+Service Unknown[05-04-2016 20:19:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048518;UNKNOWN;HARD;1;UNKNOWN - STO_Ih_RVM_101 (048518) - SPS link down
+Service Unknown[05-04-2016 20:19:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048086;UNKNOWN;HARD;1;UNKNOWN - STO_Ght_RVM_101 (048086) - SPS link down
+Service Unknown[05-04-2016 20:19:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047019;UNKNOWN;HARD;1;UNKNOWN - MET_Vea_RVM_101 (047019) - SPS link down
+Service Unknown[05-04-2016 20:19:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048016;UNKNOWN;HARD;1;UNKNOWN - STO_Nel_RVM_101 (048016) - SPS link down
+Service Unknown[05-04-2016 20:19:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049905;UNKNOWN;HARD;1;UNKNOWN - DSB_Pe_RVM_101 (049905) - SPS link down
+Service Unknown[05-04-2016 20:19:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045138;UNKNOWN;HARD;1;UNKNOWN - ARR_Uf_RVM_101 (045138) - SPS link down
+Service Unknown[05-04-2016 20:19:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045111;UNKNOWN;HARD;1;UNKNOWN - ARR_Bw_RVM_101 (045111) - SPS link down
+Service Unknown[05-04-2016 20:19:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049435;UNKNOWN;HARD;1;UNKNOWN - DSB_Næ_RVM_101 (049435) - SPS link down
+Service Unknown[05-04-2016 20:19:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049320;UNKNOWN;HARD;1;UNKNOWN - STO_Har_RVM_101 (049320) - SPS link down
+Service Unknown[05-04-2016 20:19:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045124;UNKNOWN;HARD;1;UNKNOWN - ARR_Gu_RVM_101 (045124) - SPS link down
+Service Unknown[05-04-2016 20:18:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049918;UNKNOWN;HARD;1;UNKNOWN - DSB_Tov_RVM_101 (049918) - SPS link down
+Service Unknown[05-04-2016 20:18:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048117;UNKNOWN;HARD;1;UNKNOWN - STO_Gtg_RVM_101 (048117) - SPS link down
+Service Unknown[05-04-2016 20:18:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047018;UNKNOWN;HARD;1;UNKNOWN - MET_Øre_RVM_101 (047018) - SPS link down
+Service Unknown[05-04-2016 20:18:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048015;UNKNOWN;HARD;1;UNKNOWN - STO_Ã…m_RVM_101 (048015) - SPS link down
+Service Unknown[05-04-2016 20:18:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049303;UNKNOWN;HARD;1;UNKNOWN - DSB_Ru_RVM_101 (049303) - SPS link down
+Service Unknown[05-04-2016 20:18:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049448;UNKNOWN;HARD;1;UNKNOWN - DSB_Hl_RVM_101 (049448) - SPS link down
+Service Unknown[05-04-2016 20:18:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049364;UNKNOWN;HARD;1;UNKNOWN - DSB_Kh_RVM_104 (049364) - SPS link down
+Service Unknown[05-04-2016 20:18:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045166;UNKNOWN;HARD;1;UNKNOWN - ARR_Bg_RVM_101 (045166) - SPS link down
+Service Unknown[05-04-2016 20:18:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045110;UNKNOWN;HARD;1;UNKNOWN - ARR_Vis_RVM_101 (045110) - SPS link down
+Service Unknown[05-04-2016 20:18:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049542;UNKNOWN;HARD;1;UNKNOWN - DSB_Hjs_RVM_101 (049542) - SPS link down
+Service Unknown[05-04-2016 20:18:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049420;UNKNOWN;HARD;1;UNKNOWN - DSB_Es_RVM_102 (049420) - SPS link down
+Service Unknown[05-04-2016 20:18:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047003;UNKNOWN;HARD;1;UNKNOWN - MET_Lit_RVM_101 (047003) - SPS link down
+Service Unknown[05-04-2016 20:18:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045123;UNKNOWN;HARD;1;UNKNOWN - ARR_Gje_RVM_101 (045123) - SPS link down
+Service Unknown[05-04-2016 20:18:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044603;UNKNOWN;HARD;1;UNKNOWN - MT_Odd_RVM_101 (044603) - SPS link down
+Service Unknown[05-04-2016 20:18:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047917;UNKNOWN;HARD;1;UNKNOWN - MET_Kn_RVM_101 (047917) - SPS link down
+Service Unknown[05-04-2016 20:18:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048103;UNKNOWN;HARD;1;UNKNOWN - STO_Van_RVM_101 (048103) - SPS link down
+Service Unknown[05-04-2016 20:18:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045152;UNKNOWN;HARD;1;UNKNOWN - ARR_Rk_RVM_101 (045152) - SPS link down
+Service Unknown[05-04-2016 20:18:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049021;UNKNOWN;HARD;1;UNKNOWN - DSB_Hz_RVM_101 (049021) - SPS link down
+Service Unknown[05-04-2016 20:18:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048061;UNKNOWN;HARD;1;UNKNOWN - STO_Emt_RVM_101 (048061) - SPS link down
+Service Unknown[05-04-2016 20:18:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048116;UNKNOWN;HARD;1;UNKNOWN - STO_St_RVM_101 (048116) - SPS link down
+Service Unknown[05-04-2016 20:18:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048083;UNKNOWN;HARD;1;UNKNOWN - STO_Nø_RVM_101 (048083) - SPS link down
+Service Unknown[05-04-2016 20:18:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049447;UNKNOWN;HARD;1;UNKNOWN - DSB_Hb_RVM_101 (049447) - SPS link down
+Service Unknown[05-04-2016 20:18:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049406;UNKNOWN;HARD;1;UNKNOWN - DSB_Vm_RVM_101 (049406) - SPS link down
+Service Unknown[05-04-2016 20:18:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049541;UNKNOWN;HARD;1;UNKNOWN - DSB_Frs_RVM_101 (049541) - SPS link down
+Service Unknown[05-04-2016 20:18:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049302;UNKNOWN;HARD;1;UNKNOWN - DSB_Vb_RVM_101 (049302) - SPS link down
+Service Unknown[05-04-2016 20:18:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049556;UNKNOWN;HARD;1;UNKNOWN - DSB_Vsa_RVM_101 (049556) - SPS link down
+Service Unknown[05-04-2016 20:18:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047017;UNKNOWN;HARD;1;UNKNOWN - MET_Bc_RVM_101 (047017) - SPS link down
+Service Unknown[05-04-2016 20:18:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048102;UNKNOWN;HARD;1;UNKNOWN - STO_Pbt_RVM_101 (048102) - SPS link down
+Service Unknown[05-04-2016 20:18:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044602;UNKNOWN;HARD;1;UNKNOWN - MT_Mal_RVM_101 (044602) - SPS link down
+Service Unknown[05-04-2016 20:18:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049507;UNKNOWN;HARD;1;UNKNOWN - DSB_Bd_RVM_101 (049507) - SPS link down
+Service Unknown[05-04-2016 20:18:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045122;UNKNOWN;HARD;1;UNKNOWN - ARR_Esn_RVM_101 (045122) - SPS link down
+Service Unknown[05-04-2016 20:18:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049903;UNKNOWN;HARD;1;UNKNOWN - DSB_Ro_RVM_104 (049903) - SPS link down
+Service Unknown[05-04-2016 20:18:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048040;UNKNOWN;HARD;1;UNKNOWN - STO_Op_RVM_101 (048040) - SPS link down
+Service Unknown[05-04-2016 20:18:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045151;UNKNOWN;HARD;1;UNKNOWN - ARR_Bj_RVM_101 (045151) - SPS link down
+Service Unknown[05-04-2016 20:18:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049419;UNKNOWN;HARD;1;UNKNOWN - DSB_Es_RVM_101 (049419) - SPS link down
+Service Unknown[05-04-2016 20:18:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049020;UNKNOWN;HARD;1;UNKNOWN - DSB_Gz_RVM_101 (049020) - SPS link down
+Service Unknown[05-04-2016 20:18:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045109;UNKNOWN;HARD;1;UNKNOWN - ARR_Trn_RVM_101 (045109) - SPS link down
+Service Unknown[05-04-2016 20:18:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045135;UNKNOWN;HARD;1;UNKNOWN - ARR_Rj_RVM_101 (045135) - SPS link down
+Service Unknown[05-04-2016 20:17:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049936;UNKNOWN;HARD;1;UNKNOWN - DSB_Lv_RVM_101 (049936) - SPS link down
+Service Warning[05-04-2016 20:17:14] SERVICE ALERT: REJK-P-SMC001;load;WARNING;HARD;1;WARNING - load average: 31.47, 22.91, 17.18
+Service Unknown[05-04-2016 20:16:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049405;UNKNOWN;HARD;1;UNKNOWN - DSB_Lk_RVM_101 (049405) - SPS link down
+Service Unknown[05-04-2016 20:16:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049362;UNKNOWN;HARD;1;UNKNOWN - DSB_Kh_RVM_102 (049362) - SPS link down
+Service Unknown[05-04-2016 20:16:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049521;UNKNOWN;HARD;1;UNKNOWN - DSB_Ar_RVM_102 (049521) - SPS link down
+Service Unknown[05-04-2016 20:16:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049301;UNKNOWN;HARD;1;UNKNOWN - DSB_SÃ¥_RVM_101 (049301) - SPS link down
+Service Unknown[05-04-2016 20:16:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048082;UNKNOWN;HARD;1;UNKNOWN - STO_Bit_RVM_101 (048082) - SPS link down
+Service Unknown[05-04-2016 20:16:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048115;UNKNOWN;HARD;1;UNKNOWN - STO_Vs_RVM_101 (048115) - SPS link down
+Service Unknown[05-04-2016 20:16:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045108;UNKNOWN;HARD;1;UNKNOWN - ARR_Tdr_RVM_101 (045108) - SPS link down
+Service Unknown[05-04-2016 20:16:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047015;UNKNOWN;HARD;1;UNKNOWN - MET_Uni_RVM_101 (047015) - SPS link down
+Service Unknown[05-04-2016 20:16:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048143;UNKNOWN;HARD;1;UNKNOWN - STO_Jæt_RVM_101 (048143) - SPS link down
+Service Unknown[05-04-2016 20:16:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048101;UNKNOWN;HARD;1;UNKNOWN - STO_Vat_RVM_101 (048101) - SPS link down
+Service Unknown[05-04-2016 20:16:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045200;UNKNOWN;HARD;1;UNKNOWN - ARR_Bu_RVM_101 (045200) - SPS link down
+Service Unknown[05-04-2016 20:16:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045150;UNKNOWN;HARD;1;UNKNOWN - ARR_Up_RVM_101 (045150) - SPS link down
+Service Unknown[05-04-2016 20:16:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045121;UNKNOWN;HARD;1;UNKNOWN - ARR_Tb_RVM_101 (045121) - SPS link down
+Service Critical[05-04-2016 20:15:03] SERVICE ALERT: REJK-P-BCM003;RCOB import directory count;CRITICAL;HARD;1;CRITICAL - count 7 exceeded threshold of 1
+Service Unknown[05-04-2016 20:14:53] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049380;UNKNOWN;HARD;1;UNKNOWN - DSB_RÃ¥d_RVM_101 (049380) - SPS link down
+Service Ok[05-04-2016 20:13:33] SERVICE ALERT: REJK-P-CAC001;AppFabric process;OK;HARD;1;OK - Found 1 Instance(s) of "DistributedCacheService.exe" running (0 excluded). (List is on next line)
+Service Ok[05-04-2016 20:11:23] SERVICE ALERT: REJK-P-WEB005;CWS Website;OK;HARD;1;HTTP OK: HTTP/1.1 200 OK - 10697 bytes in 0.644 second response time
+Service Ok[05-04-2016 20:11:23] SERVICE ALERT: REJK-P-WEB001;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 5GB - Used: 1.897GB (38%) - Free: 3.103GB (62%)
+Service Critical[05-04-2016 20:08:43] SERVICE ALERT: REJK-P-CAC001;AppFabric process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DistributedCacheService.exe" running (0 excluded).
+Service Ok[05-04-2016 20:07:43] SERVICE ALERT: REJK-P-WEB003;IIS connections;OK;HARD;1;OK (Sample Period 60 sec) - Site Name="_Total", CurrentConnections=3, _ConnectionAttemptsPersec=0/sec
+Service Ok[05-04-2016 20:07:43] SERVICE ALERT: REJK-P-WEB004;IIS connections;OK;HARD;1;OK (Sample Period 58 sec) - Site Name="_Total", CurrentConnections=5, _ConnectionAttemptsPersec=0/sec
+Service Ok[05-04-2016 20:07:43] SERVICE ALERT: REJK-P-TCS017;IIS connections;OK;HARD;1;OK (Sample Period 58 sec) - Site Name="_Total", CurrentConnections=0, _ConnectionAttemptsPersec=0/sec
+Service Ok[05-04-2016 20:07:43] SERVICE ALERT: REJK-P-TCS005;IIS connections;OK;HARD;1;OK (Sample Period 59 sec) - Site Name="_Total", CurrentConnections=0, _ConnectionAttemptsPersec=0/sec
+Service Ok[05-04-2016 20:07:43] SERVICE ALERT: REJK-P-TCS004;IIS connections;OK;HARD;1;OK (Sample Period 59 sec) - Site Name="_Total", CurrentConnections=0, _ConnectionAttemptsPersec=0/sec
+Service Unknown[05-04-2016 20:06:53] SERVICE ALERT: REJK-P-TCF001;Disk C: usage;UNKNOWN;HARD;1;UNKNOWN - Plugin Timed out (15 sec). There are multiple possible reasons for this, some of them include - The host rejk-p-tcf001 might just be really busy, it might not even be running Windows.
+Service Ok[05-04-2016 20:06:43] SERVICE ALERT: REJK-P-WEB006;IIS connections;OK;HARD;1;OK (Sample Period 2 sec) - Site Name="_Total", CurrentConnections=16, _ConnectionAttemptsPersec=0/sec
+Service Unknown[05-04-2016 20:06:33] SERVICE ALERT: REJK-P-WEB001;Ram usage;UNKNOWN;HARD;1;UNKNOWN - Plugin Timed out (15 sec). There are multiple possible reasons for this, some of them include - The host rejk-p-web001 might just be really busy, it might not even be running Windows.
+Service Critical[05-04-2016 20:06:33] SERVICE ALERT: REJK-P-WEB005;CWS Website;CRITICAL;HARD;1;CRITICAL - Socket timeout after 10 seconds
+Service Unknown[05-04-2016 20:06:14] SERVICE ALERT: REJK-P-WEB004;IIS connections;UNKNOWN;HARD;1;UNKNOWN - Plugin Timed out (15 sec). There are multiple possible reasons for this, some of them include - The host rejk-p-web004 might just be really busy, it might not even be running Windows.
+Service Unknown[05-04-2016 20:06:14] SERVICE ALERT: REJK-P-WEB006;IIS connections;UNKNOWN;HARD;1;UNKNOWN - Plugin Timed out (15 sec). There are multiple possible reasons for this, some of them include - The host rejk-p-web006 might just be really busy, it might not even be running Windows.
+Service Unknown[05-04-2016 20:06:14] SERVICE ALERT: REJK-P-WEB003;IIS connections;UNKNOWN;HARD;1;UNKNOWN - Plugin Timed out (15 sec). There are multiple possible reasons for this, some of them include - The host rejk-p-web003 might just be really busy, it might not even be running Windows.
+Service Unknown[05-04-2016 20:06:14] SERVICE ALERT: REJK-P-TCS017;IIS connections;UNKNOWN;HARD;1;UNKNOWN - Plugin Timed out (15 sec). There are multiple possible reasons for this, some of them include - The host rejk-p-tcs017 might just be really busy, it might not even be running Windows.
+Service Unknown[05-04-2016 20:06:14] SERVICE ALERT: REJK-P-TCS005;IIS connections;UNKNOWN;HARD;1;UNKNOWN - Plugin Timed out (15 sec). There are multiple possible reasons for this, some of them include - The host rejk-p-tcs005 might just be really busy, it might not even be running Windows.
+Service Unknown[05-04-2016 20:06:14] SERVICE ALERT: REJK-P-TCS004;IIS connections;UNKNOWN;HARD;1;UNKNOWN - Plugin Timed out (15 sec). There are multiple possible reasons for this, some of them include - The host rejk-p-tcs004 might just be really busy, it might not even be running Windows.
+Service Ok[05-04-2016 20:04:15] SERVICE ALERT: REJK-P-AOS001;Ax32Serv process;OK;HARD;1;OK - Found 1 Instance(s) of "Ax32Serv.exe" running (0 excluded). (List is on next line)
+Service Critical[05-04-2016 20:03:55] SERVICE ALERT: REJK-P-SQL003;Unprocessed TCS transactions;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+
+April 05, 2016 19:00
+
+Service Ok[05-04-2016 19:58:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 19:57:35] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[05-04-2016 19:53:25] SERVICE ALERT: REJK-P-SPS009;SPS EOD Distribution - Secondary Blacklist;WARNING;HARD;1;WARNING - 99% updated in 62 minutes - VCF: 50/0 (100%) - RVM: 41/1 (98%)
+Service Ok[05-04-2016 19:51:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 19:50:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 19:50:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 0 row(s) in prg.ObjTransactionBuffer
+Service Critical[05-04-2016 19:50:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Critical[05-04-2016 19:46:15] SERVICE ALERT: REJK-P-AOS001;Ax32Serv process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "Ax32Serv.exe" running (0 excluded).
+Service Ok[05-04-2016 19:35:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 19:34:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 19:34:15] SERVICE ALERT: REJK-P-AOS002;Ax32Serv process;OK;HARD;1;OK - Found 1 Instance(s) of "Ax32Serv.exe" running (0 excluded). (List is on next line)
+Service Ok[05-04-2016 19:31:35] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 19:30:35] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 19:25:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 0 row(s) in prg.ObjTransactionBuffer
+Service Critical[05-04-2016 19:25:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Ok[05-04-2016 19:06:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047020;OK;HARD;1;OK - MET_Amb_RVM_101 (047020) - 11 minutes since last transaction (0470201K.110)
+Service Ok[05-04-2016 19:06:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047005;OK;HARD;1;OK - MET_Fb_RVM_101 (047005) - 5 minutes since last transaction (0470051K.19C)
+Service Ok[05-04-2016 19:05:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 0 row(s) in prg.ObjTransactionBuffer
+Service Critical[05-04-2016 19:05:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Ok[05-04-2016 19:04:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 19:03:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[05-04-2016 19:02:15] SERVICE ALERT: REJK-P-AOS002;Ax32Serv process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "Ax32Serv.exe" running (0 excluded).
+Service Ok[05-04-2016 19:01:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048082;OK;HARD;1;OK - STO_Bit_RVM_101 (048082) - 1 minutes since last transaction (0480821K.A29)
+Service Ok[05-04-2016 19:01:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045134;OK;HARD;1;OK - ARR_Lm_RVM_101 (045134) - 1 minutes since last transaction (0451341K.2E9)
+
+April 05, 2016 18:00
+
+Service Ok[05-04-2016 18:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048153;OK;HARD;1;OK - STO_Li_RVM_101 (048153) - 16 minutes since last transaction (0481531K.37E)
+Service Unknown[05-04-2016 18:51:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047020;UNKNOWN;HARD;1;UNKNOWN - MET_Amb_RVM_101 (047020) - SPS link down
+Service Unknown[05-04-2016 18:51:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047005;UNKNOWN;HARD;1;UNKNOWN - MET_Fb_RVM_101 (047005) - SPS link down
+Service Unknown[05-04-2016 18:46:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048082;UNKNOWN;HARD;1;UNKNOWN - STO_Bit_RVM_101 (048082) - SPS link down
+Service Ok[05-04-2016 18:45:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Unknown[05-04-2016 18:44:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048153;UNKNOWN;HARD;1;UNKNOWN - STO_Li_RVM_101 (048153) - SPS link down
+Service Critical[05-04-2016 18:44:35] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 18:33:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 18:32:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 18:27:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 18:26:35] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 18:18:25] SERVICE ALERT: AccessPoints;AP1_Smedetoften_9_Frederikssund-10.71.88.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 18:17:25] SERVICE ALERT: AccessPoints;AP1_Smedetoften_9_Frederikssund-10.71.88.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 18:11:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 18:10:35] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 18:02:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 18:01:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+
+April 05, 2016 17:00
+
+Service Ok[05-04-2016 17:55:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[05-04-2016 17:55:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 4316 row(s) in prg.ObjTransactionBuffer - oldest insert at 2016-04-05 17:50:00
+Service Critical[05-04-2016 17:55:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Critical[05-04-2016 17:54:35] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 17:46:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;HARD;3;OK - Got reply from host
+Service Warning[05-04-2016 17:36:15] SERVICE ALERT: REJK-P-SMC002;Ram usage;WARNING;HARD;1;WARNING - 2.0% (333336 kB) free!
+Service Ok[05-04-2016 17:26:15] SERVICE ALERT: REJK-P-SMC002;Ram usage;OK;HARD;1;OK - 2.1% (334996 kB) free.
+Service Warning[05-04-2016 17:16:15] SERVICE ALERT: REJK-P-SMC002;Ram usage;WARNING;HARD;1;WARNING - 2.0% (334220 kB) free!
+Service Ok[05-04-2016 17:09:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[05-04-2016 17:08:35] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[05-04-2016 17:07:35] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+
+April 05, 2016 16:00
+
+Service Ok[05-04-2016 16:52:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[05-04-2016 16:51:35] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[05-04-2016 16:50:35] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[05-04-2016 16:46:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;HARD;3;Critical - No response from host!
+Service Critical[05-04-2016 16:45:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Ok[05-04-2016 16:44:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048152;OK;HARD;1;OK - STO_Hi_RVM_102 (048152) - 13 minutes since last transaction (0481521K.401)
+Service Critical[05-04-2016 16:44:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 16:41:25] SERVICE ALERT: REJK-P-SQL006;DynamicsPerf files usage - DBA;OK;HARD;1;OK - File usage is normal for DynamicsPerf
+Service Ok[05-04-2016 16:31:15] SERVICE ALERT: REJK-P-SMC002;Ram usage;OK;HARD;1;OK - 2.1% (336344 kB) free.
+Service Unknown[05-04-2016 16:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048152;UNKNOWN;HARD;1;UNKNOWN - STO_Hi_RVM_102 (048152) - SPS link down
+Service Warning[05-04-2016 16:26:15] SERVICE ALERT: REJK-P-SMC002;Ram usage;WARNING;HARD;1;WARNING - 2.0% (331784 kB) free!
+Service Ok[05-04-2016 16:14:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 16:13:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 16:05:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 16:04:35] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+
+April 05, 2016 15:00
+
+Service Ok[05-04-2016 15:59:35] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[05-04-2016 15:58:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[05-04-2016 15:58:35] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[05-04-2016 15:57:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[05-04-2016 15:56:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 15:55:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 0 row(s) in prg.ObjTransactionBuffer
+Service Critical[05-04-2016 15:55:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Ok[05-04-2016 15:44:15] SERVICE ALERT: REJK-P-SQL006;AX Session EndBlocked;OK;HARD;1;OK
+Service Ok[05-04-2016 15:36:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045009;OK;HARD;1;OK - NT_Sgb_RVM_101 (045009) - 50 minutes since last transaction (0450091K.D74)
+Service Critical[05-04-2016 15:33:15] SERVICE ALERT: REJK-P-SQL006;Job - Non-Persistent entities export DAT - SI;CRITICAL;HARD;1;CRITICAL - Job current status is Current Status: Error. Job is not able to execute as scheduled.
+Service Unknown[05-04-2016 15:21:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045009;UNKNOWN;HARD;1;UNKNOWN - NT_Sgb_RVM_101 (045009) - SPS link down
+Service Ok[05-04-2016 15:19:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[05-04-2016 15:18:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049508;OK;HARD;1;OK - DSB_Ap_RVM_101 (049508) - 3 minutes since last transaction (0495081K.251)
+Service Critical[05-04-2016 15:18:35] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 15:16:15] SERVICE ALERT: REJK-P-SMC002;Ram usage;OK;HARD;1;OK - 2.1% (338760 kB) free.
+Service Ok[05-04-2016 15:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049328;OK;HARD;1;OK - DSB_Th_RVM_101 (049328) - 404 minutes since last transaction (0493281K.7E6)
+Service Ok[05-04-2016 15:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049402;OK;HARD;1;OK - DSB_Fa_RVM_102 (049402) - 14 minutes since last transaction (0494021K.81C)
+Service Ok[05-04-2016 15:13:05] SERVICE ALERT: AccessPoints;AP1_Ostergade_25_Grinsted-10.85.101.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[05-04-2016 15:12:15] SERVICE ALERT: AccessPoints;AP1_Ostergade_25_Grinsted-10.85.101.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Ok[05-04-2016 15:11:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 15:11:15] SERVICE ALERT: AccessPoints;AP1_Ostergade_25_Grinsted-10.85.101.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[05-04-2016 15:10:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[05-04-2016 15:06:15] SERVICE ALERT: REJK-P-SMC002;Ram usage;WARNING;HARD;1;WARNING - 1.8% (286412 kB) free!
+Service Ok[05-04-2016 15:03:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 15:02:35] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+
+April 05, 2016 14:00
+
+Service Warning[05-04-2016 14:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045118;WARNING;HARD;1;WARNING - ARR_Rbn_RVM_101 (045118) - 1454 minutes since last transaction (0451181K.849)
+Service Unknown[05-04-2016 14:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049328;UNKNOWN;HARD;1;UNKNOWN - DSB_Th_RVM_101 (049328) - SPS link down
+Service Unknown[05-04-2016 14:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049402;UNKNOWN;HARD;1;UNKNOWN - DSB_Fa_RVM_102 (049402) - SPS link down
+Service Ok[05-04-2016 14:55:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 14:54:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 14:47:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 14:46:35] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 14:43:45] SERVICE ALERT: REJK-P-CIT005;Cpu usage;OK;HARD;1;OK (Sample Period 600 sec) - Average CPU Utilisation 3.64%
+Service Ok[05-04-2016 14:39:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Unknown[05-04-2016 14:38:55] SERVICE ALERT: REJK-P-CIT005;Cpu usage;UNKNOWN;HARD;1;UNKNOWN - Plugin Timed out (15 sec). There are multiple possible reasons for this, some of them include - The host rejk-p-cit005 might just be really busy, it might not even be running Windows.
+Service Critical[05-04-2016 14:38:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[05-04-2016 14:34:15] SERVICE ALERT: REJK-P-SQL006;AX Session EndBlocked;CRITICAL;HARD;1;CRITICAL - found 1 session(s) in status "Ending - Blocked"
+Service Ok[05-04-2016 14:31:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[05-04-2016 14:30:35] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[05-04-2016 14:29:35] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 14:23:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[05-04-2016 14:22:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[05-04-2016 14:21:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 14:13:35] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 14:12:35] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[05-04-2016 14:00:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045105;WARNING;HARD;1;WARNING - ARR_Sne_RVM_101 (045105) - 1453 minutes since last transaction (0451051K.543)
+
+April 05, 2016 13:00
+
+Service Ok[05-04-2016 13:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048153;OK;HARD;1;OK - STO_Li_RVM_101 (048153) - 12 minutes since last transaction (0481531K.36F)
+Service Warning[05-04-2016 13:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049566;WARNING;HARD;1;WARNING - DSB_Ko_RVM_101 (049566) - 1453 minutes since last transaction (0495661K.322)
+Service Ok[05-04-2016 13:59:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[05-04-2016 13:58:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[05-04-2016 13:57:35] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 13:51:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 13:50:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[05-04-2016 13:44:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048153;UNKNOWN;HARD;1;UNKNOWN - STO_Li_RVM_101 (048153) - SPS link down
+Service Ok[05-04-2016 13:35:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 13:34:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[05-04-2016 13:33:15] SERVICE ALERT: REJK-P-SQL006;Job - Non-Persistent entities export DAT - SI;WARNING;HARD;1;WARNING - Job has failed 1 times during past 3 executions, Current Status: Waiting
+Service Ok[05-04-2016 13:27:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Ok[05-04-2016 13:27:05] SERVICE ALERT: REJK-P-SQL006;Job - Payment journal posting TSM - BO;OK;HARD;1;OK, Current Status: Waiting
+Service Critical[05-04-2016 13:26:35] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[05-04-2016 13:25:35] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 13:19:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[05-04-2016 13:19:35] SERVICE ALERT: REJK-P-TCS018;IIS connections;OK;HARD;1;OK (Sample Period 59 sec) - Site Name="_Total", CurrentConnections=0, _ConnectionAttemptsPersec=0/sec
+Service Critical[05-04-2016 13:18:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[05-04-2016 13:18:35] SERVICE ALERT: REJK-P-TCS018;IIS connections;UNKNOWN;HARD;1;Collecting first WMI sample because the previous state data file (/tmp/cwpss_checkiisconnections_connections_rejkptcs018__TOTAL__.state) contained no data. Results will be shown the next time the plugin runs.
+Service Ok[05-04-2016 13:15:25] SERVICE ALERT: REJK-P-WEB005;IIS connections;OK;HARD;1;OK (Sample Period 57 sec) - Site Name="_Total", CurrentConnections=38, _ConnectionAttemptsPersec=0/sec
+Service Ok[05-04-2016 13:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049551;OK;HARD;1;OK - DSB_Svv_RVM_101 (049551) - 14 minutes since last transaction (0495511K.627)
+Service Warning[05-04-2016 13:13:35] SERVICE ALERT: REJK-P-WEB005;IIS connections;WARNING;HARD;1;WARNING (Sample Period 61 sec) - [Triggered by CurrentConnections>50] - Site Name="_Total", CurrentConnections=63, _ConnectionAttemptsPersec=1/sec
+Service Ok[05-04-2016 13:10:55] SERVICE ALERT: REJK-P-SQL006;Job - Payment journal posting TSJ - BO;OK;HARD;1;OK, Current Status: Waiting
+Service Ok[05-04-2016 13:07:35] SERVICE ALERT: AccessPoints;AP2_Stationsvej_5_Skaelskaer-10.84.25.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[05-04-2016 13:07:35] SERVICE ALERT: AccessPoints;AP2_Stationsvej_5_Skaelskor-10.84.25.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 13:06:45] SERVICE ALERT: AccessPoints;AP2_Stationsvej_5_Skaelskaer-10.84.25.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[05-04-2016 13:06:45] SERVICE ALERT: AccessPoints;AP2_Stationsvej_5_Skaelskor-10.84.25.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 13:06:35] SERVICE ALERT: REJK-P-SQL006;Job - Payment journal posting ATO - BO;OK;HARD;1;OK, Current Status: Waiting
+Service Ok[05-04-2016 13:05:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 0 row(s) in prg.ObjTransactionBuffer
+Service Critical[05-04-2016 13:00:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+
+April 05, 2016 12:00
+
+Service Ok[05-04-2016 12:55:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 12:54:35] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 12:48:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[05-04-2016 12:48:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045110;OK;HARD;1;OK - ARR_Vis_RVM_101 (045110) - 0 minutes since last transaction (0451103K.022)
+Service Critical[05-04-2016 12:47:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[05-04-2016 12:45:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045127;WARNING;HARD;1;WARNING - ARR_Vno_RVM_101 (045127) - 1454 minutes since last transaction (0451271K.3D8)
+Service Ok[05-04-2016 12:32:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 12:31:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 12:03:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049447;OK;HARD;1;OK - DSB_Hb_RVM_101 (049447) - 33 minutes since last transaction (0494471K.23E)
+Service Ok[05-04-2016 12:01:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 12:00:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+
+April 05, 2016 11:00
+
+Service Ok[05-04-2016 11:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049311;OK;HARD;1;OK - DSB_Øre_RVM_101 (049311) - 45 minutes since last transaction (0493113K.0A4)
+Service Ok[05-04-2016 11:54:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 11:53:35] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 11:51:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045009;OK;HARD;1;OK - NT_Sgb_RVM_101 (045009) - 65 minutes since last transaction (0450091K.D72)
+Service Ok[05-04-2016 11:48:45] SERVICE ALERT: REJK-P-CIT008;Cpu usage;OK;HARD;1;OK (Sample Period 600 sec) - Average CPU Utilisation 79.37%
+Service Unknown[05-04-2016 11:48:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049447;UNKNOWN;HARD;1;UNKNOWN - DSB_Hb_RVM_101 (049447) - SPS link down
+Service Unknown[05-04-2016 11:43:55] SERVICE ALERT: REJK-P-CIT008;Cpu usage;UNKNOWN;HARD;1;UNKNOWN - Plugin Timed out (15 sec). There are multiple possible reasons for this, some of them include - The host rejk-p-cit008 might just be really busy, it might not even be running Windows.
+Service Warning[05-04-2016 11:41:25] SERVICE ALERT: REJK-P-SQL006;DynamicsPerf files usage - DBA;WARNING;HARD;1;WARNING - 'DynamicsPerf' will try to grow by 500 MBs drive 'F:' have enough free space 467514 MBs available.
+Service Unknown[05-04-2016 11:36:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045009;UNKNOWN;HARD;1;UNKNOWN - NT_Sgb_RVM_101 (045009) - SPS link down
+Service Unknown[05-04-2016 11:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049311;UNKNOWN;HARD;1;UNKNOWN - DSB_Øre_RVM_101 (049311) - SPS link down
+Service Ok[05-04-2016 11:15:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 11:14:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 11:08:45] SERVICE ALERT: REJK-P-CIT008;Cpu usage;OK;HARD;1;OK (Sample Period 600 sec) - Average CPU Utilisation 62.03%
+Service Unknown[05-04-2016 11:03:55] SERVICE ALERT: REJK-P-CIT008;Cpu usage;UNKNOWN;HARD;1;UNKNOWN - Plugin Timed out (15 sec). There are multiple possible reasons for this, some of them include - The host rejk-p-cit008 might just be really busy, it might not even be running Windows.
+Service Unknown[05-04-2016 11:03:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045110;UNKNOWN;HARD;1;UNKNOWN - ARR_Vis_RVM_101 (045110) - SPS link down
+
+April 05, 2016 10:00
+
+Service Ok[05-04-2016 10:59:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[05-04-2016 10:58:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[05-04-2016 10:57:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 10:56:35] SERVICE ALERT: AccessPoints;AP1_Taksvej_11_Herning-10.87.38.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[05-04-2016 10:56:15] SERVICE ALERT: REJK-P-AOS003;Ax32Serv process;OK;HARD;1;OK - Found 1 Instance(s) of "Ax32Serv.exe" running (0 excluded). (List is on next line)
+Service Critical[05-04-2016 10:55:35] SERVICE ALERT: AccessPoints;AP1_Taksvej_11_Herning-10.87.38.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 10:50:45] SERVICE ALERT: AccessPoints;AP1_Jorgensgaardvej_33c_Logumkloster-10.85.114.20;OK;HARD;3;OK - Got reply from host
+Service Ok[05-04-2016 10:46:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049506;OK;HARD;1;OK - DSB_Sc_RVM_101 (049506) - 2731 minutes since last transaction (0495061K.072)
+Service Ok[05-04-2016 10:44:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049331;OK;HARD;1;OK - STO_Sol_RVM_101 (049331) - 119 minutes since last transaction (0493311K.028)
+Service Ok[05-04-2016 10:42:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 10:41:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[05-04-2016 10:38:05] SERVICE ALERT: REJK-P-AOS003;Ax32Serv process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "Ax32Serv.exe" running (0 excluded).
+Service Ok[05-04-2016 10:33:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045109;OK;HARD;1;OK - ARR_Trn_RVM_101 (045109) - 2 minutes since last transaction (0451093K.029)
+Service Unknown[05-04-2016 10:31:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049506;UNKNOWN;HARD;1;UNKNOWN - DSB_Sc_RVM_101 (049506) - SPS link down
+Service Unknown[05-04-2016 10:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049331;UNKNOWN;HARD;1;UNKNOWN - STO_Sol_RVM_101 (049331) - SPS link down
+Service Ok[05-04-2016 10:26:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 10:25:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 10:25:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 1341 row(s) in prg.ObjTransactionBuffer - oldest insert at 2016-04-05 10:20:05
+Service Ok[05-04-2016 10:23:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 10:22:35] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 10:21:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049510;OK;HARD;1;OK - DSB_Eb_RVM_101 (049510) - 6 minutes since last transaction (0495101K.26F)
+Service Critical[05-04-2016 10:20:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Ok[05-04-2016 10:10:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[05-04-2016 10:09:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[05-04-2016 10:08:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 10:07:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 10:06:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[05-04-2016 10:05:55] SERVICE ALERT: AccessPoints;AP1_Jorgensgaardvej_33c_Logumkloster-10.85.114.20;CRITICAL;HARD;3;Critical - No response from host!
+Service Critical[05-04-2016 10:04:55] SERVICE ALERT: AccessPoints;AP1_Jorgensgaardvej_33c_Logumkloster-10.85.114.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[05-04-2016 10:03:55] SERVICE ALERT: AccessPoints;AP1_Jorgensgaardvej_33c_Logumkloster-10.85.114.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[05-04-2016 10:03:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045109;UNKNOWN;HARD;1;UNKNOWN - ARR_Trn_RVM_101 (045109) - SPS link down
+
+April 05, 2016 09:00
+
+Service Ok[05-04-2016 09:53:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 09:52:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 09:37:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[05-04-2016 09:36:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Ok[05-04-2016 09:36:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 09:35:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[05-04-2016 09:35:35] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 09:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049909;OK;HARD;1;OK - DSB_TÃ¥t_RVM_101 (049909) - 0 minutes since last transaction (0499093K.081)
+Service Warning[05-04-2016 09:27:05] SERVICE ALERT: REJK-P-SQL006;Job - Payment journal posting TSM - BO;WARNING;HARD;1;WARNING - Job has failed 1 times during past 2 executions, Current Status: Waiting
+Service Ok[05-04-2016 09:20:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 09:19:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 09:16:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045108;OK;HARD;1;OK - ARR_Tdr_RVM_101 (045108) - 1 minutes since last transaction (0451083K.055)
+Service Ok[05-04-2016 09:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049331;OK;HARD;1;OK - STO_Sol_RVM_101 (049331) - 29 minutes since last transaction (0493311K.028)
+Service Unknown[05-04-2016 09:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049909;UNKNOWN;HARD;1;UNKNOWN - DSB_TÃ¥t_RVM_101 (049909) - SPS link down
+Service Warning[05-04-2016 09:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049551;WARNING;HARD;1;WARNING - DSB_Svv_RVM_101 (049551) - 1444 minutes since last transaction (0495511K.626)
+Service Warning[05-04-2016 09:10:55] SERVICE ALERT: REJK-P-SQL006;Job - Payment journal posting TSJ - BO;WARNING;HARD;1;WARNING - Job has failed 1 times during past 2 executions, Current Status: Waiting
+Service Ok[05-04-2016 09:08:05] SERVICE ALERT: REJK-P-AOS001;Ax32Serv process;OK;HARD;1;OK - Found 1 Instance(s) of "Ax32Serv.exe" running (0 excluded). (List is on next line)
+Service Warning[05-04-2016 09:06:35] SERVICE ALERT: REJK-P-SQL006;Job - Payment journal posting ATO - BO;WARNING;HARD;1;WARNING - Job has failed 1 times during past 2 executions, Current Status: Waiting
+Service Ok[05-04-2016 09:06:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049525;OK;HARD;1;OK - DSB_Vjs_RVM_101 (049525) - 2 minutes since last transaction (0495251K.387)
+Service Ok[05-04-2016 09:05:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[05-04-2016 09:04:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 09:04:35] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[05-04-2016 09:03:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+
+April 05, 2016 08:00
+
+Service Ok[05-04-2016 08:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048093;OK;HARD;1;OK - STO_Ig_RVM_101 (048093) - 14 minutes since last transaction (0480931K.556)
+Service Unknown[05-04-2016 08:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049331;UNKNOWN;HARD;1;UNKNOWN - STO_Sol_RVM_101 (049331) - SPS link down
+Service Ok[05-04-2016 08:48:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[05-04-2016 08:47:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[05-04-2016 08:46:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[05-04-2016 08:46:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045108;UNKNOWN;HARD;1;UNKNOWN - ARR_Tdr_RVM_101 (045108) - SPS link down
+Service Ok[05-04-2016 08:36:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048087;OK;HARD;1;OK - STO_Fl_RVM_101 (048087) - 6 minutes since last transaction (0480871K.4A1)
+Service Ok[05-04-2016 08:36:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048119;OK;HARD;1;OK - STO_Fs_RVM_101 (048119) - 21 minutes since last transaction (0481191K.6EE)
+Service Ok[05-04-2016 08:36:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048063;OK;HARD;1;OK - STO_Dyt_RVM_101 (048063) - 65 minutes since last transaction (0480631K.23B)
+Service Ok[05-04-2016 08:36:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048001;OK;HARD;1;OK - STO_Kj_RVM_101 (048001) - 97 minutes since last transaction (0480011K.6AA)
+Service Ok[05-04-2016 08:34:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 08:33:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 08:31:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Warning[05-04-2016 08:31:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045134;WARNING;HARD;1;WARNING - ARR_Lm_RVM_101 (045134) - 1453 minutes since last transaction (0451341K.2E8)
+Service Critical[05-04-2016 08:30:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[05-04-2016 08:30:15] SERVICE ALERT: REJK-P-AOS001;Ax32Serv process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "Ax32Serv.exe" running (0 excluded).
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;BCM_process;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;Boris Shift count;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;Boris connection count;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;BorisAppPool process;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;Certificate check;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;Cpu usage;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;Disk C: usage;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;Disk D: usage;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;EODAgentWCF process;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;FSVReceiver_process;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;FSVSender_process;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;FSVServer_process;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;HKP_BCM;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;HKP_FSVReceiver;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;HKP_FSVSender;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;HKP_FSVServer;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;HKP_Overall;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;HKP_RDBM_REQM;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;HKP_REM;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;HKP_ROSACleanupShutdown;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;HKP_ROSAEnabledServices;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;HKP_RSYS_AM;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;HKP_RSYS_LM;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;HKP_RVMA;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;HKP_SEC;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;IFS_Event;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;IIS connections;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;IIS requests;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;IIS transfers;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;IIS users;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;IIS worker process;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;NSClient;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;Netstat TCS;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;Network usage;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;RSysLnkMgr process;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;RVMALaunch process;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;Ram usage;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;SEC_SalManager_process;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;SEC_process;STOPPED; Service has exited from a period of scheduled downtime
+Service exited from a period of scheduled downtime[05-04-2016 08:26:48] SERVICE DOWNTIME ALERT: REJK-P-TCS005;TCS FSV Outgoing file age;STOPPED; Service has exited from a period of scheduled downtime
+Service Unknown[05-04-2016 08:21:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048087;UNKNOWN;HARD;1;UNKNOWN - STO_Fl_RVM_101 (048087) - SPS link down
+Service Unknown[05-04-2016 08:21:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048119;UNKNOWN;HARD;1;UNKNOWN - STO_Fs_RVM_101 (048119) - SPS link down
+Service Unknown[05-04-2016 08:21:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048063;UNKNOWN;HARD;1;UNKNOWN - STO_Dyt_RVM_101 (048063) - SPS link down
+Service Unknown[05-04-2016 08:21:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048001;UNKNOWN;HARD;1;UNKNOWN - STO_Kj_RVM_101 (048001) - SPS link down
+Service Ok[05-04-2016 08:18:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 08:17:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 08:16:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044601;OK;HARD;1;OK - MT_Mst_RVM_101 (044601) - 1 minutes since last transaction (0446011K.1D5)
+Service Ok[05-04-2016 08:15:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[05-04-2016 08:14:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[05-04-2016 08:13:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 08:12:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 08:11:35] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[05-04-2016 08:06:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045154;WARNING;HARD;1;WARNING - ARR_Sm_RVM_101 (045154) - 1441 minutes since last transaction (0451541K.300)
+Service Ok[05-04-2016 08:00:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045145;OK;HARD;1;OK - ARR_Hw_RVM_101 (045145) - 14 minutes since last transaction (0451451K.2E7)
+
+April 05, 2016 07:00
+
+Service Ok[05-04-2016 07:58:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 07:57:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 07:47:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[05-04-2016 07:46:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[05-04-2016 07:45:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[05-04-2016 07:44:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045161;CRITICAL;HARD;1;CRITICAL - ARR_Stu_RVM_101 (045161) - 58649 minutes since last transaction (0451613K.02A)
+Service Ok[05-04-2016 07:44:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045113;OK;HARD;1;OK - ARR_Æk_RVM_101 (045113) - 27 minutes since last transaction (0451131K.81E)
+Service Ok[05-04-2016 07:44:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045159;OK;HARD;1;OK - ARR_Td_RVM_101 (045159) - 1154 minutes since last transaction (0451591K.13C)
+Service Ok[05-04-2016 07:44:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049517;OK;HARD;1;OK - DSB_Hed_RVM_101 (049517) - 640 minutes since last transaction (0495171K.5B8)
+Service Ok[05-04-2016 07:44:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049501;OK;HARD;1;OK - DSB_Ng_RVM_101 (049501) - 96 minutes since last transaction (0495011K.2C6)
+Service Ok[05-04-2016 07:44:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049526;OK;HARD;1;OK - DSB_Jl_RVM_101 (049526) - 51 minutes since last transaction (0495261K.F72)
+Service Ok[05-04-2016 07:42:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[05-04-2016 07:41:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[05-04-2016 07:40:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 07:40:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 0 row(s) in prg.ObjTransactionBuffer
+Service Critical[05-04-2016 07:40:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Ok[05-04-2016 07:33:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049021;OK;HARD;1;OK - DSB_Hz_RVM_101 (049021) - 3 minutes since last transaction (0490211K.C10)
+Service Ok[05-04-2016 07:31:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045121;OK;HARD;1;OK - ARR_Tb_RVM_101 (045121) - 1 minutes since last transaction (0451211K.6CD)
+Service Unknown[05-04-2016 07:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045161;UNKNOWN;HARD;1;UNKNOWN - ARR_Stu_RVM_101 (045161) - SPS link down
+Service Unknown[05-04-2016 07:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045113;UNKNOWN;HARD;1;UNKNOWN - ARR_Æk_RVM_101 (045113) - SPS link down
+Service Unknown[05-04-2016 07:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045159;UNKNOWN;HARD;1;UNKNOWN - ARR_Td_RVM_101 (045159) - SPS link down
+Service Unknown[05-04-2016 07:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049517;UNKNOWN;HARD;1;UNKNOWN - DSB_Hed_RVM_101 (049517) - SPS link down
+Service Unknown[05-04-2016 07:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049501;UNKNOWN;HARD;1;UNKNOWN - DSB_Ng_RVM_101 (049501) - SPS link down
+Service Unknown[05-04-2016 07:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049526;UNKNOWN;HARD;1;UNKNOWN - DSB_Jl_RVM_101 (049526) - SPS link down
+Service Ok[05-04-2016 07:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049403;OK;HARD;1;OK - DSB_Tl_RVM_101 (049403) - 13 minutes since last transaction (0494031K.4A4)
+Service Ok[05-04-2016 07:25:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 07:24:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 07:23:35] SERVICE ALERT: REJK-P-SPS008;BCM_process;OK;HARD;1;OK - Found 1 Instance(s) of "BCM.x86.Service.exe" running (0 excluded). (List is on next line)
+Service Ok[05-04-2016 07:23:35] SERVICE ALERT: REJK-P-SPS008;DCP_Inserter_3_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded). (List is on next line)
+Service Ok[05-04-2016 07:23:35] SERVICE ALERT: REJK-P-SPS008;DCP_DataRecovery process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_DataRecoveryService.exe" running (0 excluded). (List is on next line)
+Service Ok[05-04-2016 07:23:35] SERVICE ALERT: REJK-P-SPS008;DCP_Inserter_2_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_2.exe" running (0 excluded). (List is on next line)
+Service Ok[05-04-2016 07:23:35] SERVICE ALERT: REJK-P-SPS008;DCP_Inserter_1_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_1.exe" running (0 excluded). (List is on next line)
+Service Ok[05-04-2016 07:22:15] SERVICE ALERT: REJK-P-SPS008;EQIRemoting process;OK;HARD;1;OK - Found 1 Instance(s) of "EQI.Remoting.exe" running (0 excluded). (List is on next line)
+Service Ok[05-04-2016 07:21:45] SERVICE ALERT: REJK-P-SPS008;EODAgentWCF process;OK;HARD;1;OK - Found 1 Instance(s) of "EOD.Agent.WCF.NET.exe" running (0 excluded). (List is on next line)
+Service Ok[05-04-2016 07:20:25] SERVICE ALERT: REJK-P-SPS008;HKP_Overall;OK;HARD;1;OK - RUNNING
+Service Ok[05-04-2016 07:20:25] SERVICE ALERT: REJK-P-SPS008;HKP_StartScheduledTasks;OK;HARD;1;OK - RUNNING
+Service Ok[05-04-2016 07:20:25] SERVICE ALERT: REJK-P-SPS008;HKP_StopScheduledTasks;OK;HARD;1;OK - RUNNING
+Service Ok[05-04-2016 07:20:25] SERVICE ALERT: REJK-P-SPS008;HKP_DCP;OK;HARD;1;OK - RUNNING
+Service Ok[05-04-2016 07:20:05] SERVICE ALERT: REJK-P-SPS008;DCP_Inserter_4_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_4.exe" running (0 excluded). (List is on next line)
+Service Ok[05-04-2016 07:20:05] SERVICE ALERT: REJK-P-SPS008;SEC_process;OK;HARD;1;OK - Found 1 Instance(s) of "SEC_KeyData.exe" running (0 excluded). (List is on next line)
+Service Ok[05-04-2016 07:20:05] SERVICE ALERT: REJK-P-SPS008;SmcGWEQI_process;OK;HARD;1;OK - Found 1 Instance(s) of "Smc.Gw.Level3.ServiceNT.exe" running (0 excluded). (List is on next line)
+Service Ok[05-04-2016 07:19:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045001;OK;HARD;1;OK - NT_Ken_RVM_101 (045001) - 934 minutes since last transaction (0450011K.616)
+Service Ok[05-04-2016 07:19:25] SERVICE ALERT: REJK-P-SPS008;HKP_BCM;OK;HARD;1;OK - RUNNING
+Service Ok[05-04-2016 07:19:25] SERVICE ALERT: REJK-P-SPS008;HKP_EQIComm;OK;HARD;1;OK - RUNNING
+Service Critical[05-04-2016 07:18:35] SERVICE ALERT: REJK-P-SPS008;BCM_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "BCM.x86.Service.exe" running (0 excluded).
+Service Critical[05-04-2016 07:18:35] SERVICE ALERT: REJK-P-SPS008;DCP_Inserter_3_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded).
+Service Critical[05-04-2016 07:18:35] SERVICE ALERT: REJK-P-SPS008;DCP_DataRecovery process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_DataRecoveryService.exe" running (0 excluded).
+Service Critical[05-04-2016 07:18:35] SERVICE ALERT: REJK-P-SPS008;DCP_Inserter_2_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_2.exe" running (0 excluded).
+Service Critical[05-04-2016 07:18:35] SERVICE ALERT: REJK-P-SPS008;DCP_Inserter_1_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_1.exe" running (0 excluded).
+Service Unknown[05-04-2016 07:18:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049021;UNKNOWN;HARD;1;UNKNOWN - DSB_Hz_RVM_101 (049021) - SPS link down
+Service Ok[05-04-2016 07:18:25] SERVICE ALERT: REJK-P-SPS008;HKP_EQIMain;OK;HARD;1;OK - RUNNING
+Service Critical[05-04-2016 07:17:15] SERVICE ALERT: REJK-P-SPS008;EQIRemoting process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "EQI.Remoting.exe" running (0 excluded).
+Service Critical[05-04-2016 07:16:45] SERVICE ALERT: REJK-P-SPS008;EODAgentWCF process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "EOD.Agent.WCF.NET.exe" running (0 excluded).
+Service Ok[05-04-2016 07:16:25] SERVICE ALERT: REJK-P-SPS008;HKP_FSVSender;OK;HARD;1;OK - RUNNING
+Service Ok[05-04-2016 07:16:25] SERVICE ALERT: REJK-P-SPS008;HKP_FSVReceiver;OK;HARD;1;OK - RUNNING
+Service Ok[05-04-2016 07:16:25] SERVICE ALERT: REJK-P-SPS008;HKP_FSVServer;OK;HARD;1;OK - RUNNING
+Service Ok[05-04-2016 07:16:25] SERVICE ALERT: REJK-P-SPS008;HKP_SMC_Gw_L3-Startup;OK;HARD;1;OK - RUNNING
+Service Ok[05-04-2016 07:16:25] SERVICE ALERT: REJK-P-SPS008;HKP_SMC_Gw_L3-Shutdown;OK;HARD;1;OK - RUNNING
+Service Ok[05-04-2016 07:16:25] SERVICE ALERT: REJK-P-SPS008;HKP_EQM;OK;HARD;1;OK - RUNNING
+Service Ok[05-04-2016 07:16:25] SERVICE ALERT: REJK-P-SPS008;HKP_SEC;OK;HARD;1;OK - RUNNING
+Service Ok[05-04-2016 07:16:25] SERVICE ALERT: REJK-P-SPS008;HKP_HouseKeepingShutdown;OK;HARD;1;OK - RUNNING
+Service Ok[05-04-2016 07:16:25] SERVICE ALERT: REJK-P-SPS008;HKP_HouseKeepingStartup;OK;HARD;1;OK - RUNNING
+Service Ok[05-04-2016 07:16:05] SERVICE ALERT: REJK-P-SPS001;DCP_Inserter_2_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_2.exe" running (0 excluded). (List is on next line)
+Service Ok[05-04-2016 07:16:05] SERVICE ALERT: REJK-P-SPS001;DCP_Inserter_1_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_1.exe" running (0 excluded). (List is on next line)
+Service Ok[05-04-2016 07:16:05] SERVICE ALERT: REJK-P-SPS008;EQIDriverCorba process;OK;HARD;1;OK - Found 1 Instance(s) of "EQI.Driver.Corba.exe" running (0 excluded). (List is on next line)
+Service Ok[05-04-2016 07:16:05] SERVICE ALERT: REJK-P-SPS001;DCP_DataRecovery process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_DataRecoveryService.exe" running (0 excluded). (List is on next line)
+Service Critical[05-04-2016 07:15:25] SERVICE ALERT: REJK-P-SPS008;HKP_StartScheduledTasks;CRITICAL;HARD;1;CRITICAL - UNKNOWN
+Service Critical[05-04-2016 07:15:25] SERVICE ALERT: REJK-P-SPS008;HKP_StopScheduledTasks;CRITICAL;HARD;1;CRITICAL - UNKNOWN
+Service Critical[05-04-2016 07:15:25] SERVICE ALERT: REJK-P-SPS008;HKP_DCP;CRITICAL;HARD;1;CRITICAL - UNKNOWN
+Service Critical[05-04-2016 07:15:25] SERVICE ALERT: REJK-P-SPS008;HKP_BCM;CRITICAL;HARD;1;CRITICAL - UNKNOWN
+Service Critical[05-04-2016 07:15:25] SERVICE ALERT: REJK-P-SPS008;HKP_EQIComm;CRITICAL;HARD;1;CRITICAL - UNKNOWN
+Service Critical[05-04-2016 07:15:25] SERVICE ALERT: REJK-P-SPS008;HKP_FSVSender;CRITICAL;HARD;1;CRITICAL - UNKNOWN
+Service Critical[05-04-2016 07:15:25] SERVICE ALERT: REJK-P-SPS008;HKP_FSVReceiver;CRITICAL;HARD;1;CRITICAL - UNKNOWN
+Service Critical[05-04-2016 07:15:25] SERVICE ALERT: REJK-P-SPS008;HKP_FSVServer;CRITICAL;HARD;1;CRITICAL - UNKNOWN
+Service Critical[05-04-2016 07:15:25] SERVICE ALERT: REJK-P-SPS008;HKP_SMC_Gw_L3-Startup;CRITICAL;HARD;1;CRITICAL - UNKNOWN
+Service Critical[05-04-2016 07:15:25] SERVICE ALERT: REJK-P-SPS008;HKP_SMC_Gw_L3-Shutdown;CRITICAL;HARD;1;CRITICAL - UNKNOWN
+Service Critical[05-04-2016 07:15:25] SERVICE ALERT: REJK-P-SPS008;HKP_EQM;CRITICAL;HARD;1;CRITICAL - UNKNOWN
+Service Critical[05-04-2016 07:15:25] SERVICE ALERT: REJK-P-SPS008;HKP_SEC;CRITICAL;HARD;1;CRITICAL - UNKNOWN
+Service Critical[05-04-2016 07:15:25] SERVICE ALERT: REJK-P-SPS008;HKP_HouseKeepingShutdown;CRITICAL;HARD;1;CRITICAL - UNKNOWN
+Service Critical[05-04-2016 07:15:25] SERVICE ALERT: REJK-P-SPS008;HKP_HouseKeepingStartup;CRITICAL;HARD;1;CRITICAL - UNKNOWN
+Service Critical[05-04-2016 07:15:05] SERVICE ALERT: REJK-P-SPS008;DCP_Inserter_4_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_4.exe" running (0 excluded).
+Service Critical[05-04-2016 07:15:05] SERVICE ALERT: REJK-P-SPS008;SEC_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "SEC_KeyData.exe" running (0 excluded).
+Service Critical[05-04-2016 07:15:05] SERVICE ALERT: REJK-P-SPS008;SmcGWEQI_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "Smc.Gw.Level3.ServiceNT.exe" running (0 excluded).
+Service Ok[05-04-2016 07:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045157;OK;HARD;1;OK - ARR_Vp_RVM_101 (045157) - 1 minutes since last transaction (0451571K.364)
+Service Ok[05-04-2016 07:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049351;OK;HARD;1;OK - DSB_Næ_RVM_102 (049351) - 21 minutes since last transaction (0493511K.53F)
+Service Ok[05-04-2016 07:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049331;OK;HARD;1;OK - STO_Sol_RVM_101 (049331) - 629 minutes since last transaction (0493311K.022)
+Service Ok[05-04-2016 07:14:45] SERVICE ALERT: REJK-P-SPS001;BCM_process;OK;HARD;1;OK - Found 1 Instance(s) of "BCM.x86.Service.exe" running (0 excluded). (List is on next line)
+Service Ok[05-04-2016 07:13:35] SERVICE ALERT: REJK-P-SPS001;EQIDriverCorba process;OK;HARD;1;OK - Found 1 Instance(s) of "EQI.Driver.Corba.exe" running (0 excluded). (List is on next line)
+Service Ok[05-04-2016 07:13:35] SERVICE ALERT: REJK-P-SPS001;DCP_Inserter_3_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded). (List is on next line)
+Service Ok[05-04-2016 07:13:35] SERVICE ALERT: REJK-P-SPS001;DCP_Inserter_4_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_4.exe" running (0 excluded). (List is on next line)
+Service Ok[05-04-2016 07:13:35] SERVICE ALERT: REJK-P-SPS001;EODAgentWCF process;OK;HARD;1;OK - Found 1 Instance(s) of "EOD.Agent.WCF.NET.exe" running (0 excluded). (List is on next line)
+Service Ok[05-04-2016 07:13:35] SERVICE ALERT: REJK-P-SPS001;EQIRemoting process;OK;HARD;1;OK - Found 1 Instance(s) of "EQI.Remoting.exe" running (0 excluded). (List is on next line)
+Service Ok[05-04-2016 07:12:35] SERVICE ALERT: REJK-P-SPS001;HKP_Overall;OK;HARD;1;OK - RUNNING
+Service Ok[05-04-2016 07:12:35] SERVICE ALERT: REJK-P-SPS001;HKP_StartScheduledTasks;OK;HARD;1;OK - RUNNING
+Service Ok[05-04-2016 07:12:35] SERVICE ALERT: REJK-P-SPS001;HKP_StopScheduledTasks;OK;HARD;1;OK - RUNNING
+Service Ok[05-04-2016 07:12:35] SERVICE ALERT: REJK-P-SPS001;HKP_DCP;OK;HARD;1;OK - RUNNING
+Service Ok[05-04-2016 07:12:35] SERVICE ALERT: REJK-P-SPS001;HKP_BCM;OK;HARD;1;OK - RUNNING
+Service Ok[05-04-2016 07:12:35] SERVICE ALERT: REJK-P-SPS001;HKP_EQIComm;OK;HARD;1;OK - RUNNING
+Service Ok[05-04-2016 07:11:35] SERVICE ALERT: REJK-P-SPS001;HKP_EQIMain;OK;HARD;1;OK - RUNNING
+Service Critical[05-04-2016 07:11:05] SERVICE ALERT: REJK-P-SPS001;DCP_Inserter_2_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_2.exe" running (0 excluded).
+Service Critical[05-04-2016 07:11:05] SERVICE ALERT: REJK-P-SPS001;DCP_Inserter_1_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_1.exe" running (0 excluded).
+Service Critical[05-04-2016 07:11:05] SERVICE ALERT: REJK-P-SPS001;DCP_DataRecovery process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_DataRecoveryService.exe" running (0 excluded).
+Service Critical[05-04-2016 07:09:45] SERVICE ALERT: REJK-P-SPS001;BCM_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "BCM.x86.Service.exe" running (0 excluded).
+Service Ok[05-04-2016 07:09:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 07:08:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 07:08:45] SERVICE ALERT: REJK-P-SPS001;HKP_FSVSender;OK;HARD;1;OK - RUNNING
+Service Critical[05-04-2016 07:08:35] SERVICE ALERT: REJK-P-SPS001;DCP_Inserter_3_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded).
+Service Critical[05-04-2016 07:08:35] SERVICE ALERT: REJK-P-SPS001;DCP_Inserter_4_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_4.exe" running (0 excluded).
+Service Critical[05-04-2016 07:08:35] SERVICE ALERT: REJK-P-SPS001;EODAgentWCF process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "EOD.Agent.WCF.NET.exe" running (0 excluded).
+Service Critical[05-04-2016 07:08:35] SERVICE ALERT: REJK-P-SPS001;EQIRemoting process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "EQI.Remoting.exe" running (0 excluded).
+Service Critical[05-04-2016 07:07:35] SERVICE ALERT: REJK-P-SPS001;HKP_StartScheduledTasks;CRITICAL;HARD;1;CRITICAL - STOPPED
+Service Critical[05-04-2016 07:07:35] SERVICE ALERT: REJK-P-SPS001;HKP_StopScheduledTasks;CRITICAL;HARD;1;CRITICAL - STOPPED
+Service Critical[05-04-2016 07:07:35] SERVICE ALERT: REJK-P-SPS001;HKP_DCP;CRITICAL;HARD;1;CRITICAL - STOPPED
+Service Critical[05-04-2016 07:07:35] SERVICE ALERT: REJK-P-SPS001;HKP_BCM;CRITICAL;HARD;1;CRITICAL - STOPPED
+Service Critical[05-04-2016 07:07:35] SERVICE ALERT: REJK-P-SPS001;HKP_EQIComm;CRITICAL;HARD;1;CRITICAL - STOPPED
+Service Critical[05-04-2016 07:07:35] SERVICE ALERT: REJK-P-SPS001;HKP_FSVSender;CRITICAL;HARD;1;CRITICAL - STOPPED
+Service Warning[05-04-2016 07:06:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049510;WARNING;HARD;1;WARNING - DSB_Eb_RVM_101 (049510) - 1446 minutes since last transaction (0495101K.26E)
+Service Unknown[05-04-2016 07:04:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045001;UNKNOWN;HARD;1;UNKNOWN - NT_Ken_RVM_101 (045001) - SPS link down
+Service Warning[05-04-2016 07:03:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045152;WARNING;HARD;1;WARNING - ARR_Rk_RVM_101 (045152) - 1443 minutes since last transaction (0451521K.2FC)
+Service Ok[05-04-2016 07:03:25] SERVICE ALERT: REJK-P-SPS009;SPS EOD Distribution - Action List;OK;HARD;1;OK - VCF: 50/0 (100%) - RVM: 41/0 (100%)
+Service Ok[05-04-2016 07:03:25] SERVICE ALERT: REJK-P-SPS009;SPS EOD Distribution - Secondary Blacklist;OK;HARD;1;OK - VCF: 50/0 (100%) - RVM: 41/0 (100%)
+Service Ok[05-04-2016 07:03:25] SERVICE ALERT: REJK-P-SPS009;SPS EOD Distribution - Primary Blacklist;OK;HARD;1;OK - VCF: 50/0 (100%) - RVM: 41/0 (100%)
+Service Warning[05-04-2016 07:00:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044600;WARNING;HARD;1;WARNING - MT_Trg_RVM_101 (044600) - 1445 minutes since last transaction (0446001K.186)
+
+April 05, 2016 06:00
+
+Service Warning[05-04-2016 06:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045157;WARNING;HARD;1;WARNING - ARR_Vp_RVM_101 (045157) - 1454 minutes since last transaction (0451571K.363)
+Service Unknown[05-04-2016 06:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049351;UNKNOWN;HARD;1;UNKNOWN - DSB_Næ_RVM_102 (049351) - SPS link down
+Service Unknown[05-04-2016 06:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049331;UNKNOWN;HARD;1;UNKNOWN - STO_Sol_RVM_101 (049331) - SPS link down
+Service Ok[05-04-2016 06:56:35] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 06:55:35] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[05-04-2016 06:53:35] SERVICE ALERT: REJK-P-SPS001;EQIDriverCorba process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "EQI.Driver.Corba.exe" running (0 excluded).
+Service Critical[05-04-2016 06:51:25] SERVICE ALERT: REJK-P-SPS008;HKP_Overall;CRITICAL;HARD;1;CRITICAL - PARTIALLYRUNNING
+Service Critical[05-04-2016 06:51:25] SERVICE ALERT: REJK-P-SPS008;HKP_EQIMain;CRITICAL;HARD;1;CRITICAL - ONERROR
+Service Critical[05-04-2016 06:51:05] SERVICE ALERT: REJK-P-SPS008;EQIDriverCorba process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "EQI.Driver.Corba.exe" running (0 excluded).
+Service Critical[05-04-2016 06:50:35] SERVICE ALERT: REJK-P-SPS001;HKP_Overall;CRITICAL;HARD;1;CRITICAL - PARTIALLYRUNNING
+Service Critical[05-04-2016 06:50:35] SERVICE ALERT: REJK-P-SPS001;HKP_EQIMain;CRITICAL;HARD;1;CRITICAL - ONERROR
+Service Ok[05-04-2016 06:38:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 06:37:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 06:31:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049555;OK;HARD;1;OK - DSB_Øs_RVM_101 (049555) - 45 minutes since last transaction (0495551K.596)
+Service Ok[05-04-2016 06:30:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049554;OK;HARD;1;OK - DSB_Bak_RVM_101 (049554) - 840 minutes since last transaction (0495541K.50C)
+Service Ok[05-04-2016 06:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047010;OK;HARD;1;OK - MET_Kgn_RVM_101 (047010) - 50 minutes since last transaction (0470101K.0ED)
+Service Ok[05-04-2016 06:25:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 0 row(s) in prg.ObjTransactionBuffer
+Service Ok[05-04-2016 06:22:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 06:21:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[05-04-2016 06:20:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Unknown[05-04-2016 06:16:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049555;UNKNOWN;HARD;1;UNKNOWN - DSB_Øs_RVM_101 (049555) - SPS link down
+Service Unknown[05-04-2016 06:15:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049554;UNKNOWN;HARD;1;UNKNOWN - DSB_Bak_RVM_101 (049554) - SPS link down
+Service Unknown[05-04-2016 06:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047010;UNKNOWN;HARD;1;UNKNOWN - MET_Kgn_RVM_101 (047010) - SPS link down
+Service Ok[05-04-2016 06:06:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 06:05:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 06:03:25] SERVICE ALERT: REJK-P-SPS008;FSV history out;OK;HARD;1;OK
+Service Ok[05-04-2016 06:01:15] SERVICE ALERT: REJK-P-SMC002;Ram usage;OK;HARD;1;OK - 3.2% (519144 kB) free.
+
+April 05, 2016 05:00
+
+Service Critical[05-04-2016 05:58:25] SERVICE ALERT: REJK-P-SPS008;FSV history out;CRITICAL;HARD;1;CRITICAL - modified time 1036 sec exceeded threshold of 900 sec
+Service Ok[05-04-2016 05:55:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[05-04-2016 05:54:35] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[05-04-2016 05:53:35] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 05:46:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049555;OK;HARD;1;OK - DSB_Øs_RVM_101 (049555) - 0 minutes since last transaction (0495551K.596)
+Service Ok[05-04-2016 05:35:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;HARD;3;OK - Got reply from host
+Service Ok[05-04-2016 05:23:35] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 05:22:35] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 05:21:05] SERVICE ALERT: REJK-P-INT002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 8GB - Used: 2.06GB (26%) - Free: 5.94GB (74%)
+Service Critical[05-04-2016 05:20:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;HARD;3;Critical - No response from host!
+Service Critical[05-04-2016 05:19:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[05-04-2016 05:18:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 05:15:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[05-04-2016 05:14:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[05-04-2016 05:13:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 05:11:45] SERVICE ALERT: REJK-P-MDL001;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 16GB - Used: 9.844GB (62%) - Free: 6.156GB (38%)
+Service Warning[05-04-2016 05:11:05] SERVICE ALERT: REJK-P-INT002;Ram usage;WARNING;HARD;1;WARNING - [Triggered by _MemUsed%>90] - Physical Memory: Total: 8GB - Used: 7.602GB (95%) - Free: 407.102MB (5%)
+Service Ok[05-04-2016 05:03:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 05:02:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+
+April 05, 2016 04:00
+
+Service Ok[05-04-2016 04:58:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 04:57:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 04:51:05] SERVICE ALERT: REJK-P-SPS005;FSV history out;OK;HARD;1;OK
+Service Ok[05-04-2016 04:50:05] SERVICE ALERT: REJK-P-SPS009;FSV history out;OK;HARD;1;OK
+Service Ok[05-04-2016 04:47:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;HARD;3;OK - Got reply from host
+Service Critical[05-04-2016 04:46:05] SERVICE ALERT: REJK-P-SPS005;FSV history out;CRITICAL;HARD;1;CRITICAL - modified time 922 sec exceeded threshold of 900 sec
+Service Ok[05-04-2016 04:44:15] SERVICE ALERT: REJK-P-SPS004;FSV history out;OK;HARD;1;OK
+Service Ok[05-04-2016 04:42:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 04:41:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[05-04-2016 04:36:05] SERVICE ALERT: REJK-P-INT002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>95] - Physical Memory: Total: 8GB - Used: 7.641GB (96%) - Free: 366.867MB (4%)
+Service Warning[05-04-2016 04:31:05] SERVICE ALERT: REJK-P-INT002;Ram usage;WARNING;HARD;1;WARNING - [Triggered by _MemUsed%>90] - Physical Memory: Total: 8GB - Used: 7.433GB (93%) - Free: 580.395MB (7%)
+Service Critical[05-04-2016 04:30:05] SERVICE ALERT: REJK-P-SPS009;FSV history out;CRITICAL;HARD;1;CRITICAL - modified time 1187 sec exceeded threshold of 900 sec
+Service Critical[05-04-2016 04:29:15] SERVICE ALERT: REJK-P-SPS004;FSV history out;CRITICAL;HARD;1;CRITICAL - modified time 1180 sec exceeded threshold of 900 sec
+Service Ok[05-04-2016 04:28:25] SERVICE ALERT: REJK-P-SPS008;FSV history out;OK;HARD;1;OK
+Service Ok[05-04-2016 04:26:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[05-04-2016 04:25:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[05-04-2016 04:24:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[05-04-2016 04:18:25] SERVICE ALERT: REJK-P-SPS008;FSV history out;CRITICAL;HARD;1;CRITICAL - modified time 1186 sec exceeded threshold of 900 sec
+Service Critical[05-04-2016 04:17:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;HARD;3;Critical - No response from host!
+Service Critical[05-04-2016 04:16:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Ok[05-04-2016 04:16:05] SERVICE ALERT: REJK-P-SMC003;Ram usage;OK;HARD;1;OK - 4.0% (646888 kB) free.
+Service Critical[05-04-2016 04:15:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 04:09:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 04:08:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[05-04-2016 04:06:05] SERVICE ALERT: REJK-P-SMC003;Ram usage;WARNING;HARD;1;WARNING - 1.3% (217244 kB) free!
+Service Ok[05-04-2016 04:03:35] SERVICE ALERT: REJK-P-MDL002;MDL incoming files queue;OK;HARD;1;OK
+Service Ok[05-04-2016 04:03:35] SERVICE ALERT: REJK-P-MDL001;MDL incoming files queue;OK;HARD;1;OK
+Service Ok[05-04-2016 04:00:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Ok[05-04-2016 04:00:35] SERVICE ALERT: REJK-P-MDL001;MDL incoming files age;OK;HARD;1;OK
+
+April 05, 2016 03:00
+
+Service Critical[05-04-2016 03:59:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[05-04-2016 03:58:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[05-04-2016 03:56:05] SERVICE ALERT: REJK-P-SMC003;Ram usage;CRITICAL;HARD;1;CRITICAL - 1.0% (165644 kB) free!
+Service Ok[05-04-2016 03:54:25] SERVICE ALERT: REJK-P-MDL002;MDL incoming files age;OK;HARD;1;OK
+Service Ok[05-04-2016 03:53:35] SERVICE ALERT: REJK-P-MDL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 16GB - Used: 13.443GB (84%) - Free: 2.557GB (16%)
+Service Warning[05-04-2016 03:51:05] SERVICE ALERT: REJK-P-SMC003;Ram usage;WARNING;HARD;1;WARNING - 1.1% (175012 kB) free!
+Service Ok[05-04-2016 03:47:15] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_4_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_4.exe" running (0 excluded). (List is on next line)
+Service Critical[05-04-2016 03:46:45] SERVICE ALERT: REJK-P-MDL001;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>95] - Physical Memory: Total: 16GB - Used: 15.405GB (96%) - Free: 608.977MB (4%)
+Service Ok[05-04-2016 03:46:05] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_3_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded). (List is on next line)
+Service Ok[05-04-2016 03:46:05] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_2_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_2.exe" running (0 excluded). (List is on next line)
+Service Critical[05-04-2016 03:45:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049505;CRITICAL;HARD;1;CRITICAL - DSB_Tp_RVM_101 (049505) - 3689 minutes since last transaction (0495051K.222)
+Service Ok[05-04-2016 03:44:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049551;OK;HARD;1;OK - DSB_Svv_RVM_101 (049551) - 1114 minutes since last transaction (0495511K.626)
+Service Ok[05-04-2016 03:43:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[05-04-2016 03:43:35] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_2_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_2.exe" running (0 excluded). (List is on next line)
+Service Ok[05-04-2016 03:43:15] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_1_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_1.exe" running (0 excluded). (List is on next line)
+Service Ok[05-04-2016 03:43:15] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_4_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_4.exe" running (0 excluded). (List is on next line)
+Service Ok[05-04-2016 03:43:15] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_1_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_1.exe" running (0 excluded). (List is on next line)
+Service Ok[05-04-2016 03:43:15] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_3_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded). (List is on next line)
+Service Critical[05-04-2016 03:42:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 03:38:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[05-04-2016 03:37:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[05-04-2016 03:36:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[05-04-2016 03:33:25] SERVICE ALERT: REJK-P-SPS009;SPS EOD Distribution - Primary Blacklist;WARNING;HARD;1;WARNING - 99% updated in 63 minutes - VCF: 49/0 (100%) - RVM: 41/1 (98%)
+Service Warning[05-04-2016 03:31:45] SERVICE ALERT: REJK-P-MDL001;Ram usage;WARNING;HARD;1;WARNING - [Triggered by _MemUsed%>90] - Physical Memory: Total: 16GB - Used: 14.637GB (91%) - Free: 1.362GB (9%)
+Service Unknown[05-04-2016 03:30:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049505;UNKNOWN;HARD;1;UNKNOWN - DSB_Tp_RVM_101 (049505) - SPS link down
+Service Unknown[05-04-2016 03:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049551;UNKNOWN;HARD;1;UNKNOWN - DSB_Svv_RVM_101 (049551) - SPS link down
+Service Critical[05-04-2016 03:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049945;CRITICAL;HARD;1;CRITICAL - RVM_Test1 (049945) - 20938 minutes since last transaction (0499453K.020)
+Service Critical[05-04-2016 03:28:35] SERVICE ALERT: REJK-P-MDL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>95] - Physical Memory: Total: 16GB - Used: 15.367GB (96%) - Free: 647.215MB (4%)
+Service Ok[05-04-2016 03:27:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 03:26:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 03:22:35] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 03:21:35] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 03:21:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 03:20:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[05-04-2016 03:16:05] SERVICE ALERT: REJK-P-MDL001;MDL incoming files age;WARNING;HARD;1;WARNING - modified time 4483 sec exceeded threshold of 3600 sec
+Service Unknown[05-04-2016 03:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049945;UNKNOWN;HARD;1;UNKNOWN - RVM_Test1 (049945) - SPS link down
+Service Warning[05-04-2016 03:13:25] SERVICE ALERT: REJK-P-MDL002;Ram usage;WARNING;HARD;1;WARNING - [Triggered by _MemUsed%>90] - Physical Memory: Total: 16GB - Used: 14.694GB (92%) - Free: 1.306GB (8%)
+Service Ok[05-04-2016 03:11:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 03:10:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 03:10:05] SERVICE ALERT: REJK-P-AOS004;Ax32Serv process;OK;HARD;1;OK - Found 1 Instance(s) of "Ax32Serv.exe" running (0 excluded). (List is on next line)
+Service Warning[05-04-2016 03:09:55] SERVICE ALERT: REJK-P-MDL002;MDL incoming files age;WARNING;HARD;1;WARNING - modified time 4056 sec exceeded threshold of 3600 sec
+Service Ok[05-04-2016 03:05:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[05-04-2016 03:04:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[05-04-2016 03:03:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+
+April 05, 2016 02:00
+
+Service Critical[05-04-2016 02:56:15] SERVICE ALERT: REJK-P-AOS004;Ax32Serv process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "Ax32Serv.exe" running (0 excluded).
+Service Ok[05-04-2016 02:55:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 02:54:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 02:51:05] SERVICE ALERT: REJK-P-SMC003;Ram usage;OK;HARD;1;OK - 3.9% (637100 kB) free.
+Service Ok[05-04-2016 02:47:05] SERVICE ALERT: REJK-P-SPS010;FSV history in;OK;HARD;1;OK
+Service Ok[05-04-2016 02:43:25] SERVICE ALERT: REJK-P-SPS002;FSV history in;OK;HARD;1;OK
+Service Ok[05-04-2016 02:43:25] SERVICE ALERT: REJK-P-SPS004;FSV history in;OK;HARD;1;OK
+Service Ok[05-04-2016 02:42:05] SERVICE ALERT: REJK-P-SPS006;FSV history in;OK;HARD;1;OK
+Service Ok[05-04-2016 02:42:05] SERVICE ALERT: REJK-P-SPS008;FSV history in;OK;HARD;1;OK
+Service Ok[05-04-2016 02:41:35] SERVICE ALERT: REJK-P-SPS005;FSV history in;OK;HARD;1;OK
+Service Ok[05-04-2016 02:41:05] SERVICE ALERT: REJK-P-SPS009;FSV history in;OK;HARD;1;OK
+Service Warning[05-04-2016 02:41:05] SERVICE ALERT: REJK-P-SMC003;Ram usage;WARNING;HARD;1;WARNING - 1.1% (181912 kB) free!
+Service Ok[05-04-2016 02:40:15] SERVICE ALERT: AccessPoints;AP2_Baldershoj_3_Ishoj-10.71.69.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[05-04-2016 02:40:05] SERVICE ALERT: REJK-P-SPS003;FSV history in;OK;HARD;1;OK
+Service Ok[05-04-2016 02:40:05] SERVICE ALERT: REJK-P-SPS007;FSV history in;OK;HARD;1;OK
+Service Ok[05-04-2016 02:39:55] SERVICE ALERT: REJK-P-SPS001;FSV history in;OK;HARD;1;OK
+Service Ok[05-04-2016 02:39:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 02:39:25] SERVICE ALERT: AccessPoints;AP2_Baldershoj_3_Ishoj-10.71.69.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[05-04-2016 02:38:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[05-04-2016 02:37:05] SERVICE ALERT: REJK-P-SPS010;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 2084 sec exceeded threshold of 1800 sec
+Service Critical[05-04-2016 02:36:35] SERVICE ALERT: REJK-P-SPS005;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 2095 sec exceeded threshold of 1800 sec
+Service Critical[05-04-2016 02:36:05] SERVICE ALERT: REJK-P-SPS009;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 2070 sec exceeded threshold of 1800 sec
+Service Critical[05-04-2016 02:35:05] SERVICE ALERT: REJK-P-SPS003;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 1943 sec exceeded threshold of 1800 sec
+Service Critical[05-04-2016 02:35:05] SERVICE ALERT: REJK-P-SPS007;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 2008 sec exceeded threshold of 1800 sec
+Service Critical[05-04-2016 02:34:55] SERVICE ALERT: REJK-P-SPS001;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 2005 sec exceeded threshold of 1800 sec
+Service Critical[05-04-2016 02:33:25] SERVICE ALERT: REJK-P-SPS002;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 1919 sec exceeded threshold of 1800 sec
+Service Critical[05-04-2016 02:33:25] SERVICE ALERT: REJK-P-SPS004;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 1837 sec exceeded threshold of 1800 sec
+Service Ok[05-04-2016 02:33:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 02:32:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[05-04-2016 02:32:05] SERVICE ALERT: REJK-P-SPS006;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 1824 sec exceeded threshold of 1800 sec
+Service Critical[05-04-2016 02:32:05] SERVICE ALERT: REJK-P-SPS008;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 1837 sec exceeded threshold of 1800 sec
+Service Ok[05-04-2016 02:23:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 02:22:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 02:17:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 02:16:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 02:06:35] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[05-04-2016 02:06:05] SERVICE ALERT: REJK-P-SQL003;Boris connections;OK;HARD;1;OK - Number of BORIS TCRW connected: 261
+Service Critical[05-04-2016 02:05:35] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[05-04-2016 02:03:35] SERVICE ALERT: REJK-P-MDL002;MDL incoming files queue;CRITICAL;HARD;1;CRITICAL - count 1445 exceeded threshold of 1000
+Service Critical[05-04-2016 02:03:35] SERVICE ALERT: REJK-P-MDL001;MDL incoming files queue;CRITICAL;HARD;1;CRITICAL - count 1892 exceeded threshold of 1000
+Service Critical[05-04-2016 02:03:35] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_2_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_2.exe" running (0 excluded).
+Service Critical[05-04-2016 02:03:15] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_1_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_1.exe" running (0 excluded).
+Service Critical[05-04-2016 02:03:15] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_4_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_4.exe" running (0 excluded).
+Service Critical[05-04-2016 02:03:15] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_1_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_1.exe" running (0 excluded).
+Service Critical[05-04-2016 02:03:15] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_3_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded).
+Service Critical[05-04-2016 02:02:15] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_4_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_4.exe" running (0 excluded).
+Service Ok[05-04-2016 02:01:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 02:01:05] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_3_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded).
+Service Critical[05-04-2016 02:01:05] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_2_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_2.exe" running (0 excluded).
+Service Critical[05-04-2016 02:00:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+
+April 05, 2016 01:00
+
+Service Ok[05-04-2016 01:54:05] SERVICE ALERT: REJK-P-AOS004;Ax32Serv process;OK;HARD;1;OK - Found 1 Instance(s) of "Ax32Serv.exe" running (0 excluded). (List is on next line)
+Service Ok[05-04-2016 01:52:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 01:51:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 01:45:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 01:44:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 01:36:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[05-04-2016 01:35:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[05-04-2016 01:34:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 01:29:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 01:28:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 01:21:05] SERVICE ALERT: REJK-P-SMC003;Ram usage;OK;HARD;1;OK - 2.5% (400512 kB) free.
+Service Warning[05-04-2016 01:16:05] SERVICE ALERT: REJK-P-SMC003;Ram usage;WARNING;HARD;1;WARNING - 1.3% (205100 kB) free!
+Service Ok[05-04-2016 01:13:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 01:12:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[05-04-2016 01:12:05] SERVICE ALERT: REJK-P-AOS004;Ax32Serv process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "Ax32Serv.exe" running (0 excluded).
+Service Critical[05-04-2016 01:11:05] SERVICE ALERT: REJK-P-SMC003;Ram usage;CRITICAL;HARD;1;CRITICAL - 0.9% (151520 kB) free!
+Service Warning[05-04-2016 01:06:15] SERVICE ALERT: REJK-P-SMC002;Ram usage;WARNING;HARD;1;WARNING - 1.2% (193472 kB) free!
+
+April 05, 2016 00:00
+
+Service Ok[05-04-2016 00:57:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 00:56:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 00:49:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 00:48:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 00:33:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 00:32:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[05-04-2016 00:30:05] SERVICE ALERT: REJK-P-BCM003;RCOB Under Production;WARNING;HARD;1;WARNING - oldest order in status "Under Production": 2016-04-01 07:13:47
+Service Ok[05-04-2016 00:11:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[05-04-2016 00:10:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Ok[05-04-2016 00:10:05] SERVICE ALERT: REJK-P-SPS003;FSV history in;OK;HARD;1;OK
+Service Ok[05-04-2016 00:10:05] SERVICE ALERT: REJK-P-SPS009;FSV history out;OK;HARD;1;OK
+Service Ok[05-04-2016 00:09:55] SERVICE ALERT: REJK-P-SPS001;FSV history in;OK;HARD;1;OK
+Service Critical[05-04-2016 00:09:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[05-04-2016 00:08:25] SERVICE ALERT: REJK-P-SPS008;FSV history out;OK;HARD;1;OK
+Service Ok[05-04-2016 00:07:05] SERVICE ALERT: REJK-P-SPS010;FSV history out;OK;HARD;1;OK
+Service Ok[05-04-2016 00:07:05] SERVICE ALERT: REJK-P-SPS010;FSV history in;OK;HARD;1;OK
+Service Ok[05-04-2016 00:07:05] SERVICE ALERT: REJK-P-SPS006;FSV history in;OK;HARD;1;OK
+Service Ok[05-04-2016 00:07:05] SERVICE ALERT: REJK-P-SPS008;FSV history in;OK;HARD;1;OK
+Service Ok[05-04-2016 00:06:35] SERVICE ALERT: REJK-P-SPS005;FSV history in;OK;HARD;1;OK
+Service Ok[05-04-2016 00:06:05] SERVICE ALERT: REJK-P-SPS001;FSV history out;OK;HARD;1;OK
+Service Ok[05-04-2016 00:06:05] SERVICE ALERT: REJK-P-SPS009;FSV history in;OK;HARD;1;OK
+Service Ok[05-04-2016 00:06:05] SERVICE ALERT: REJK-P-SPS005;FSV history out;OK;HARD;1;OK
+Service Critical[05-04-2016 00:05:05] SERVICE ALERT: REJK-P-SPS003;FSV history in;CRITICAL;HARD;1;CRITICAL - smb://rejk-p-sps003/D$/IFSBOData/FSV/Incoming_histo/20160405/FSV_HistoIncoming.txt not found
+Service Critical[05-04-2016 00:05:05] SERVICE ALERT: REJK-P-SPS009;FSV history out;CRITICAL;HARD;1;CRITICAL - smb://rejk-p-sps009/D$/IFSBOData/FSV/Outgoing_histo/20160405/FSV_HistoOutgoing.txt not found
+Service Critical[05-04-2016 00:04:55] SERVICE ALERT: REJK-P-SPS001;FSV history in;CRITICAL;HARD;1;CRITICAL - smb://rejk-p-sps001/D$/IFSBOData/FSV/Incoming_histo/20160405/FSV_HistoIncoming.txt not found
+Service Ok[05-04-2016 00:03:55] SERVICE ALERT: REJK-P-SQL003;Unprocessed TCS transactions;OK;HARD;1;OK
+Service Critical[05-04-2016 00:03:25] SERVICE ALERT: REJK-P-SPS008;FSV history out;CRITICAL;HARD;1;CRITICAL - smb://rejk-p-sps008/D$/IFSBOData/FSV/Outgoing_histo/20160405/FSV_HistoOutgoing.txt not found
+Service Ok[05-04-2016 00:02:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[05-04-2016 00:02:05] SERVICE ALERT: REJK-P-SPS010;FSV history out;CRITICAL;HARD;1;CRITICAL - smb://rejk-p-sps010/D$/IFSBOData/FSV/Outgoing_histo/20160405/FSV_HistoOutgoing.txt not found
+Service Critical[05-04-2016 00:02:05] SERVICE ALERT: REJK-P-SPS010;FSV history in;CRITICAL;HARD;1;CRITICAL - smb://rejk-p-sps010/D$/IFSBOData/FSV/Incoming_histo/20160405/FSV_HistoIncoming.txt not found
+Service Critical[05-04-2016 00:02:05] SERVICE ALERT: REJK-P-SPS006;FSV history in;CRITICAL;HARD;1;CRITICAL - smb://rejk-p-sps006/D$/IFSBOData/FSV/Incoming_histo/20160405/FSV_HistoIncoming.txt not found
+Service Critical[05-04-2016 00:02:05] SERVICE ALERT: REJK-P-SPS008;FSV history in;CRITICAL;HARD;1;CRITICAL - smb://rejk-p-sps008/D$/IFSBOData/FSV/Incoming_histo/20160405/FSV_HistoIncoming.txt not found
+Service Critical[05-04-2016 00:01:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[05-04-2016 00:01:35] SERVICE ALERT: REJK-P-SPS005;FSV history in;CRITICAL;HARD;1;CRITICAL - smb://rejk-p-sps005/D$/IFSBOData/FSV/Incoming_histo/20160405/FSV_HistoIncoming.txt not found
+Service Critical[05-04-2016 00:01:05] SERVICE ALERT: REJK-P-SPS001;FSV history out;CRITICAL;HARD;1;CRITICAL - smb://rejk-p-sps001/D$/IFSBOData/FSV/Outgoing_histo/20160405/FSV_HistoOutgoing.txt not found
+Service Critical[05-04-2016 00:01:05] SERVICE ALERT: REJK-P-SPS009;FSV history in;CRITICAL;HARD;1;CRITICAL - smb://rejk-p-sps009/D$/IFSBOData/FSV/Incoming_histo/20160405/FSV_HistoIncoming.txt not found
+Service Critical[05-04-2016 00:01:05] SERVICE ALERT: REJK-P-SPS005;FSV history out;CRITICAL;HARD;1;CRITICAL - smb://rejk-p-sps005/D$/IFSBOData/FSV/Outgoing_histo/20160405/FSV_HistoOutgoing.txt not found
+Service Ok[05-04-2016 00:00:05] SERVICE ALERT: REJK-P-BCM003;RCOB import directory count;OK;HARD;1;OK
+
+Alert History
+Last Updated: Tue Apr 12 15:21:51 CEST 2016
+Nagios® Core™ 3.4.1 - www.nagios.org
+Logged in as ThalesMNI
+View Status Detail For All Hosts
+View Notifications For All Hosts
+All Hosts and Services
+
+Earlier Archive
+Earlier Archive
+Log File Navigation
+Sat Apr 2 00:00:00 CEST 2016
+to
+Sun Apr 3 00:00:00 CEST 2016 More Recent Archive
+More Recent Archive
+
+File: /var/log/nagios/archives/nagios-04-03-2016-00.log
+State type options:
+
+History detail level for all hosts:
+
+ Hide Flapping Alerts
+ Hide Downtime Alerts
+ Hide Process Messages
+ Older Entries First
+Update
+
+April 02, 2016 23:00
+
+Service Ok[02-04-2016 23:55:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 23:54:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 23:51:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049921;OK;HARD;1;OK - DSB_Re_RVM_101 (049921) - 200 minutes since last transaction (0499211K.9C3)
+Service Ok[02-04-2016 23:51:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048119;OK;HARD;1;OK - STO_Fs_RVM_101 (048119) - 65 minutes since last transaction (0481191K.697)
+Service Ok[02-04-2016 23:51:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048519;OK;HARD;1;OK - DSB_So_RVM_101 (048519) - 50 minutes since last transaction (0485191K.880)
+Service Ok[02-04-2016 23:51:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048087;OK;HARD;1;OK - STO_Fl_RVM_101 (048087) - 51 minutes since last transaction (0480871K.478)
+Service Ok[02-04-2016 23:51:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049386;OK;HARD;1;OK - DSB_Kn_RVM_106 (049386) - 11 minutes since last transaction (0493861K.395)
+Service Ok[02-04-2016 23:51:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049906;OK;HARD;1;OK - DSB_Htå_RVM_101 (049906) - 12 minutes since last transaction (0499061K.4CB)
+Service Ok[02-04-2016 23:51:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049510;OK;HARD;1;OK - DSB_Eb_RVM_101 (049510) - 470 minutes since last transaction (0495101K.26B)
+Service Ok[02-04-2016 23:51:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047020;OK;HARD;1;OK - MET_Amb_RVM_101 (047020) - 126 minutes since last transaction (0470201K.07A)
+Service Ok[02-04-2016 23:51:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048148;OK;HARD;1;OK - STO_Hot_RVM_101 (048148) - 50 minutes since last transaction (0481481K.94A)
+Service Ok[02-04-2016 23:51:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048001;OK;HARD;1;OK - STO_Kj_RVM_101 (048001) - 470 minutes since last transaction (0480011K.6A6)
+Service Ok[02-04-2016 23:51:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048063;OK;HARD;1;OK - STO_Dyt_RVM_101 (048063) - 65 minutes since last transaction (0480631K.21E)
+Service Ok[02-04-2016 23:51:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048105;OK;HARD;1;OK - STO_Ist_RVM_101 (048105) - 35 minutes since last transaction (0481051K.86B)
+Service Ok[02-04-2016 23:46:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 23:45:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[02-04-2016 23:43:25] SERVICE ALERT: REJK-P-SPS009;SPS EOD Distribution - Primary Blacklist;WARNING;HARD;1;WARNING - 99% updated in 1273 minutes - VCF: 47/0 (100%) - RVM: 41/1 (98%)
+Service Critical[02-04-2016 23:43:25] SERVICE ALERT: REJK-P-SPS009;SPS EOD Distribution - Action List;CRITICAL;HARD;1;CRITICAL - 1 devices (RVM or VCF) has EOD older than previous version
+Service Critical[02-04-2016 23:43:25] SERVICE ALERT: REJK-P-SPS009;SPS EOD Distribution - Secondary Blacklist;CRITICAL;HARD;1;CRITICAL - 1 devices (RVM or VCF) has EOD older than previous version
+Service Ok[02-04-2016 23:39:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[02-04-2016 23:38:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Ok[02-04-2016 23:38:25] SERVICE ALERT: REJK-P-SPS009;SPS EOD Distribution - Primary Blacklist;OK;HARD;1;OK - VCF: 43/0 (100%) - RVM: 22/0 (100%)
+Service Ok[02-04-2016 23:38:25] SERVICE ALERT: REJK-P-SPS009;SPS EOD Distribution - Action List;OK;HARD;1;OK - VCF: 0/43 (0%) - RVM: 0/22 (0%)
+Service Ok[02-04-2016 23:38:25] SERVICE ALERT: REJK-P-SPS009;SPS EOD Distribution - Secondary Blacklist;OK;HARD;1;OK - VCF: 43/0 (100%) - RVM: 22/0 (100%)
+Service Critical[02-04-2016 23:37:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[02-04-2016 23:36:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049921;UNKNOWN;HARD;1;UNKNOWN - DSB_Re_RVM_101 (049921) - SPS link down
+Service Unknown[02-04-2016 23:36:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048519;UNKNOWN;HARD;1;UNKNOWN - DSB_So_RVM_101 (048519) - SPS link down
+Service Unknown[02-04-2016 23:36:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048119;UNKNOWN;HARD;1;UNKNOWN - STO_Fs_RVM_101 (048119) - SPS link down
+Service Unknown[02-04-2016 23:36:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048087;UNKNOWN;HARD;1;UNKNOWN - STO_Fl_RVM_101 (048087) - SPS link down
+Service Unknown[02-04-2016 23:36:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049386;UNKNOWN;HARD;1;UNKNOWN - DSB_Kn_RVM_106 (049386) - SPS link down
+Service Unknown[02-04-2016 23:36:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049906;UNKNOWN;HARD;1;UNKNOWN - DSB_Htå_RVM_101 (049906) - SPS link down
+Service Unknown[02-04-2016 23:36:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049510;UNKNOWN;HARD;1;UNKNOWN - DSB_Eb_RVM_101 (049510) - SPS link down
+Service Unknown[02-04-2016 23:36:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047020;UNKNOWN;HARD;1;UNKNOWN - MET_Amb_RVM_101 (047020) - SPS link down
+Service Unknown[02-04-2016 23:36:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048148;UNKNOWN;HARD;1;UNKNOWN - STO_Hot_RVM_101 (048148) - SPS link down
+Service Unknown[02-04-2016 23:36:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048001;UNKNOWN;HARD;1;UNKNOWN - STO_Kj_RVM_101 (048001) - SPS link down
+Service Unknown[02-04-2016 23:36:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048063;UNKNOWN;HARD;1;UNKNOWN - STO_Dyt_RVM_101 (048063) - SPS link down
+Service Unknown[02-04-2016 23:36:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048105;UNKNOWN;HARD;1;UNKNOWN - STO_Ist_RVM_101 (048105) - SPS link down
+Service Ok[02-04-2016 23:34:25] SERVICE ALERT: REJK-P-BCM003;HKP_BCM;OK;HARD;1;OK - RUNNING
+Service Ok[02-04-2016 23:34:15] SERVICE ALERT: REJK-P-BCM003;HKP_Overall;OK;HARD;1;OK - RUNNING
+Service Critical[02-04-2016 23:33:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049448;CRITICAL;HARD;1;CRITICAL - DSB_Hl_RVM_101 (049448) - 2883 minutes since last transaction (0494481K.418)
+Service Critical[02-04-2016 23:33:25] SERVICE ALERT: REJK-P-BCM003;HKP_Overall;CRITICAL;HARD;1;CRITICAL - PARTIALLYRUNNING
+Service Critical[02-04-2016 23:33:25] SERVICE ALERT: REJK-P-BCM003;HKP_BCM;CRITICAL;HARD;1;CRITICAL - ONERROR
+Service Ok[02-04-2016 23:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049515;OK;HARD;1;OK - DSB_Bet_RVM_101 (049515) - 141 minutes since last transaction (0495151K.3D3)
+Service Ok[02-04-2016 23:22:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 23:21:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 23:15:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Unknown[02-04-2016 23:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049515;UNKNOWN;HARD;1;UNKNOWN - DSB_Bet_RVM_101 (049515) - SPS link down
+Service Critical[02-04-2016 23:14:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 23:07:05] SERVICE ALERT: AccessPoints;AP1_Ravnstrupvej_11_Herlufmagle-10.81.5.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 23:06:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 23:06:15] SERVICE ALERT: AccessPoints;AP1_Ravnstrupvej_11_Herlufmagle-10.81.5.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 23:05:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[02-04-2016 23:02:35] SERVICE ALERT: REJK-P-SQL006;Job Execution - Creation of collection letter REJ - BO;WARNING;HARD;1;WARNING - JOB - Creation of collection letter has not been executed since 2016-04-01 21:01:02. Current Status: Executing
+Service Ok[02-04-2016 23:00:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 0 row(s) in prg.ObjTransactionBuffer
+Service Critical[02-04-2016 23:00:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Critical[02-04-2016 23:00:05] SERVICE ALERT: REJK-P-SQL006;Job Execution - Creation of collection letter DSB - BO;CRITICAL;HARD;1;CRITICAL - JOB - Creation of collection letter has not been executed since 2016-04-01 21:11:40. Current Status: Waiting
+
+April 02, 2016 22:00
+
+Service Ok[02-04-2016 22:50:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;HARD;3;OK - Got reply from host
+Service Ok[02-04-2016 22:44:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048071;OK;HARD;1;OK - STO_Vær_RVM_101 (048071) - 29 minutes since last transaction (0480711K.A3D)
+Service Ok[02-04-2016 22:44:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 22:43:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 22:40:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[02-04-2016 22:39:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[02-04-2016 22:38:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 22:37:45] SERVICE ALERT: REJK-P-SQL006;Job Execution - CPR Customers Address Update - BO;CRITICAL;HARD;1;CRITICAL - JOB - CPR Customers Address Update has not been executed since 2016-04-01 20:30:34. Current Status: Waiting
+Service Unknown[02-04-2016 22:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048071;UNKNOWN;HARD;1;UNKNOWN - STO_Vær_RVM_101 (048071) - SPS link down
+Service Ok[02-04-2016 22:23:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[02-04-2016 22:22:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[02-04-2016 22:21:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 22:20:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 2493 row(s) in prg.ObjTransactionBuffer - oldest insert at 2016-04-02 22:15:03
+Service Critical[02-04-2016 22:15:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Ok[02-04-2016 22:13:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 22:12:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+
+April 02, 2016 21:00
+
+Service Ok[02-04-2016 21:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049380;OK;HARD;1;OK - DSB_RÃ¥d_RVM_101 (049380) - 239 minutes since last transaction (0493801K.62C)
+Service Warning[02-04-2016 21:51:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049321;WARNING;HARD;1;WARNING - DSB_Gt_RVM_101 (049321) - 1445 minutes since last transaction (0493211K.839)
+Service Ok[02-04-2016 21:45:55] SERVICE ALERT: AccessPoints;AP1_Norgesvej_8_Slagelse-10.71.83.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 21:45:25] SERVICE ALERT: AccessPoints;AP1_Industriholmen_39-41_Avedore_Hvidovre-10.71.28.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 21:45:25] SERVICE ALERT: AccessPoints;AP1_Fabriksparken_18_Glostrup-10.71.84.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 21:45:25] SERVICE ALERT: AccessPoints;AP1_Teglvaerksvej_27_B_Roskilde-10.71.58.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 21:45:25] SERVICE ALERT: AccessPoints;AP1_Sonnesgade_19B_AarhusC-10.71.64.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 21:45:25] SERVICE ALERT: AccessPoints;AP1_Banegaardspladsen_Herning-10.71.65.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 21:45:25] SERVICE ALERT: AccessPoints;AP1_Industrivej_22_Skibby-10.71.44.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 21:45:25] SERVICE ALERT: AccessPoints;AP2_Industriholmen_39-41_Avedore_Hvidovre-10.71.28.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 21:45:25] SERVICE ALERT: AccessPoints;AP1_Columbusvej_6_Soborg-10.71.35.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 21:44:55] SERVICE ALERT: AccessPoints;AP1_Norgesvej_8_Slagelse-10.71.83.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[02-04-2016 21:44:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049380;UNKNOWN;HARD;1;UNKNOWN - DSB_RÃ¥d_RVM_101 (049380) - SPS link down
+Service Critical[02-04-2016 21:44:35] SERVICE ALERT: AccessPoints;AP1_Industriholmen_39-41_Avedore_Hvidovre-10.71.28.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 21:44:25] SERVICE ALERT: AccessPoints;AP1_Fabriksparken_18_Glostrup-10.71.84.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 21:44:25] SERVICE ALERT: AccessPoints;AP1_Teglvaerksvej_27_B_Roskilde-10.71.58.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 21:44:25] SERVICE ALERT: AccessPoints;AP1_Sonnesgade_19B_AarhusC-10.71.64.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 21:44:25] SERVICE ALERT: AccessPoints;AP1_Banegaardspladsen_Herning-10.71.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 21:44:25] SERVICE ALERT: AccessPoints;AP2_Industriholmen_39-41_Avedore_Hvidovre-10.71.28.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 21:44:25] SERVICE ALERT: AccessPoints;AP1_Industrivej_22_Skibby-10.71.44.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 21:44:25] SERVICE ALERT: AccessPoints;AP1_Columbusvej_6_Soborg-10.71.35.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 21:18:35] SERVICE ALERT: REJK-P-MDL002;MDL incoming files queue;OK;HARD;1;OK
+Service Ok[02-04-2016 21:18:35] SERVICE ALERT: REJK-P-MDL001;MDL incoming files queue;OK;HARD;1;OK
+Service Ok[02-04-2016 21:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045116;OK;HARD;1;OK - ARR_Vd_RVM_101 (045116) - 6 minutes since last transaction (0451161K.44C)
+Service Warning[02-04-2016 21:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049410;WARNING;HARD;1;WARNING - DSB_Pa_RVM_101 (049410) - 1445 minutes since last transaction (0494101K.51A)
+Service Ok[02-04-2016 21:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049515;OK;HARD;1;OK - DSB_Bet_RVM_101 (049515) - 6 minutes since last transaction (0495151K.3D3)
+Service Ok[02-04-2016 21:12:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 21:11:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 21:05:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;HARD;3;Critical - No response from host!
+Service Critical[02-04-2016 21:04:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[02-04-2016 21:03:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 21:03:35] SERVICE ALERT: REJK-P-MDL002;MDL incoming files queue;CRITICAL;HARD;1;CRITICAL - count 1277 exceeded threshold of 1000
+Service Critical[02-04-2016 21:03:35] SERVICE ALERT: REJK-P-MDL001;MDL incoming files queue;CRITICAL;HARD;1;CRITICAL - count 1070 exceeded threshold of 1000
+
+April 02, 2016 20:00
+
+Service Warning[02-04-2016 20:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049914;WARNING;HARD;1;WARNING - DSB_Lw_RVM_101 (049914) - 1454 minutes since last transaction (0499141K.93C)
+Service Ok[02-04-2016 20:55:35] SERVICE ALERT: AccessPoints;AP1_Taksvej_11_Herning-10.87.38.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 20:54:35] SERVICE ALERT: AccessPoints;AP1_Taksvej_11_Herning-10.87.38.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 20:46:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049540;OK;HARD;1;OK - DSB_Oss_RVM_101 (049540) - 1 minutes since last transaction (0495401K.655)
+Service Warning[02-04-2016 20:44:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049315;WARNING;HARD;1;WARNING - DSB_Hh_RVM_101 (049315) - 1454 minutes since last transaction (0493151K.1B0)
+Service Ok[02-04-2016 20:41:55] SERVICE ALERT: REJK-P-TCS006;IIS connections;OK;HARD;1;OK (Sample Period 61 sec) - Site Name="_Total", CurrentConnections=0, _ConnectionAttemptsPersec=0/sec
+Service Unknown[02-04-2016 20:40:55] SERVICE ALERT: REJK-P-TCS006;IIS connections;UNKNOWN;HARD;1;Collecting first WMI sample because the previous state data file (/tmp/cwpss_checkiisconnections_connections_rejkptcs006__TOTAL__.state) contained no data. Results will be shown the next time the plugin runs.
+Service Ok[02-04-2016 20:39:35] SERVICE ALERT: AccessPoints;AP1_Taksvej_11_Herning-10.87.38.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 20:38:35] SERVICE ALERT: AccessPoints;AP1_Taksvej_11_Herning-10.87.38.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 20:25:55] SERVICE ALERT: REJK-P-TCS008;IIS connections;OK;HARD;1;OK (Sample Period 57 sec) - Site Name="_Total", CurrentConnections=0, _ConnectionAttemptsPersec=0/sec
+Service Unknown[02-04-2016 20:25:05] SERVICE ALERT: REJK-P-TCS008;IIS connections;UNKNOWN;HARD;1;Collecting first WMI sample because the previous state data file (/tmp/cwpss_checkiisconnections_connections_rejkptcs008__TOTAL__.state) contained no data. Results will be shown the next time the plugin runs.
+Service Ok[02-04-2016 20:18:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 20:17:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[02-04-2016 20:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045105;WARNING;HARD;1;WARNING - ARR_Sne_RVM_101 (045105) - 1454 minutes since last transaction (0451051K.53E)
+Service Warning[02-04-2016 20:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049515;WARNING;HARD;1;WARNING - DSB_Bet_RVM_101 (049515) - 1454 minutes since last transaction (0495151K.3D2)
+Service Ok[02-04-2016 20:05:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 0 row(s) in prg.ObjTransactionBuffer
+Service Critical[02-04-2016 20:00:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+
+April 02, 2016 19:00
+
+Service Ok[02-04-2016 19:56:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 19:55:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 19:51:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 19:50:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 19:47:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 19:46:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 19:40:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 19:39:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 19:38:35] SERVICE ALERT: AccessPoints;AP1_Taksvej_11_Herning-10.87.38.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[02-04-2016 19:37:35] SERVICE ALERT: AccessPoints;AP1_Taksvej_11_Herning-10.87.38.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[02-04-2016 19:36:35] SERVICE ALERT: AccessPoints;AP1_Taksvej_11_Herning-10.87.38.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 19:31:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 19:30:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 19:18:25] SERVICE ALERT: REJK-P-SPS003;SPS EOD Distribution - Secondary Blacklist;OK;HARD;1;OK - VCF: 54/0 (100%) - RVM: 42/0 (100%)
+Service Ok[02-04-2016 19:16:05] SERVICE ALERT: REJK-P-SPS008;SPS EOD Distribution - Secondary Blacklist;OK;HARD;1;OK - VCF: 52/0 (100%) - RVM: 38/0 (100%)
+Service Ok[02-04-2016 19:15:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Ok[02-04-2016 19:15:05] SERVICE ALERT: REJK-P-SPS001;SPS EOD Distribution - Secondary Blacklist;OK;HARD;1;OK - VCF: 54/0 (100%) - RVM: 37/0 (100%)
+Service Ok[02-04-2016 19:15:05] SERVICE ALERT: REJK-P-SPS010;SPS EOD Distribution - Secondary Blacklist;OK;HARD;1;OK - VCF: 49/0 (100%) - RVM: 36/0 (100%)
+Service Ok[02-04-2016 19:15:05] SERVICE ALERT: REJK-P-SPS006;SPS EOD Distribution - Secondary Blacklist;OK;HARD;1;OK - VCF: 56/0 (100%) - RVM: 41/0 (100%)
+Service Ok[02-04-2016 19:15:05] SERVICE ALERT: REJK-P-SPS002;SPS EOD Distribution - Secondary Blacklist;OK;HARD;1;OK - VCF: 52/0 (100%) - RVM: 37/0 (100%)
+Service Ok[02-04-2016 19:14:55] SERVICE ALERT: REJK-P-SPS005;SPS EOD Distribution - Secondary Blacklist;OK;HARD;1;OK - VCF: 53/0 (100%) - RVM: 37/0 (100%)
+Service Warning[02-04-2016 19:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049564;WARNING;HARD;1;WARNING - DSB_Mr_RVM_101 (049564) - 1454 minutes since last transaction (0495641K.282)
+Service Ok[02-04-2016 19:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049531;OK;HARD;1;OK - DSB_Id_RVM_101 (049531) - 3 minutes since last transaction (0495311K.524)
+Service Critical[02-04-2016 19:14:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[02-04-2016 19:13:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 19:08:25] SERVICE ALERT: REJK-P-SPS003;SPS EOD Distribution - Secondary Blacklist;CRITICAL;HARD;1;CRITICAL - 96 devices (RVM or VCF) has EOD older than previous version
+Service Critical[02-04-2016 19:08:25] SERVICE ALERT: REJK-P-SPS007;SPS EOD Distribution - Secondary Blacklist;CRITICAL;HARD;1;CRITICAL - 95 devices (RVM or VCF) has EOD older than previous version
+Service Critical[02-04-2016 19:06:05] SERVICE ALERT: REJK-P-SPS008;SPS EOD Distribution - Secondary Blacklist;CRITICAL;HARD;1;CRITICAL - 90 devices (RVM or VCF) has EOD older than previous version
+Service Critical[02-04-2016 19:05:05] SERVICE ALERT: REJK-P-SPS001;SPS EOD Distribution - Secondary Blacklist;CRITICAL;HARD;1;CRITICAL - 91 devices (RVM or VCF) has EOD older than previous version
+Service Critical[02-04-2016 19:05:05] SERVICE ALERT: REJK-P-SPS006;SPS EOD Distribution - Secondary Blacklist;CRITICAL;HARD;1;CRITICAL - 97 devices (RVM or VCF) has EOD older than previous version
+Service Critical[02-04-2016 19:05:05] SERVICE ALERT: REJK-P-SPS010;SPS EOD Distribution - Secondary Blacklist;CRITICAL;HARD;1;CRITICAL - 85 devices (RVM or VCF) has EOD older than previous version
+Service Critical[02-04-2016 19:05:05] SERVICE ALERT: REJK-P-SPS002;SPS EOD Distribution - Secondary Blacklist;CRITICAL;HARD;1;CRITICAL - 89 devices (RVM or VCF) has EOD older than previous version
+Service Critical[02-04-2016 19:04:55] SERVICE ALERT: REJK-P-SPS005;SPS EOD Distribution - Secondary Blacklist;CRITICAL;HARD;1;CRITICAL - 90 devices (RVM or VCF) has EOD older than previous version
+Service Ok[02-04-2016 19:01:25] SERVICE ALERT: REJK-P-BCM003;HKP_Overall;OK;HARD;1;OK - RUNNING
+Service Ok[02-04-2016 19:01:25] SERVICE ALERT: REJK-P-BCM003;HKP_BCM;OK;HARD;1;OK - RUNNING
+Service Critical[02-04-2016 19:00:15] SERVICE ALERT: REJK-P-BCM003;HKP_Overall;CRITICAL;HARD;1;CRITICAL - PARTIALLYRUNNING
+Service Critical[02-04-2016 19:00:15] SERVICE ALERT: REJK-P-BCM003;HKP_BCM;CRITICAL;HARD;1;CRITICAL - ONERROR
+
+April 02, 2016 18:00
+
+Service Ok[02-04-2016 18:45:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 0 row(s) in prg.ObjTransactionBuffer
+Service Critical[02-04-2016 18:45:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Ok[02-04-2016 18:43:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;HARD;3;OK - Got reply from host
+Service Ok[02-04-2016 18:20:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 18:19:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 18:13:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;HARD;3;Critical - No response from host!
+Service Critical[02-04-2016 18:12:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[02-04-2016 18:11:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+
+April 02, 2016 17:00
+
+Service Ok[02-04-2016 17:56:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 17:55:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 17:51:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047020;OK;HARD;1;OK - MET_Amb_RVM_101 (047020) - 6 minutes since last transaction (0470201K.06D)
+Service Ok[02-04-2016 17:51:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047005;OK;HARD;1;OK - MET_Fb_RVM_101 (047005) - 5 minutes since last transaction (0470051K.0DD)
+Service Warning[02-04-2016 17:43:35] SERVICE ALERT: REJK-P-SPS004;SPS EOD Distribution - Primary Blacklist;WARNING;HARD;1;WARNING - 99% updated in 913 minutes - VCF: 54/0 (100%) - RVM: 39/1 (98%)
+Service Ok[02-04-2016 17:39:25] SERVICE ALERT: AccessPoints;AP1_Jermholmen_14_Avedore-10.71.77.20;OK;SOFT;3;OK - Got reply from host
+Service Ok[02-04-2016 17:38:35] SERVICE ALERT: REJK-P-SPS004;SPS EOD Distribution - Primary Blacklist;OK;HARD;1;OK - VCF: 48/0 (100%) - RVM: 36/0 (100%)
+Service Critical[02-04-2016 17:38:25] SERVICE ALERT: AccessPoints;AP1_Jermholmen_14_Avedore-10.71.77.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[02-04-2016 17:37:25] SERVICE ALERT: AccessPoints;AP1_Jermholmen_14_Avedore-10.71.77.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 17:37:15] SERVICE ALERT: AccessPoints;AP1_Jernbanegade_35_Thisted-10.75.37.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 17:37:15] SERVICE ALERT: AccessPoints;AP2_Limfjordsvej_30_Logstor-10.75.2.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 17:37:05] SERVICE ALERT: AccessPoints;AP1_Havnepladsen_30_Frederikshavn-10.75.39.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 17:37:05] SERVICE ALERT: AccessPoints;AP1_Himmerlandsgade_113_Aars-10.75.14.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 17:37:05] SERVICE ALERT: AccessPoints;AP1_Industrivej_32_Aabybro-10.75.46.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 17:36:25] SERVICE ALERT: AccessPoints;AP1_Norre_Voldgade_13_Kh-10.74.26.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 17:36:15] SERVICE ALERT: AccessPoints;AP1_Jernbanegade_35_Thisted-10.75.37.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 17:36:15] SERVICE ALERT: AccessPoints;AP2_Limfjordsvej_30_Logstor-10.75.2.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[02-04-2016 17:36:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047020;UNKNOWN;HARD;1;UNKNOWN - MET_Amb_RVM_101 (047020) - SPS link down
+Service Critical[02-04-2016 17:36:15] SERVICE ALERT: AccessPoints;AP1_Himmerlandsgade_113_Aars-10.75.14.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 17:36:15] SERVICE ALERT: AccessPoints;AP1_Havnepladsen_30_Frederikshavn-10.75.39.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 17:36:05] SERVICE ALERT: AccessPoints;AP1_Industrivej_32_Aabybro-10.75.46.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[02-04-2016 17:36:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047005;UNKNOWN;HARD;1;UNKNOWN - MET_Fb_RVM_101 (047005) - SPS link down
+Service Critical[02-04-2016 17:35:25] SERVICE ALERT: AccessPoints;AP1_Norre_Voldgade_13_Kh-10.74.26.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 17:34:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 17:33:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 17:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045094;OK;HARD;1;OK - NT_Sal_RVM_101 (045094) - 13 minutes since last transaction (0450941K.23F)
+Service Ok[02-04-2016 17:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045020;OK;HARD;1;OK - NT_Hhs_RVM_101 (045020) - 149 minutes since last transaction (0450201K.A42)
+Service Ok[02-04-2016 17:25:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[02-04-2016 17:24:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[02-04-2016 17:23:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 17:19:45] SERVICE ALERT: AccessPoints;AP1_Munkevejen_4_Tilst-10.87.69.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 17:19:45] SERVICE ALERT: AccessPoints;AP1_Bavnehojvej_19_Silkeborg-10.87.51.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 17:18:55] SERVICE ALERT: AccessPoints;AP1_Munkevejen_4_Tilst-10.87.69.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 17:18:55] SERVICE ALERT: AccessPoints;AP1_Bavnehojvej_19_Silkeborg-10.87.51.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[02-04-2016 17:18:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049918;WARNING;HARD;1;WARNING - DSB_Tov_RVM_101 (049918) - 1443 minutes since last transaction (0499181K.04E)
+Service Unknown[02-04-2016 17:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045094;UNKNOWN;HARD;1;UNKNOWN - NT_Sal_RVM_101 (045094) - SPS link down
+Service Warning[02-04-2016 17:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045118;WARNING;HARD;1;WARNING - ARR_Rbn_RVM_101 (045118) - 1454 minutes since last transaction (0451181K.843)
+Service Unknown[02-04-2016 17:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045020;UNKNOWN;HARD;1;UNKNOWN - NT_Hhs_RVM_101 (045020) - SPS link down
+Service Ok[02-04-2016 17:14:25] SERVICE ALERT: AccessPoints;AP1_Skagensvej_58_Tversted-10.75.21.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 17:14:25] SERVICE ALERT: AccessPoints;AP3_John_F_Kennedys_Plads_1_Aalborg-10.75.11.22;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 17:14:25] SERVICE ALERT: AccessPoints;AP1_Bransagervej_23_Pandrup-10.75.35.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 17:13:35] SERVICE ALERT: AccessPoints;AP1_Skagensvej_58_Tversted-10.75.21.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 17:13:35] SERVICE ALERT: AccessPoints;AP3_John_F_Kennedys_Plads_1_Aalborg-10.75.11.22;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 17:13:35] SERVICE ALERT: AccessPoints;AP1_Bransagervej_23_Pandrup-10.75.35.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 17:03:55] SERVICE ALERT: REJK-P-TCS014;IIS connections;OK;HARD;1;OK (Sample Period 60 sec) - Site Name="_Total", CurrentConnections=0, _ConnectionAttemptsPersec=0/sec
+Service Unknown[02-04-2016 17:03:55] SERVICE ALERT: REJK-P-TCS014;IIS connections;UNKNOWN;HARD;1;There was a problem retrieving the previous state data (/tmp/cwpss_checkiisconnections_connections_rejkptcs014__TOTAL__.state). If this error persists you may need to remove the state data file. The error message was: Magic number checking on storable file failed at /usr/local/lib64/perl5/Storable.pm line 383, at /usr/lib64/nagios/plugins/check_wmi_plus.pl line 1996
+
+April 02, 2016 16:00
+
+Service Ok[02-04-2016 16:53:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 16:52:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 16:46:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049521;OK;HARD;1;OK - DSB_Ar_RVM_102 (049521) - 1 minutes since last transaction (0495211K.FD4)
+Service Ok[02-04-2016 16:39:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 16:38:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 16:37:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 16:36:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 16:34:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045111;OK;HARD;1;OK - ARR_Bw_RVM_101 (045111) - 3 minutes since last transaction (0451111K.3B8)
+Service Ok[02-04-2016 16:23:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 16:22:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 16:21:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 16:21:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048017;OK;HARD;1;OK - STO_Sjæ_RVM_101 (048017) - 6 minutes since last transaction (0480171K.E64)
+Service Critical[02-04-2016 16:20:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 16:10:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 0 row(s) in prg.ObjTransactionBuffer
+Service Ok[02-04-2016 16:07:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[02-04-2016 16:06:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Unknown[02-04-2016 16:06:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048017;UNKNOWN;HARD;1;UNKNOWN - STO_Sjæ_RVM_101 (048017) - SPS link down
+Service Ok[02-04-2016 16:05:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 16:05:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 16:05:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Critical[02-04-2016 16:04:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+
+April 02, 2016 15:00
+
+Service Ok[02-04-2016 15:50:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Ok[02-04-2016 15:49:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 15:49:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[02-04-2016 15:48:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 15:48:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[02-04-2016 15:46:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044601;WARNING;HARD;1;WARNING - MT_Mst_RVM_101 (044601) - 1441 minutes since last transaction (0446011K.1D4)
+Service Ok[02-04-2016 15:44:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045127;OK;HARD;1;OK - ARR_Vno_RVM_101 (045127) - 4 minutes since last transaction (0451271K.3D6)
+Service Ok[02-04-2016 15:33:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;HARD;3;OK - Got reply from host
+Service Ok[02-04-2016 15:33:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 15:33:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[02-04-2016 15:32:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 15:32:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[02-04-2016 15:31:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 15:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047013;OK;HARD;1;OK - MET_Khc_RVM_102 (047013) - 14 minutes since last transaction (0470131K.AE6)
+Service Ok[02-04-2016 15:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047027;OK;HARD;1;OK - MET_Ksa_RVM_101 (047027) - 29 minutes since last transaction (0470271K.FCC)
+Service Warning[02-04-2016 15:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045115;WARNING;HARD;1;WARNING - ARR_Rej_RVM_101 (045115) - 1455 minutes since last transaction (0451151K.263)
+Service Warning[02-04-2016 15:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047012;WARNING;HARD;1;WARNING - MET_Khc_RVM_101 (047012) - 1694 minutes since last transaction (0470121K.C32)
+Service Critical[02-04-2016 15:23:15] SERVICE ALERT: REJK-P-SPS007;SPS EOD Distribution - Action List;CRITICAL;HARD;1;CRITICAL - 1 devices (RVM or VCF) has EOD older than previous version
+Service Critical[02-04-2016 15:19:55] SERVICE ALERT: REJK-P-SPS004;SPS EOD Distribution - Action List;CRITICAL;HARD;1;CRITICAL - 1 devices (RVM or VCF) has EOD older than previous version
+Service Critical[02-04-2016 15:19:55] SERVICE ALERT: REJK-P-SPS004;SPS EOD Distribution - Secondary Blacklist;CRITICAL;HARD;1;CRITICAL - 1 devices (RVM or VCF) has EOD older than previous version
+Service Warning[02-04-2016 15:18:35] SERVICE ALERT: REJK-P-SPS004;SPS EOD Distribution - Primary Blacklist;WARNING;HARD;1;WARNING - 99% updated in 768 minutes - VCF: 50/0 (100%) - RVM: 39/1 (98%)
+Service Ok[02-04-2016 15:14:55] SERVICE ALERT: REJK-P-SPS004;SPS EOD Distribution - Action List;OK;HARD;1;OK - VCF: 47/0 (100%) - RVM: 36/0 (100%)
+Service Ok[02-04-2016 15:14:55] SERVICE ALERT: REJK-P-SPS004;SPS EOD Distribution - Secondary Blacklist;OK;HARD;1;OK - VCF: 47/0 (100%) - RVM: 36/0 (100%)
+Service Unknown[02-04-2016 15:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047013;UNKNOWN;HARD;1;UNKNOWN - MET_Khc_RVM_102 (047013) - SPS link down
+Service Unknown[02-04-2016 15:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047027;UNKNOWN;HARD;1;UNKNOWN - MET_Ksa_RVM_101 (047027) - SPS link down
+Service Warning[02-04-2016 15:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045116;WARNING;HARD;1;WARNING - ARR_Vd_RVM_101 (045116) - 1452 minutes since last transaction (0451161K.44B)
+Service Unknown[02-04-2016 15:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047012;UNKNOWN;HARD;1;UNKNOWN - MET_Khc_RVM_101 (047012) - SPS link down
+Service Ok[02-04-2016 15:13:35] SERVICE ALERT: REJK-P-SPS004;SPS EOD Distribution - Primary Blacklist;OK;HARD;1;OK - VCF: 47/0 (100%) - RVM: 36/0 (100%)
+Service Critical[02-04-2016 15:03:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;HARD;3;Critical - No response from host!
+Service Critical[02-04-2016 15:02:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[02-04-2016 15:01:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+
+April 02, 2016 14:00
+
+Service Ok[02-04-2016 14:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045149;OK;HARD;1;OK - ARR_Hn_RVM_101 (045149) - 44 minutes since last transaction (0451491K.4D5)
+Service Warning[02-04-2016 14:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049374;WARNING;HARD;1;WARNING - DSB_Hf_RVM_101 (049374) - 1445 minutes since last transaction (0493741K.C26)
+Service Warning[02-04-2016 14:51:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049544;WARNING;HARD;1;WARNING - DSB_Ã…s_RVM_101 (049544) - 1446 minutes since last transaction (0495441K.2AD)
+Service Ok[02-04-2016 14:49:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047019;OK;HARD;1;OK - MET_Vea_RVM_101 (047019) - 19 minutes since last transaction (0470191K.636)
+Service Ok[02-04-2016 14:49:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047004;OK;HARD;1;OK - MET_Sot_RVM_101 (047004) - 4 minutes since last transaction (0470041K.B14)
+Service Ok[02-04-2016 14:49:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047920;OK;HARD;1;OK - MET_Van_RVM_101 (047920) - 109 minutes since last transaction (0479201K.7ED)
+Service Ok[02-04-2016 14:48:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047018;OK;HARD;1;OK - MET_Øre_RVM_101 (047018) - 3 minutes since last transaction (0470181K.724)
+Service Ok[02-04-2016 14:48:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047917;OK;HARD;1;OK - MET_Kn_RVM_101 (047917) - 3 minutes since last transaction (0479171K.DBA)
+Service Ok[02-04-2016 14:48:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047003;OK;HARD;1;OK - MET_Lit_RVM_101 (047003) - 3 minutes since last transaction (0470031K.4FC)
+Service Ok[02-04-2016 14:48:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047017;OK;HARD;1;OK - MET_Bc_RVM_101 (047017) - 3 minutes since last transaction (0470171K.F9F)
+Service Ok[02-04-2016 14:48:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047002;OK;HARD;1;OK - MET_Fl_RVM_101 (047002) - 17 minutes since last transaction (0470021K.211)
+Service Ok[02-04-2016 14:48:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047902;OK;HARD;1;OK - MET_Khs_RVM_101 (047902) - 17 minutes since last transaction (0479021K.5D2)
+Service Ok[02-04-2016 14:46:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 14:46:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 14:45:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 14:45:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[02-04-2016 14:44:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045149;UNKNOWN;HARD;1;UNKNOWN - ARR_Hn_RVM_101 (045149) - SPS link down
+Service Ok[02-04-2016 14:44:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045159;OK;HARD;1;OK - ARR_Td_RVM_101 (045159) - 14 minutes since last transaction (0451591K.13B)
+Service Warning[02-04-2016 14:44:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049531;WARNING;HARD;1;WARNING - DSB_Id_RVM_101 (049531) - 1454 minutes since last transaction (0495311K.523)
+Service Critical[02-04-2016 14:39:55] SERVICE ALERT: REJK-P-SPS004;SPS EOD Distribution - Action List;CRITICAL;HARD;1;CRITICAL - 1 devices (RVM or VCF) has EOD older than previous version
+Service Critical[02-04-2016 14:39:55] SERVICE ALERT: REJK-P-SPS004;SPS EOD Distribution - Secondary Blacklist;CRITICAL;HARD;1;CRITICAL - 1 devices (RVM or VCF) has EOD older than previous version
+Service Warning[02-04-2016 14:38:35] SERVICE ALERT: REJK-P-SPS004;SPS EOD Distribution - Primary Blacklist;WARNING;HARD;1;WARNING - 99% updated in 728 minutes - VCF: 52/0 (100%) - RVM: 39/1 (98%)
+Service Ok[02-04-2016 14:34:55] SERVICE ALERT: REJK-P-SPS004;SPS EOD Distribution - Action List;OK;HARD;1;OK - VCF: 50/0 (100%) - RVM: 36/0 (100%)
+Service Ok[02-04-2016 14:34:55] SERVICE ALERT: REJK-P-SPS004;SPS EOD Distribution - Secondary Blacklist;OK;HARD;1;OK - VCF: 50/0 (100%) - RVM: 36/0 (100%)
+Service Unknown[02-04-2016 14:34:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047019;UNKNOWN;HARD;1;UNKNOWN - MET_Vea_RVM_101 (047019) - SPS link down
+Service Unknown[02-04-2016 14:34:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047004;UNKNOWN;HARD;1;UNKNOWN - MET_Sot_RVM_101 (047004) - SPS link down
+Service Unknown[02-04-2016 14:34:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047920;UNKNOWN;HARD;1;UNKNOWN - MET_Van_RVM_101 (047920) - SPS link down
+Service Unknown[02-04-2016 14:33:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047018;UNKNOWN;HARD;1;UNKNOWN - MET_Øre_RVM_101 (047018) - SPS link down
+Service Ok[02-04-2016 14:33:35] SERVICE ALERT: REJK-P-SPS004;SPS EOD Distribution - Primary Blacklist;OK;HARD;1;OK - VCF: 50/0 (100%) - RVM: 36/0 (100%)
+Service Unknown[02-04-2016 14:33:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047917;UNKNOWN;HARD;1;UNKNOWN - MET_Kn_RVM_101 (047917) - SPS link down
+Service Unknown[02-04-2016 14:33:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047003;UNKNOWN;HARD;1;UNKNOWN - MET_Lit_RVM_101 (047003) - SPS link down
+Service Unknown[02-04-2016 14:33:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047017;UNKNOWN;HARD;1;UNKNOWN - MET_Bc_RVM_101 (047017) - SPS link down
+Service Unknown[02-04-2016 14:33:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047002;UNKNOWN;HARD;1;UNKNOWN - MET_Fl_RVM_101 (047002) - SPS link down
+Service Warning[02-04-2016 14:33:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045122;WARNING;HARD;1;WARNING - ARR_Esn_RVM_101 (045122) - 1442 minutes since last transaction (0451221K.9AA)
+Service Unknown[02-04-2016 14:33:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047902;UNKNOWN;HARD;1;UNKNOWN - MET_Khs_RVM_101 (047902) - SPS link down
+Service Ok[02-04-2016 14:32:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Warning[02-04-2016 14:31:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049540;WARNING;HARD;1;WARNING - DSB_Oss_RVM_101 (049540) - 1454 minutes since last transaction (0495401K.654)
+Service Critical[02-04-2016 14:31:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 14:30:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049505;OK;HARD;1;OK - DSB_Tp_RVM_101 (049505) - 14 minutes since last transaction (0495051K.222)
+Service Ok[02-04-2016 14:15:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Warning[02-04-2016 14:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045127;WARNING;HARD;1;WARNING - ARR_Vno_RVM_101 (045127) - 1454 minutes since last transaction (0451271K.3D5)
+Service Ok[02-04-2016 14:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048510;OK;HARD;1;OK - STO_TÃ¥_RVM_101 (048510) - 14 minutes since last transaction (0485101K.36C)
+Service Ok[02-04-2016 14:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049533;OK;HARD;1;OK - DSB_Ho_RVM_101 (049533) - 14 minutes since last transaction (0495331K.AF7)
+Service Critical[02-04-2016 14:14:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 14:06:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045154;OK;HARD;1;OK - ARR_Sm_RVM_101 (045154) - 5 minutes since last transaction (0451541K.2FE)
+Service Ok[02-04-2016 14:00:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+
+April 02, 2016 13:00
+
+Service Ok[02-04-2016 13:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045094;OK;HARD;1;OK - NT_Sal_RVM_101 (045094) - 10 minutes since last transaction (0450941K.232)
+Service Unknown[02-04-2016 13:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048510;UNKNOWN;HARD;1;UNKNOWN - STO_TÃ¥_RVM_101 (048510) - SPS link down
+Service Unknown[02-04-2016 13:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049533;UNKNOWN;HARD;1;UNKNOWN - DSB_Ho_RVM_101 (049533) - SPS link down
+Service Ok[02-04-2016 13:59:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 13:59:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 13:58:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[02-04-2016 13:44:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045094;UNKNOWN;HARD;1;UNKNOWN - NT_Sal_RVM_101 (045094) - SPS link down
+Service Ok[02-04-2016 13:43:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 13:42:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 13:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049403;OK;HARD;1;OK - DSB_Tl_RVM_101 (049403) - 14 minutes since last transaction (0494031K.4A0)
+Service Ok[02-04-2016 13:12:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[02-04-2016 13:11:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[02-04-2016 13:10:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[02-04-2016 13:06:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045112;WARNING;HARD;1;WARNING - ARR_Ds_RVM_101 (045112) - 1445 minutes since last transaction (0451121K.23A)
+Service Ok[02-04-2016 13:01:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 13:00:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+
+April 02, 2016 12:00
+
+Service Ok[02-04-2016 12:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049380;OK;HARD;1;OK - DSB_RÃ¥d_RVM_101 (049380) - 14 minutes since last transaction (0493801K.62B)
+Service Ok[02-04-2016 12:55:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[02-04-2016 12:54:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[02-04-2016 12:53:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 12:51:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049510;OK;HARD;1;OK - DSB_Eb_RVM_101 (049510) - 5 minutes since last transaction (0495101K.26A)
+Service Ok[02-04-2016 12:42:05] SERVICE ALERT: AccessPoints;AP1_Holbaek_Valdemar-10.83.28.20;OK;HARD;3;OK - Got reply from host
+Service Critical[02-04-2016 12:27:15] SERVICE ALERT: AccessPoints;AP1_Holbaek_Valdemar-10.83.28.20;CRITICAL;HARD;3;Critical - No response from host!
+Service Critical[02-04-2016 12:26:15] SERVICE ALERT: AccessPoints;AP1_Holbaek_Valdemar-10.83.28.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[02-04-2016 12:25:15] SERVICE ALERT: AccessPoints;AP1_Holbaek_Valdemar-10.83.28.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 12:23:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 12:22:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[02-04-2016 12:19:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045111;WARNING;HARD;1;WARNING - ARR_Bw_RVM_101 (045111) - 1444 minutes since last transaction (0451111K.3B7)
+Service Ok[02-04-2016 12:15:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 12:14:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[02-04-2016 12:13:15] SERVICE ALERT: REJK-P-SPS007;SPS EOD Distribution - Action List;WARNING;HARD;1;WARNING - 99% updated in 61 minutes - VCF: 56/0 (100%) - RVM: 38/1 (97%)
+Service Ok[02-04-2016 12:03:35] SERVICE ALERT: AccessPoints;AP1_Stationsvej_27_Odense-10.64.141.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 12:02:45] SERVICE ALERT: AccessPoints;AP1_Stationsvej_27_Odense-10.64.141.20;CRITICAL;SOFT;1;Critical - No response from host!
+
+April 02, 2016 11:00
+
+Service Ok[02-04-2016 11:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045104;OK;HARD;1;OK - ARR_Hæ_RVM_101 (045104) - 14 minutes since last transaction (0451041K.269)
+Service Ok[02-04-2016 11:59:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 11:58:45] SERVICE ALERT: REJK-P-SQL006;Job - Entity log export NO AIF DSB - SI;OK;HARD;1;OK, Current Status: Waiting
+Service Critical[02-04-2016 11:58:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[02-04-2016 11:48:25] SERVICE ALERT: REJK-P-SPS007;SPS EOD Distribution - Secondary Blacklist;WARNING;HARD;1;WARNING - 99% updated in 61 minutes - VCF: 56/0 (100%) - RVM: 38/1 (97%)
+Service Ok[02-04-2016 11:47:45] SERVICE ALERT: AccessPoints;AP1_Stationsvej_12_Hobro-10.75.38.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 11:47:45] SERVICE ALERT: AccessPoints;AP2_Suderbovej_18_Frederikshavn-10.75.8.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 11:47:35] SERVICE ALERT: AccessPoints;AP1_Glaspustervej_7_Hanstholm-10.75.32.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 11:47:25] SERVICE ALERT: AccessPoints;AP1_Skydebanevej_1_Hjorring-10.75.22.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 11:47:25] SERVICE ALERT: AccessPoints;AP2_Jernbanegade_35_Thisted-10.75.37.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 11:47:15] SERVICE ALERT: AccessPoints;AP1_Dag_Hammarskjolds_Gade_Aalborg-10.75.3.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 11:47:15] SERVICE ALERT: AccessPoints;AP1_Sct_laurentivej_22_Skagen-10.75.23.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 11:47:15] SERVICE ALERT: AccessPoints;AP1_Norgesvej_2_Hadsund-10.75.12.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 11:47:05] SERVICE ALERT: AccessPoints;AP1_Luneborgvej_105_Tylstrup-10.75.20.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 11:47:05] SERVICE ALERT: AccessPoints;AP2_Norgesvej_2_Hadsund-10.75.12.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 11:47:05] SERVICE ALERT: AccessPoints;AP2_Eventyrvej_10_Bronderslev-10.75.4.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 11:47:05] SERVICE ALERT: AccessPoints;AP1_Troensevej_18_Aalborg-10.75.27.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 11:47:05] SERVICE ALERT: AccessPoints;AP3_Jernbanegade_35_Thisted-10.75.37.22;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 11:47:05] SERVICE ALERT: AccessPoints;AP2_John_F_Kennedys_Plads_1_Aalborg-10.75.11.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 11:47:05] SERVICE ALERT: AccessPoints;AP1_Bronderslev_Station_Bronderslev-10.75.13.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 11:46:45] SERVICE ALERT: AccessPoints;AP1_Stationsvej_12_Hobro-10.75.38.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 11:46:45] SERVICE ALERT: AccessPoints;AP2_Suderbovej_18_Frederikshavn-10.75.8.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 11:46:45] SERVICE ALERT: AccessPoints;AP1_Glaspustervej_7_Hanstholm-10.75.32.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 11:46:25] SERVICE ALERT: AccessPoints;AP1_Skydebanevej_1_Hjorring-10.75.22.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 11:46:25] SERVICE ALERT: AccessPoints;AP2_Jernbanegade_35_Thisted-10.75.37.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 11:46:15] SERVICE ALERT: AccessPoints;AP1_Sct_laurentivej_22_Skagen-10.75.23.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 11:46:15] SERVICE ALERT: AccessPoints;AP1_Dag_Hammarskjolds_Gade_Aalborg-10.75.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 11:46:15] SERVICE ALERT: AccessPoints;AP1_Norgesvej_2_Hadsund-10.75.12.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 11:46:15] SERVICE ALERT: AccessPoints;AP1_Luneborgvej_105_Tylstrup-10.75.20.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 11:46:15] SERVICE ALERT: AccessPoints;AP2_Norgesvej_2_Hadsund-10.75.12.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 11:46:15] SERVICE ALERT: AccessPoints;AP3_Jernbanegade_35_Thisted-10.75.37.22;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 11:46:15] SERVICE ALERT: AccessPoints;AP1_Troensevej_18_Aalborg-10.75.27.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 11:46:15] SERVICE ALERT: AccessPoints;AP2_Eventyrvej_10_Bronderslev-10.75.4.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 11:46:15] SERVICE ALERT: AccessPoints;AP2_John_F_Kennedys_Plads_1_Aalborg-10.75.11.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 11:46:05] SERVICE ALERT: AccessPoints;AP1_Bronderslev_Station_Bronderslev-10.75.13.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 11:44:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048120;OK;HARD;1;OK - STO_Kid_RVM_101 (048120) - 59 minutes since last transaction (0481201K.6BD)
+Service Critical[02-04-2016 11:44:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049403;CRITICAL;HARD;1;CRITICAL - DSB_Tl_RVM_101 (049403) - 2894 minutes since last transaction (0494031K.49F)
+Service Ok[02-04-2016 11:43:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 11:42:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 11:37:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[02-04-2016 11:36:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[02-04-2016 11:35:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[02-04-2016 11:31:45] SERVICE ALERT: REJK-P-SQL006;Job - Entity log export NO AIF DSB - SI;WARNING;HARD;1;WARNING - Job has failed 1 times during past 5 executions, Current Status: Waiting
+Service Ok[02-04-2016 11:31:35] SERVICE ALERT: REJK-P-WEB006;CWS Login;OK;SOFT;2;OK - Login succeeded
+Service Warning[02-04-2016 11:30:55] SERVICE ALERT: REJK-P-WEB006;CWS Login;WARNING;SOFT;1;Warning - Login time exceeded 15 seconds!
+Service Unknown[02-04-2016 11:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048120;UNKNOWN;HARD;1;UNKNOWN - STO_Kid_RVM_101 (048120) - SPS link down
+Service Warning[02-04-2016 11:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047012;WARNING;HARD;1;WARNING - MET_Khc_RVM_101 (047012) - 1454 minutes since last transaction (0470121K.C32)
+Service Ok[02-04-2016 11:20:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 11:19:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 11:07:55] SERVICE ALERT: REJK-P-WEB005;IIS connections;OK;HARD;1;OK (Sample Period 57 sec) - Site Name="_Total", CurrentConnections=7, _ConnectionAttemptsPersec=0/sec
+Service Warning[02-04-2016 11:05:05] SERVICE ALERT: REJK-P-WEB005;IIS connections;WARNING;HARD;1;WARNING (Sample Period 60 sec) - [Triggered by CurrentConnections>50] - Site Name="_Total", CurrentConnections=75, _ConnectionAttemptsPersec=1/sec
+Service Ok[02-04-2016 11:04:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 11:03:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+
+April 02, 2016 10:00
+
+Service Ok[02-04-2016 10:57:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[02-04-2016 10:56:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[02-04-2016 10:55:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 10:48:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 10:48:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049542;OK;HARD;1;OK - DSB_Hjs_RVM_101 (049542) - 1 minutes since last transaction (0495421K.312)
+Service Critical[02-04-2016 10:47:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 10:40:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[02-04-2016 10:39:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[02-04-2016 10:38:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 10:35:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 0 row(s) in prg.ObjTransactionBuffer
+Service Ok[02-04-2016 10:34:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045001;OK;HARD;1;OK - NT_Ken_RVM_101 (045001) - 19 minutes since last transaction (0450011K.58C)
+Service Ok[02-04-2016 10:32:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[02-04-2016 10:31:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[02-04-2016 10:30:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 10:30:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Ok[02-04-2016 10:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047028;OK;HARD;1;OK - MET_Cph_RVM_101 (047028) - 74 minutes since last transaction (0470281K.7B6)
+Service Warning[02-04-2016 10:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045159;WARNING;HARD;1;WARNING - ARR_Td_RVM_101 (045159) - 1454 minutes since last transaction (0451591K.13A)
+Service Warning[02-04-2016 10:21:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049510;WARNING;HARD;1;WARNING - DSB_Eb_RVM_101 (049510) - 1445 minutes since last transaction (0495101K.269)
+Service Unknown[02-04-2016 10:19:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045001;UNKNOWN;HARD;1;UNKNOWN - NT_Ken_RVM_101 (045001) - SPS link down
+Service Warning[02-04-2016 10:18:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049542;WARNING;HARD;1;WARNING - DSB_Hjs_RVM_101 (049542) - 1443 minutes since last transaction (0495421K.311)
+Service Ok[02-04-2016 10:15:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Unknown[02-04-2016 10:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047028;UNKNOWN;HARD;1;UNKNOWN - MET_Cph_RVM_101 (047028) - SPS link down
+Service Critical[02-04-2016 10:14:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 10:08:05] SERVICE ALERT: REJK-P-AOS009;Ax32Serv process;OK;HARD;1;OK - Found 1 Instance(s) of "Ax32Serv.exe" running (0 excluded). (List is on next line)
+
+April 02, 2016 09:00
+
+Service Ok[02-04-2016 09:59:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 09:58:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 09:52:05] SERVICE ALERT: REJK-P-AOS009;Ax32Serv process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "Ax32Serv.exe" running (0 excluded).
+Service Ok[02-04-2016 09:44:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[02-04-2016 09:43:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[02-04-2016 09:42:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 09:37:55] SERVICE ALERT: AccessPoints;AP1_Naverland_18-20_Glostrup-10.71.53.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 09:37:55] SERVICE ALERT: AccessPoints;AP1_Trangravsvej_9_1436_Kobenhavn-10.71.78.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 09:37:15] SERVICE ALERT: AccessPoints;AP1_Navervej-10.71.27.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 09:36:55] SERVICE ALERT: AccessPoints;AP1_Naverland_18-20_Glostrup-10.71.53.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 09:36:55] SERVICE ALERT: AccessPoints;AP1_Trangravsvej_9_1436_Kobenhavn-10.71.78.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 09:36:15] SERVICE ALERT: AccessPoints;AP1_Navervej-10.71.27.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 09:36:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049561;OK;HARD;1;OK - DSB_Øds_RVM_101 (049561) - 6 minutes since last transaction (0495611K.346)
+Service Ok[02-04-2016 09:34:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045124;OK;HARD;1;OK - ARR_Gu_RVM_101 (045124) - 3085 minutes since last transaction (0451241K.26C)
+Service Warning[02-04-2016 09:21:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049561;WARNING;HARD;1;WARNING - DSB_Øds_RVM_101 (049561) - 1445 minutes since last transaction (0495611K.345)
+Service Ok[02-04-2016 09:19:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048008;OK;HARD;1;OK - STO_Und_RVM_102 (048008) - 34 minutes since last transaction (0480081K.B3B)
+Service Ok[02-04-2016 09:19:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048062;OK;HARD;1;OK - STO_Emt_RVM_102 (048062) - 730 minutes since last transaction (0480621K.245)
+Service Unknown[02-04-2016 09:19:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045124;UNKNOWN;HARD;1;UNKNOWN - ARR_Gu_RVM_101 (045124) - SPS link down
+Service Ok[02-04-2016 09:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045169;OK;HARD;1;OK - ARR_Sv_RVM_101 (045169) - 14 minutes since last transaction (0451691K.378)
+Service Ok[02-04-2016 09:13:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 09:12:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 09:12:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 09:11:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[02-04-2016 09:04:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048008;UNKNOWN;HARD;1;UNKNOWN - STO_Und_RVM_102 (048008) - SPS link down
+Service Unknown[02-04-2016 09:04:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048062;UNKNOWN;HARD;1;UNKNOWN - STO_Emt_RVM_102 (048062) - SPS link down
+
+April 02, 2016 08:00
+
+Service Warning[02-04-2016 08:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045169;WARNING;HARD;1;WARNING - ARR_Sv_RVM_101 (045169) - 1454 minutes since last transaction (0451691K.377)
+Service Ok[02-04-2016 08:56:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[02-04-2016 08:55:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[02-04-2016 08:54:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 08:50:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 3137 row(s) in prg.ObjTransactionBuffer - oldest insert at 2016-04-02 08:45:11
+Service Critical[02-04-2016 08:45:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Ok[02-04-2016 08:39:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[02-04-2016 08:38:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Ok[02-04-2016 08:38:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[02-04-2016 08:37:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 08:37:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[02-04-2016 08:36:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[02-04-2016 08:33:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045152;WARNING;HARD;1;WARNING - ARR_Rk_RVM_101 (045152) - 1443 minutes since last transaction (0451521K.2FA)
+Service Unknown[02-04-2016 08:31:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049521;UNKNOWN;HARD;1;UNKNOWN - DSB_Ar_RVM_102 (049521) - SPS link down
+Service Ok[02-04-2016 08:30:05] SERVICE ALERT: REJK-P-SPS002;SPS EOD Distribution - Secondary Blacklist;OK;HARD;1;OK - VCF: 52/0 (100%) - RVM: 36/0 (100%)
+Service Ok[02-04-2016 08:30:05] SERVICE ALERT: REJK-P-SPS002;SPS EOD Distribution - Action List;OK;HARD;1;OK - VCF: 52/0 (100%) - RVM: 36/0 (100%)
+Service Ok[02-04-2016 08:27:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 08:26:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 08:21:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 08:20:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 08:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045145;OK;HARD;1;OK - ARR_Hw_RVM_101 (045145) - 14 minutes since last transaction (0451451K.2E2)
+Service Warning[02-04-2016 08:10:05] SERVICE ALERT: REJK-P-SPS002;SPS EOD Distribution - Action List;WARNING;HARD;1;WARNING - 99% updated in 62 minutes - VCF: 50/0 (100%) - RVM: 36/1 (97%)
+Service Ok[02-04-2016 08:05:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 08:04:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+
+April 02, 2016 07:00
+
+Service Ok[02-04-2016 07:52:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 07:51:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[02-04-2016 07:45:05] SERVICE ALERT: REJK-P-SPS002;SPS EOD Distribution - Secondary Blacklist;WARNING;HARD;1;WARNING - 99% updated in 62 minutes - VCF: 52/0 (100%) - RVM: 36/1 (97%)
+Service Ok[02-04-2016 07:36:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 07:35:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 07:21:15] SERVICE ALERT: AccessPoints;AP2_Limfjordsvej_30_Logstor-10.75.2.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 07:21:05] SERVICE ALERT: AccessPoints;AP1_Havnepladsen_30_Frederikshavn-10.75.39.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 07:21:05] SERVICE ALERT: AccessPoints;AP1_Himmerlandsgade_113_Aars-10.75.14.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 07:21:05] SERVICE ALERT: AccessPoints;AP1_Industrivej_32_Aabybro-10.75.46.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 07:20:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 07:20:15] SERVICE ALERT: AccessPoints;AP2_Limfjordsvej_30_Logstor-10.75.2.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 07:20:15] SERVICE ALERT: AccessPoints;AP1_Havnepladsen_30_Frederikshavn-10.75.39.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 07:20:15] SERVICE ALERT: AccessPoints;AP1_Himmerlandsgade_113_Aars-10.75.14.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 07:20:05] SERVICE ALERT: AccessPoints;AP1_Industrivej_32_Aabybro-10.75.46.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 07:19:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 07:13:25] SERVICE ALERT: REJK-P-SPS009;SPS EOD Distribution - Action List;CRITICAL;HARD;1;CRITICAL - 1 devices (RVM or VCF) has EOD older than previous version
+Service Ok[02-04-2016 07:11:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 07:10:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 07:10:25] SERVICE ALERT: REJK-P-BCM003;HKP_BCM;OK;HARD;1;OK - RUNNING
+Service Ok[02-04-2016 07:10:15] SERVICE ALERT: REJK-P-BCM003;HKP_Overall;OK;HARD;1;OK - RUNNING
+Service Critical[02-04-2016 07:09:25] SERVICE ALERT: REJK-P-BCM003;HKP_Overall;CRITICAL;HARD;1;CRITICAL - PARTIALLYRUNNING
+Service Critical[02-04-2016 07:09:25] SERVICE ALERT: REJK-P-BCM003;HKP_BCM;CRITICAL;HARD;1;CRITICAL - ONERROR
+
+April 02, 2016 06:00
+
+Service Ok[02-04-2016 06:50:25] SERVICE ALERT: REJK-P-BCM003;HKP_BCM;OK;HARD;1;OK - RUNNING
+Service Ok[02-04-2016 06:50:15] SERVICE ALERT: REJK-P-BCM003;HKP_Overall;OK;HARD;1;OK - RUNNING
+Service Ok[02-04-2016 06:49:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 06:49:25] SERVICE ALERT: REJK-P-BCM003;HKP_Overall;CRITICAL;HARD;1;CRITICAL - PARTIALLYRUNNING
+Service Critical[02-04-2016 06:49:25] SERVICE ALERT: REJK-P-BCM003;HKP_BCM;CRITICAL;HARD;1;CRITICAL - ONERROR
+Service Critical[02-04-2016 06:48:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 06:48:25] SERVICE ALERT: REJK-P-SPS009;SPS EOD Distribution - Secondary Blacklist;CRITICAL;HARD;1;CRITICAL - 1 devices (RVM or VCF) has EOD older than previous version
+Service Critical[02-04-2016 06:43:15] SERVICE ALERT: REJK-P-SQL006;Job Execution - Nets Refund Request DAT - BO;CRITICAL;HARD;1;CRITICAL - JOB - Nets Refund Request has not been executed since 2016-04-01 04:16:22. Current Status: Waiting
+Service Ok[02-04-2016 06:40:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 0 row(s) in prg.ObjTransactionBuffer
+Service Critical[02-04-2016 06:35:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Ok[02-04-2016 06:35:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 0 row(s) in prg.ObjTransactionBuffer
+Service Ok[02-04-2016 06:33:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049556;OK;HARD;1;OK - DSB_Vsa_RVM_101 (049556) - 1067 minutes since last transaction (0495561K.3D5)
+Service Critical[02-04-2016 06:30:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Warning[02-04-2016 06:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045145;WARNING;HARD;1;WARNING - ARR_Hw_RVM_101 (045145) - 1448 minutes since last transaction (0451451K.2E1)
+Service Warning[02-04-2016 06:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049380;WARNING;HARD;1;WARNING - DSB_RÃ¥d_RVM_101 (049380) - 1446 minutes since last transaction (0493801K.62A)
+Service Ok[02-04-2016 06:25:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 06:24:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 06:20:05] SERVICE ALERT: REJK-P-SPS006;SPS EOD Distribution - Secondary Blacklist;OK;HARD;1;OK - VCF: 54/0 (100%) - RVM: 39/0 (100%)
+Service Ok[02-04-2016 06:19:55] SERVICE ALERT: REJK-P-SPS006;SPS EOD Distribution - Action List;OK;HARD;1;OK - VCF: 54/0 (100%) - RVM: 39/0 (100%)
+Service Ok[02-04-2016 06:19:55] SERVICE ALERT: REJK-P-SPS006;SPS EOD Distribution - Primary Blacklist;OK;HARD;1;OK - VCF: 54/0 (100%) - RVM: 39/0 (100%)
+Service Ok[02-04-2016 06:19:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[02-04-2016 06:18:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Unknown[02-04-2016 06:18:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049556;UNKNOWN;HARD;1;UNKNOWN - DSB_Vsa_RVM_101 (049556) - SPS link down
+Service Critical[02-04-2016 06:17:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 06:15:05] SERVICE ALERT: REJK-P-SPS006;SPS EOD Distribution - Secondary Blacklist;CRITICAL;HARD;1;CRITICAL - 1 devices (RVM or VCF) has EOD older than previous version
+Service Critical[02-04-2016 06:14:55] SERVICE ALERT: REJK-P-SPS006;SPS EOD Distribution - Action List;CRITICAL;HARD;1;CRITICAL - 1 devices (RVM or VCF) has EOD older than previous version
+Service Warning[02-04-2016 06:14:55] SERVICE ALERT: REJK-P-SPS006;SPS EOD Distribution - Primary Blacklist;WARNING;HARD;1;WARNING - 99% updated in 224 minutes - VCF: 55/0 (100%) - RVM: 40/1 (98%)
+Service Ok[02-04-2016 06:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049371;OK;HARD;1;OK - DSB_Nf_RVM_101 (049371) - 749 minutes since last transaction (0493711K.9C3)
+Service Ok[02-04-2016 06:11:25] SERVICE ALERT: AccessPoints;AP1_Rodhojvej_7_Storvorde-10.75.48.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 06:10:25] SERVICE ALERT: AccessPoints;AP1_Rodhojvej_7_Storvorde-10.75.48.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 06:03:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 06:02:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 06:02:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[02-04-2016 06:01:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Ok[02-04-2016 06:01:15] SERVICE ALERT: REJK-P-SMC002;Ram usage;OK;HARD;1;OK - 3.2% (515356 kB) free.
+Service Critical[02-04-2016 06:00:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+
+April 02, 2016 05:00
+
+Service Ok[02-04-2016 05:32:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 05:31:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 05:30:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 05:29:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 05:16:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[02-04-2016 05:15:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[02-04-2016 05:14:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 05:11:05] SERVICE ALERT: REJK-P-INT002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 8GB - Used: 2.089GB (26%) - Free: 5.91GB (74%)
+Service Warning[02-04-2016 05:01:05] SERVICE ALERT: REJK-P-INT002;Ram usage;WARNING;HARD;1;WARNING - [Triggered by _MemUsed%>90] - Physical Memory: Total: 8GB - Used: 7.564GB (95%) - Free: 446.328MB (5%)
+
+April 02, 2016 04:00
+
+Service Ok[02-04-2016 04:59:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 04:58:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 04:56:45] SERVICE ALERT: REJK-P-MDL001;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 16GB - Used: 9.306GB (58%) - Free: 6.694GB (42%)
+Service Ok[02-04-2016 04:55:25] SERVICE ALERT: AccessPoints;AP1_Rodhojvej_7_Storvorde-10.75.48.20;OK;HARD;3;OK - Got reply from host
+Service Ok[02-04-2016 04:44:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Ok[02-04-2016 04:43:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 04:43:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[02-04-2016 04:42:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 04:42:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 04:40:25] SERVICE ALERT: AccessPoints;AP1_Rodhojvej_7_Storvorde-10.75.48.20;CRITICAL;HARD;3;Critical - No response from host!
+Service Critical[02-04-2016 04:39:25] SERVICE ALERT: AccessPoints;AP1_Rodhojvej_7_Storvorde-10.75.48.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[02-04-2016 04:38:25] SERVICE ALERT: AccessPoints;AP1_Rodhojvej_7_Storvorde-10.75.48.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 04:27:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Warning[02-04-2016 04:26:45] SERVICE ALERT: REJK-P-MDL001;Ram usage;WARNING;HARD;1;WARNING - [Triggered by _MemUsed%>90] - Physical Memory: Total: 16GB - Used: 15.152GB (95%) - Free: 867.742MB (5%)
+Service Critical[02-04-2016 04:26:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 04:21:45] SERVICE ALERT: REJK-P-MDL001;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>95] - Physical Memory: Total: 16GB - Used: 15.282GB (96%) - Free: 735MB (4%)
+Service Ok[02-04-2016 04:12:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[02-04-2016 04:11:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[02-04-2016 04:10:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 04:08:35] SERVICE ALERT: REJK-P-MDL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 16GB - Used: 13.427GB (84%) - Free: 2.573GB (16%)
+Service Ok[02-04-2016 04:03:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044603;OK;HARD;1;OK - MT_Odd_RVM_101 (044603) - 348 minutes since last transaction (0446031K.677)
+Service Warning[02-04-2016 04:03:25] SERVICE ALERT: REJK-P-SPS009;SPS EOD Distribution - Action List;WARNING;HARD;1;WARNING - 99% updated in 64 minutes - VCF: 48/0 (100%) - RVM: 41/1 (98%)
+Service Ok[02-04-2016 04:03:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044602;OK;HARD;1;OK - MT_Mal_RVM_101 (044602) - 377 minutes since last transaction (0446021K.2A4)
+Service Ok[02-04-2016 04:02:55] SERVICE ALERT: REJK-P-TCS013;IIS connections;OK;HARD;1;OK (Sample Period 60 sec) - Site Name="_Total", CurrentConnections=0, _ConnectionAttemptsPersec=0/sec
+Service Unknown[02-04-2016 04:01:55] SERVICE ALERT: REJK-P-TCS013;IIS connections;UNKNOWN;HARD;1;Collecting first WMI sample because the previous state data file (/tmp/cwpss_checkiisconnections_connections_rejkptcs013__TOTAL__.state) contained no data. Results will be shown the next time the plugin runs.
+
+April 02, 2016 03:00
+
+Service Warning[02-04-2016 03:56:45] SERVICE ALERT: REJK-P-MDL001;Ram usage;WARNING;HARD;1;WARNING - [Triggered by _MemUsed%>90] - Physical Memory: Total: 16GB - Used: 14.584GB (91%) - Free: 1.416GB (9%)
+Service Ok[02-04-2016 03:55:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[02-04-2016 03:54:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[02-04-2016 03:53:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 03:49:55] SERVICE ALERT: REJK-P-TCS013;IIS connections;OK;HARD;1;OK (Sample Period 61 sec) - Site Name="_Total", CurrentConnections=0, _ConnectionAttemptsPersec=0/sec
+Service Unknown[02-04-2016 03:48:55] SERVICE ALERT: REJK-P-TCS013;IIS connections;UNKNOWN;HARD;1;Collecting first WMI sample because the previous state data file (/tmp/cwpss_checkiisconnections_connections_rejkptcs013__TOTAL__.state) contained no data. Results will be shown the next time the plugin runs.
+Service Unknown[02-04-2016 03:48:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044603;UNKNOWN;HARD;1;UNKNOWN - MT_Odd_RVM_101 (044603) - SPS link down
+Service Ok[02-04-2016 03:48:15] SERVICE ALERT: AccessPoints;AP1_Borupvej_2_Hornslet-10.87.52.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 03:48:15] SERVICE ALERT: AccessPoints;AP1_Knudsvej_9_Herning-10.87.30.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 03:48:15] SERVICE ALERT: AccessPoints;AP1_Lovenornsgade_95_C_Horsens-10.87.16.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 03:48:15] SERVICE ALERT: AccessPoints;AP2_Bavnehojvej_19_Silkeborg-10.87.51.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 03:48:15] SERVICE ALERT: AccessPoints;AP1_Vestergade_16_Hammel-10.87.64.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 03:48:15] SERVICE ALERT: AccessPoints;AP1_Jomfrulokken_14_Randers-10.87.2.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 03:48:05] SERVICE ALERT: AccessPoints;AP1_Jegstrupvej_5_Hasselager-10.87.68.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 03:48:05] SERVICE ALERT: AccessPoints;AP5_Jegstrupvej_5_Hasselager-10.87.68.24;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 03:48:05] SERVICE ALERT: AccessPoints;AP1_Samsovej_3_Hinnerup-10.87.3.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 03:48:05] SERVICE ALERT: AccessPoints;AP1_Drewsensvej_MT_5_Silkeborg-10.87.63.20;OK;SOFT;2;OK - Got reply from host
+Service Unknown[02-04-2016 03:48:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044602;UNKNOWN;HARD;1;UNKNOWN - MT_Mal_RVM_101 (044602) - SPS link down
+Service Ok[02-04-2016 03:48:05] SERVICE ALERT: AccessPoints;AP2_Norregade_85_Uldum-10.87.25.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 03:48:05] SERVICE ALERT: AccessPoints;AP3_Bavnehojvej_19_Silkeborg-10.87.51.22;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 03:48:05] SERVICE ALERT: AccessPoints;AP1_Soren_Nymarks_Vej_3_Hojbjerg-10.87.1.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 03:48:05] SERVICE ALERT: AccessPoints;AP1_Niels_Bohrs_Vej_26_Skanderborg-10.87.26.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 03:47:25] SERVICE ALERT: AccessPoints;AP1_Knudsvej_9_Herning-10.87.30.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 03:47:25] SERVICE ALERT: AccessPoints;AP1_Borupvej_2_Hornslet-10.87.52.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 03:47:15] SERVICE ALERT: AccessPoints;AP1_Lovenornsgade_95_C_Horsens-10.87.16.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 03:47:15] SERVICE ALERT: AccessPoints;AP2_Bavnehojvej_19_Silkeborg-10.87.51.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 03:47:15] SERVICE ALERT: AccessPoints;AP1_Vestergade_16_Hammel-10.87.64.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 03:47:15] SERVICE ALERT: AccessPoints;AP1_Jomfrulokken_14_Randers-10.87.2.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 03:47:15] SERVICE ALERT: AccessPoints;AP1_Jegstrupvej_5_Hasselager-10.87.68.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 03:47:15] SERVICE ALERT: AccessPoints;AP5_Jegstrupvej_5_Hasselager-10.87.68.24;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 03:47:15] SERVICE ALERT: AccessPoints;AP1_Drewsensvej_MT_5_Silkeborg-10.87.63.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 03:47:15] SERVICE ALERT: AccessPoints;AP1_Samsovej_3_Hinnerup-10.87.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 03:47:15] SERVICE ALERT: AccessPoints;AP2_Norregade_85_Uldum-10.87.25.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 03:47:15] SERVICE ALERT: AccessPoints;AP3_Bavnehojvej_19_Silkeborg-10.87.51.22;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 03:47:05] SERVICE ALERT: AccessPoints;AP1_Soren_Nymarks_Vej_3_Hojbjerg-10.87.1.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 03:47:05] SERVICE ALERT: AccessPoints;AP1_Niels_Bohrs_Vej_26_Skanderborg-10.87.26.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[02-04-2016 03:38:25] SERVICE ALERT: REJK-P-SPS009;SPS EOD Distribution - Secondary Blacklist;WARNING;HARD;1;WARNING - 99% updated in 62 minutes - VCF: 49/0 (100%) - RVM: 41/1 (98%)
+Service Warning[02-04-2016 03:33:35] SERVICE ALERT: REJK-P-SPS004;SPS EOD Distribution - Primary Blacklist;WARNING;HARD;1;WARNING - 99% updated in 63 minutes - VCF: 54/0 (100%) - RVM: 39/1 (98%)
+Service Critical[02-04-2016 03:33:35] SERVICE ALERT: REJK-P-MDL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>95] - Physical Memory: Total: 16GB - Used: 15.404GB (96%) - Free: 610.203MB (4%)
+Service Warning[02-04-2016 03:33:25] SERVICE ALERT: REJK-P-SPS009;SPS EOD Distribution - Primary Blacklist;WARNING;HARD;1;WARNING - 99% updated in 63 minutes - VCF: 49/0 (100%) - RVM: 41/1 (98%)
+Service Ok[02-04-2016 03:26:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[02-04-2016 03:25:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[02-04-2016 03:24:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 03:23:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 03:22:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[02-04-2016 03:18:35] SERVICE ALERT: REJK-P-MDL002;Ram usage;WARNING;HARD;1;WARNING - [Triggered by _MemUsed%>90] - Physical Memory: Total: 16GB - Used: 14.716GB (92%) - Free: 1.283GB (8%)
+Service Ok[02-04-2016 03:07:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[02-04-2016 03:06:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Warning[02-04-2016 03:06:15] SERVICE ALERT: REJK-P-SMC002;Ram usage;WARNING;HARD;1;WARNING - 2.0% (334228 kB) free!
+Service Ok[02-04-2016 03:06:05] SERVICE ALERT: REJK-P-SMC003;Ram usage;OK;HARD;1;OK - 6.3% (1026200 kB) free.
+Service Critical[02-04-2016 03:05:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 03:03:35] SERVICE ALERT: REJK-P-MDL002;MDL incoming files queue;OK;HARD;1;OK
+Service Ok[02-04-2016 03:03:35] SERVICE ALERT: REJK-P-MDL001;MDL incoming files queue;OK;HARD;1;OK
+Service Warning[02-04-2016 03:01:05] SERVICE ALERT: REJK-P-SMC003;Ram usage;WARNING;HARD;1;WARNING - 1.9% (312976 kB) free!
+
+April 02, 2016 02:00
+
+Service Ok[02-04-2016 02:54:55] SERVICE ALERT: REJK-P-SPS003;FSV history in;OK;HARD;1;OK
+Service Ok[02-04-2016 02:54:55] SERVICE ALERT: REJK-P-SPS007;FSV history in;OK;HARD;1;OK
+Service Ok[02-04-2016 02:54:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 02:53:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 02:53:25] SERVICE ALERT: REJK-P-SPS004;FSV history in;OK;HARD;1;OK
+Service Ok[02-04-2016 02:52:15] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_4_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_4.exe" running (0 excluded). (List is on next line)
+Service Ok[02-04-2016 02:52:05] SERVICE ALERT: REJK-P-SPS006;FSV history in;OK;HARD;1;OK
+Service Ok[02-04-2016 02:52:05] SERVICE ALERT: REJK-P-SPS008;FSV history in;OK;HARD;1;OK
+Service Ok[02-04-2016 02:52:05] SERVICE ALERT: REJK-P-SPS010;FSV history in;OK;HARD;1;OK
+Service Ok[02-04-2016 02:51:35] SERVICE ALERT: REJK-P-SPS005;FSV history in;OK;HARD;1;OK
+Service Ok[02-04-2016 02:51:05] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_3_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded). (List is on next line)
+Service Ok[02-04-2016 02:51:05] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_2_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_2.exe" running (0 excluded). (List is on next line)
+Service Ok[02-04-2016 02:51:05] SERVICE ALERT: REJK-P-SPS009;FSV history in;OK;HARD;1;OK
+Service Ok[02-04-2016 02:50:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 02:49:55] SERVICE ALERT: REJK-P-SPS007;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 2081 sec exceeded threshold of 1800 sec
+Service Ok[02-04-2016 02:49:55] SERVICE ALERT: REJK-P-SPS001;FSV history in;OK;HARD;1;OK
+Service Critical[02-04-2016 02:49:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 02:48:35] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_2_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_2.exe" running (0 excluded). (List is on next line)
+Service Ok[02-04-2016 02:48:15] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_1_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_1.exe" running (0 excluded). (List is on next line)
+Service Ok[02-04-2016 02:48:15] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_4_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_4.exe" running (0 excluded). (List is on next line)
+Service Ok[02-04-2016 02:48:15] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_1_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_1.exe" running (0 excluded). (List is on next line)
+Service Ok[02-04-2016 02:48:15] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_3_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded). (List is on next line)
+Service Critical[02-04-2016 02:47:05] SERVICE ALERT: REJK-P-SPS008;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 2033 sec exceeded threshold of 1800 sec
+Service Critical[02-04-2016 02:46:05] SERVICE ALERT: REJK-P-SPS009;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 1858 sec exceeded threshold of 1800 sec
+Service Ok[02-04-2016 02:44:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049564;OK;HARD;1;OK - DSB_Mr_RVM_101 (049564) - 464 minutes since last transaction (0495641K.282)
+Service Critical[02-04-2016 02:43:25] SERVICE ALERT: REJK-P-SPS004;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 1951 sec exceeded threshold of 1800 sec
+Service Critical[02-04-2016 02:42:05] SERVICE ALERT: REJK-P-SPS006;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 1820 sec exceeded threshold of 1800 sec
+Service Critical[02-04-2016 02:42:05] SERVICE ALERT: REJK-P-SPS010;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 1818 sec exceeded threshold of 1800 sec
+Service Critical[02-04-2016 02:41:35] SERVICE ALERT: REJK-P-SPS005;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 1813 sec exceeded threshold of 1800 sec
+Service Critical[02-04-2016 02:39:55] SERVICE ALERT: REJK-P-SPS003;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 1853 sec exceeded threshold of 1800 sec
+Service Ok[02-04-2016 02:39:25] SERVICE ALERT: REJK-P-BCM003;HKP_Overall;OK;HARD;1;OK - RUNNING
+Service Ok[02-04-2016 02:39:25] SERVICE ALERT: REJK-P-BCM003;HKP_BCM;OK;HARD;1;OK - RUNNING
+Service Critical[02-04-2016 02:37:25] SERVICE ALERT: REJK-P-BCM003;HKP_BCM;CRITICAL;HARD;1;CRITICAL - ONERROR
+Service Critical[02-04-2016 02:37:15] SERVICE ALERT: REJK-P-BCM003;HKP_Overall;CRITICAL;HARD;1;CRITICAL - PARTIALLYRUNNING
+Service Critical[02-04-2016 02:34:55] SERVICE ALERT: REJK-P-SPS001;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 2002 sec exceeded threshold of 1800 sec
+Service Ok[02-04-2016 02:34:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 02:33:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 02:31:05] SERVICE ALERT: REJK-P-SPS001;FSV history out;OK;HARD;1;OK
+Service Unknown[02-04-2016 02:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049564;UNKNOWN;HARD;1;UNKNOWN - DSB_Mr_RVM_101 (049564) - SPS link down
+Service Critical[02-04-2016 02:26:05] SERVICE ALERT: REJK-P-SPS001;FSV history out;CRITICAL;HARD;1;CRITICAL - modified time 926 sec exceeded threshold of 900 sec
+Service Ok[02-04-2016 02:21:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045139;OK;HARD;1;OK - ARR_Vem_RVM_101 (045139) - 636 minutes since last transaction (0451391K.1CB)
+Service Ok[02-04-2016 02:21:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045168;OK;HARD;1;OK - ARR_Sl_RVM_101 (045168) - 380 minutes since last transaction (0451681K.4CD)
+Service Ok[02-04-2016 02:21:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049321;OK;HARD;1;OK - DSB_Gt_RVM_101 (049321) - 275 minutes since last transaction (0493211K.839)
+Service Ok[02-04-2016 02:18:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 02:17:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 02:11:15] SERVICE ALERT: REJK-P-TCS005;Netstat TCS;OK;HARD;1;OK
+Service Ok[02-04-2016 02:11:05] SERVICE ALERT: REJK-P-SQL003;Boris connections;OK;HARD;1;OK - Number of BORIS TCRW connected: 267
+Service Critical[02-04-2016 02:09:15] SERVICE ALERT: REJK-P-TCS005;Netstat TCS;CRITICAL;HARD;1;(Service Check Timed Out)
+Service Ok[02-04-2016 02:08:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 02:07:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[02-04-2016 02:06:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045139;UNKNOWN;HARD;1;UNKNOWN - ARR_Vem_RVM_101 (045139) - SPS link down
+Service Unknown[02-04-2016 02:06:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045168;UNKNOWN;HARD;1;UNKNOWN - ARR_Sl_RVM_101 (045168) - SPS link down
+Service Unknown[02-04-2016 02:06:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049321;UNKNOWN;HARD;1;UNKNOWN - DSB_Gt_RVM_101 (049321) - SPS link down
+Service Warning[02-04-2016 02:06:05] SERVICE ALERT: REJK-P-SQL003;Boris connections;WARNING;HARD;1;WARNING - Number of BORIS TCRW connected: 213
+Service Critical[02-04-2016 02:03:35] SERVICE ALERT: REJK-P-MDL002;MDL incoming files queue;CRITICAL;HARD;1;CRITICAL - count 1513 exceeded threshold of 1000
+Service Critical[02-04-2016 02:03:35] SERVICE ALERT: REJK-P-MDL001;MDL incoming files queue;CRITICAL;HARD;1;CRITICAL - count 1397 exceeded threshold of 1000
+Service Critical[02-04-2016 02:03:35] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_2_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_2.exe" running (0 excluded).
+Service Critical[02-04-2016 02:03:15] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_1_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_1.exe" running (0 excluded).
+Service Critical[02-04-2016 02:03:15] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_4_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_4.exe" running (0 excluded).
+Service Critical[02-04-2016 02:03:15] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_3_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded).
+Service Critical[02-04-2016 02:03:15] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_1_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_1.exe" running (0 excluded).
+Service Ok[02-04-2016 02:02:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 02:02:15] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_4_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_4.exe" running (0 excluded).
+Service Critical[02-04-2016 02:01:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 02:01:05] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_3_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded).
+Service Critical[02-04-2016 02:01:05] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_2_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_2.exe" running (0 excluded).
+Service Critical[02-04-2016 02:01:05] SERVICE ALERT: REJK-P-SQL003;Boris connections;CRITICAL;HARD;1;CRITICAL - Number of BORIS TCRW connected: 172
+
+April 02, 2016 01:00
+
+Service Critical[02-04-2016 01:41:05] SERVICE ALERT: REJK-P-INT002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>95] - Physical Memory: Total: 8GB - Used: 7.725GB (97%) - Free: 280.906MB (3%)
+Service Ok[02-04-2016 01:37:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[02-04-2016 01:36:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[02-04-2016 01:35:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 01:16:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[02-04-2016 01:15:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[02-04-2016 01:14:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 01:06:05] SERVICE ALERT: AccessPoints;AP1_Ravnstrupvej_11_Herlufmagle-10.81.5.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[02-04-2016 01:05:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 01:05:15] SERVICE ALERT: AccessPoints;AP1_Ravnstrupvej_11_Herlufmagle-10.81.5.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 01:04:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+
+April 02, 2016 00:00
+
+Service Ok[02-04-2016 00:59:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;HARD;3;OK - Got reply from host
+Service Ok[02-04-2016 00:49:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[02-04-2016 00:48:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[02-04-2016 00:47:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[02-04-2016 00:44:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;HARD;3;Critical - No response from host!
+Service Critical[02-04-2016 00:43:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[02-04-2016 00:42:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 00:12:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[02-04-2016 00:11:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[02-04-2016 00:01:25] SERVICE ALERT: REJK-P-SQL006;Job Execution - Creation of collection letter OSS - BO;OK;HARD;1;OK - Normal execution interval
+Service Ok[02-04-2016 00:00:05] SERVICE ALERT: REJK-P-SQL006;Job Execution - Creation of collection letter DSB - BO;OK;HARD;1;OK - Normal execution interval
+
+Alert History
+Last Updated: Tue Apr 12 15:21:56 CEST 2016
+Nagios® Core™ 3.4.1 - www.nagios.org
+Logged in as ThalesMNI
+View Status Detail For All Hosts
+View Notifications For All Hosts
+All Hosts and Services
+
+Earlier Archive
+Earlier Archive
+Log File Navigation
+Fri Apr 1 00:00:00 CEST 2016
+to
+Sat Apr 2 00:00:00 CEST 2016 More Recent Archive
+More Recent Archive
+
+File: /var/log/nagios/archives/nagios-04-02-2016-00.log
+State type options:
+
+History detail level for all hosts:
+
+ Hide Flapping Alerts
+ Hide Downtime Alerts
+ Hide Process Messages
+ Older Entries First
+Update
+
+April 01, 2016 23:00
+
+Service Ok[01-04-2016 23:47:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 23:46:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 23:41:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[01-04-2016 23:40:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[01-04-2016 23:39:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[01-04-2016 23:33:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049448;WARNING;HARD;1;WARNING - DSB_Hl_RVM_101 (049448) - 1443 minutes since last transaction (0494481K.418)
+Service Ok[01-04-2016 23:24:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[01-04-2016 23:23:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[01-04-2016 23:22:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 23:21:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048519;OK;HARD;1;OK - DSB_So_RVM_101 (048519) - 51 minutes since last transaction (0485191K.866)
+Service Ok[01-04-2016 23:21:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049510;OK;HARD;1;OK - DSB_Eb_RVM_101 (049510) - 785 minutes since last transaction (0495101K.269)
+Service Ok[01-04-2016 23:19:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047920;OK;HARD;1;OK - MET_Van_RVM_101 (047920) - 49 minutes since last transaction (0479201K.7DF)
+Service Ok[01-04-2016 23:18:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047018;OK;HARD;1;OK - MET_Øre_RVM_101 (047018) - 12 minutes since last transaction (0470181K.710)
+Service Ok[01-04-2016 23:18:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047003;OK;HARD;1;OK - MET_Lit_RVM_101 (047003) - 63 minutes since last transaction (0470031K.4E4)
+Service Ok[01-04-2016 23:18:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047917;OK;HARD;1;OK - MET_Kn_RVM_101 (047917) - 3 minutes since last transaction (0479171K.D93)
+Service Ok[01-04-2016 23:18:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047902;OK;HARD;1;OK - MET_Khs_RVM_101 (047902) - 47 minutes since last transaction (0479021K.5CC)
+Service Ok[01-04-2016 23:07:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[01-04-2016 23:06:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Ok[01-04-2016 23:06:35] SERVICE ALERT: AccessPoints;AP1_Samsoevej_29_Hinnerup-10.87.66.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[01-04-2016 23:06:35] SERVICE ALERT: AccessPoints;AP1_Mellemstrupvej_7_Grenaa-10.87.73.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[01-04-2016 23:06:35] SERVICE ALERT: AccessPoints;AP1_AArhusvej_3_Allingaabro-10.87.55.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[01-04-2016 23:06:25] SERVICE ALERT: AccessPoints;AP2_Norregade_50_Kjellerup-10.87.42.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[01-04-2016 23:06:25] SERVICE ALERT: AccessPoints;AP1_Fredensgade_45_Aarhus_C-10.87.67.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[01-04-2016 23:06:25] SERVICE ALERT: AccessPoints;AP2_Fredensgade_45_Aarhus_C-10.87.67.21;OK;SOFT;2;OK - Got reply from host
+Service Unknown[01-04-2016 23:06:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048519;UNKNOWN;HARD;1;UNKNOWN - DSB_So_RVM_101 (048519) - SPS link down
+Service Unknown[01-04-2016 23:06:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049510;UNKNOWN;HARD;1;UNKNOWN - DSB_Eb_RVM_101 (049510) - SPS link down
+Service Critical[01-04-2016 23:05:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[01-04-2016 23:05:45] SERVICE ALERT: AccessPoints;AP1_Samsoevej_29_Hinnerup-10.87.66.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[01-04-2016 23:05:45] SERVICE ALERT: AccessPoints;AP1_Mellemstrupvej_7_Grenaa-10.87.73.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[01-04-2016 23:05:45] SERVICE ALERT: AccessPoints;AP1_AArhusvej_3_Allingaabro-10.87.55.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[01-04-2016 23:05:35] SERVICE ALERT: AccessPoints;AP2_Norregade_50_Kjellerup-10.87.42.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[01-04-2016 23:05:35] SERVICE ALERT: AccessPoints;AP1_Fredensgade_45_Aarhus_C-10.87.67.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[01-04-2016 23:05:35] SERVICE ALERT: AccessPoints;AP2_Fredensgade_45_Aarhus_C-10.87.67.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[01-04-2016 23:04:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047920;UNKNOWN;HARD;1;UNKNOWN - MET_Van_RVM_101 (047920) - SPS link down
+Service Unknown[01-04-2016 23:03:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047018;UNKNOWN;HARD;1;UNKNOWN - MET_Øre_RVM_101 (047018) - SPS link down
+Service Unknown[01-04-2016 23:03:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047917;UNKNOWN;HARD;1;UNKNOWN - MET_Kn_RVM_101 (047917) - SPS link down
+Service Unknown[01-04-2016 23:03:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047003;UNKNOWN;HARD;1;UNKNOWN - MET_Lit_RVM_101 (047003) - SPS link down
+Service Unknown[01-04-2016 23:03:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047902;UNKNOWN;HARD;1;UNKNOWN - MET_Khs_RVM_101 (047902) - SPS link down
+Service Warning[01-04-2016 23:01:25] SERVICE ALERT: REJK-P-SQL006;Job Execution - Creation of collection letter OSS - BO;WARNING;HARD;1;WARNING - JOB - Creation of collection letter has not been executed since 2016-03-31 21:02:16. Current Status: Executing
+Service Critical[01-04-2016 23:00:05] SERVICE ALERT: REJK-P-SQL006;Job Execution - Creation of collection letter DSB - BO;CRITICAL;HARD;1;CRITICAL - JOB - Creation of collection letter has not been executed since 2016-03-31 21:13:20. Current Status: Waiting
+
+April 01, 2016 22:00
+
+Service Ok[01-04-2016 22:50:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 22:49:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 22:39:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 22:38:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 22:34:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[01-04-2016 22:33:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[01-04-2016 22:32:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 22:02:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 22:01:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 22:01:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[01-04-2016 22:00:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+
+April 01, 2016 21:00
+
+Service Critical[01-04-2016 21:59:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 21:44:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045160;OK;HARD;1;OK - ARR_Kæ_RVM_101 (045160) - 14 minutes since last transaction (0451601K.2CB)
+Service Ok[01-04-2016 21:32:55] SERVICE ALERT: REJK-P-TCF002;IIS connections;OK;HARD;1;OK (Sample Period 59 sec) - Site Name="_Total", CurrentConnections=1, _ConnectionAttemptsPersec=0/sec
+Service Unknown[01-04-2016 21:31:55] SERVICE ALERT: REJK-P-TCF002;IIS connections;UNKNOWN;HARD;1;Collecting first WMI sample because the previous state data file (/tmp/cwpss_checkiisconnections_connections_rejkptcf002__TOTAL__.state) contained no data. Results will be shown the next time the plugin runs.
+Service Ok[01-04-2016 21:18:35] SERVICE ALERT: REJK-P-MDL001;MDL incoming files queue;OK;HARD;1;OK
+Service Ok[01-04-2016 21:15:05] SERVICE ALERT: REJK-P-BCM003;RCOB import directory count;OK;HARD;1;OK
+Service Ok[01-04-2016 21:08:55] SERVICE ALERT: REJK-P-SQL003;Unprocessed TCS transactions;OK;HARD;1;OK
+Service Ok[01-04-2016 21:07:45] SERVICE ALERT: REJK-P-SQL003;SQL Job Execution - IFS Tracking Aggregation - DBA;OK;HARD;1;OK - IFS_Tracking_Aggregation execution status is normal
+Service Critical[01-04-2016 21:03:35] SERVICE ALERT: REJK-P-MDL001;MDL incoming files queue;CRITICAL;HARD;1;CRITICAL - count 2451 exceeded threshold of 1000
+Service Critical[01-04-2016 21:01:45] SERVICE ALERT: REJK-P-SQL003;SQL Job Execution - IFS Tracking Aggregation - DBA;CRITICAL;HARD;1;CRITICAL - IFS_Tracking_Aggregation Execution Status:Failed, Last Execution Date Time: 2016-04-01 21:00:00
+Service Ok[01-04-2016 21:01:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[01-04-2016 21:00:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+
+April 01, 2016 20:00
+
+Service Critical[01-04-2016 20:59:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 20:44:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[01-04-2016 20:43:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[01-04-2016 20:42:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[01-04-2016 20:15:05] SERVICE ALERT: REJK-P-BCM003;RCOB import directory count;CRITICAL;HARD;1;CRITICAL - count 3 exceeded threshold of 1
+Service Ok[01-04-2016 20:12:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 20:11:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[01-04-2016 20:03:55] SERVICE ALERT: REJK-P-SQL003;Unprocessed TCS transactions;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+
+April 01, 2016 19:00
+
+Service Ok[01-04-2016 19:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049440;OK;HARD;1;OK - DSB_Og_RVM_101 (049440) - 14 minutes since last transaction (0494401K.BCF)
+Service Ok[01-04-2016 19:56:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[01-04-2016 19:55:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[01-04-2016 19:54:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 19:39:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[01-04-2016 19:38:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[01-04-2016 19:37:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 19:35:45] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 0 row(s) in prg.ObjTransactionBuffer
+Service Critical[01-04-2016 19:35:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Warning[01-04-2016 19:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049440;WARNING;HARD;1;WARNING - DSB_Og_RVM_101 (049440) - 1454 minutes since last transaction (0494401K.BCE)
+Service Ok[01-04-2016 19:29:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 19:28:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 19:18:05] SERVICE ALERT: AccessPoints;AP1_Karolinevej_16_Slagelse-10.84.27.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[01-04-2016 19:18:05] SERVICE ALERT: AccessPoints;AP1_Hojgardsvej_3_Farevejle-10.84.36.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 19:17:15] SERVICE ALERT: AccessPoints;AP1_Karolinevej_16_Slagelse-10.84.27.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[01-04-2016 19:17:15] SERVICE ALERT: AccessPoints;AP1_Hojgardsvej_3_Farevejle-10.84.36.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 19:13:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[01-04-2016 19:12:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[01-04-2016 19:11:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 19:07:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 19:06:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[01-04-2016 19:04:55] SERVICE ALERT: REJK-P-SPS004;SPS EOD Distribution - Secondary Blacklist;CRITICAL;HARD;1;CRITICAL - 1 devices (RVM or VCF) has EOD older than previous version
+
+April 01, 2016 18:00
+
+Service Critical[01-04-2016 18:54:55] SERVICE ALERT: REJK-P-SPS004;SPS EOD Distribution - Action List;CRITICAL;HARD;1;CRITICAL - 1 devices (RVM or VCF) has EOD older than previous version
+Service Ok[01-04-2016 18:53:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 18:52:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 18:52:25] SERVICE ALERT: REJK-P-BCM003;HKP_BCM;OK;HARD;1;OK - RUNNING
+Service Ok[01-04-2016 18:52:15] SERVICE ALERT: REJK-P-BCM003;HKP_Overall;OK;HARD;1;OK - RUNNING
+Service Ok[01-04-2016 18:51:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 18:51:25] SERVICE ALERT: REJK-P-BCM003;HKP_Overall;CRITICAL;HARD;1;CRITICAL - PARTIALLYRUNNING
+Service Critical[01-04-2016 18:51:25] SERVICE ALERT: REJK-P-BCM003;HKP_BCM;CRITICAL;HARD;1;CRITICAL - ONERROR
+Service Critical[01-04-2016 18:50:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 18:35:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 18:34:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 18:26:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[01-04-2016 18:25:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[01-04-2016 18:24:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 18:19:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[01-04-2016 18:18:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[01-04-2016 18:17:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[01-04-2016 18:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045104;WARNING;HARD;1;WARNING - ARR_Hæ_RVM_101 (045104) - 1454 minutes since last transaction (0451041K.268)
+
+April 01, 2016 17:00
+
+Service Unknown[01-04-2016 17:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049371;UNKNOWN;HARD;1;UNKNOWN - DSB_Nf_RVM_101 (049371) - SPS link down
+Service Ok[01-04-2016 17:32:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 17:31:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 17:30:45] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 2555 row(s) in prg.ObjTransactionBuffer - oldest insert at 2016-04-01 17:25:02
+Service Critical[01-04-2016 17:30:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Ok[01-04-2016 17:24:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 17:23:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 17:16:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 17:15:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 17:00:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+
+April 01, 2016 16:00
+
+Service Critical[01-04-2016 16:59:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 16:29:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[01-04-2016 16:28:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[01-04-2016 16:27:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+
+April 01, 2016 15:00
+
+Service Ok[01-04-2016 15:53:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 15:52:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 15:50:45] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 1078 row(s) in prg.ObjTransactionBuffer - oldest insert at 2016-04-01 15:45:04
+Service Critical[01-04-2016 15:50:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Warning[01-04-2016 15:49:55] SERVICE ALERT: REJK-P-SPS004;SPS EOD Distribution - Secondary Blacklist;WARNING;HARD;1;WARNING - 99% updated in 60 minutes - VCF: 54/0 (100%) - RVM: 39/1 (98%)
+Service Warning[01-04-2016 15:44:55] SERVICE ALERT: REJK-P-SPS004;SPS EOD Distribution - Action List;WARNING;HARD;1;WARNING - 99% updated in 62 minutes - VCF: 53/0 (100%) - RVM: 39/1 (98%)
+Service Ok[01-04-2016 15:42:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[01-04-2016 15:41:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[01-04-2016 15:40:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 15:38:05] SERVICE ALERT: REJK-P-CIT005;Disk C: usage;OK;HARD;1;OK - C:\ Total=60.00GB, Used=36.55GB (60.9%), Free=23.45GB (39.1%)
+Service Ok[01-04-2016 15:34:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049449;OK;HARD;1;OK - DSB_Hl_RVM_102 (049449) - 32 minutes since last transaction (0494491K.A7E)
+Service Ok[01-04-2016 15:34:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049366;OK;HARD;1;OK - DSB_Kh_RVM_106 (049366) - 4 minutes since last transaction (0493661K.2B0)
+Service Ok[01-04-2016 15:33:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049364;OK;HARD;1;OK - DSB_Kh_RVM_104 (049364) - 3 minutes since last transaction (0493641K.75A)
+Service Ok[01-04-2016 15:33:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049448;OK;HARD;1;OK - DSB_Hl_RVM_101 (049448) - 963 minutes since last transaction (0494481K.418)
+Service Ok[01-04-2016 15:33:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049363;OK;HARD;1;OK - DSB_Kh_RVM_103 (049363) - 2 minutes since last transaction (0493631K.59F)
+Service Ok[01-04-2016 15:33:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049903;OK;HARD;1;OK - DSB_Ro_RVM_104 (049903) - 2 minutes since last transaction (0499031K.E21)
+Service Ok[01-04-2016 15:31:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049521;OK;HARD;1;OK - DSB_Ar_RVM_102 (049521) - 1 minutes since last transaction (0495211K.FAF)
+Service Ok[01-04-2016 15:31:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049362;OK;HARD;1;OK - DSB_Kh_RVM_102 (049362) - 1 minutes since last transaction (0493621K.B70)
+Service Ok[01-04-2016 15:31:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049019;OK;HARD;1;OK - DSB_Kh_RVM_105 (049019) - 1 minutes since last transaction (0490191K.952)
+Service Ok[01-04-2016 15:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049929;OK;HARD;1;OK - DSB_Lpt_RVM_101 (049929) - 194 minutes since last transaction (0499291K.0E2)
+Service Ok[01-04-2016 15:25:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 15:24:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 15:22:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 15:21:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[01-04-2016 15:19:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049449;UNKNOWN;HARD;1;UNKNOWN - DSB_Hl_RVM_102 (049449) - SPS link down
+Service Unknown[01-04-2016 15:19:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049366;UNKNOWN;HARD;1;UNKNOWN - DSB_Kh_RVM_106 (049366) - SPS link down
+Service Unknown[01-04-2016 15:18:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049364;UNKNOWN;HARD;1;UNKNOWN - DSB_Kh_RVM_104 (049364) - SPS link down
+Service Unknown[01-04-2016 15:18:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049448;UNKNOWN;HARD;1;UNKNOWN - DSB_Hl_RVM_101 (049448) - SPS link down
+Service Ok[01-04-2016 15:18:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049904;OK;HARD;1;OK - DSB_Kk_RVM_102 (049904) - 48 minutes since last transaction (0499041K.DE4)
+Service Unknown[01-04-2016 15:18:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049363;UNKNOWN;HARD;1;UNKNOWN - DSB_Kh_RVM_103 (049363) - SPS link down
+Service Unknown[01-04-2016 15:18:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049903;UNKNOWN;HARD;1;UNKNOWN - DSB_Ro_RVM_104 (049903) - SPS link down
+Service Unknown[01-04-2016 15:16:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049362;UNKNOWN;HARD;1;UNKNOWN - DSB_Kh_RVM_102 (049362) - SPS link down
+Service Ok[01-04-2016 15:15:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049520;OK;HARD;1;OK - DSB_Ar_RVM_101 (049520) - 0 minutes since last transaction (0495201K.AB3)
+Service Ok[01-04-2016 15:15:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049018;OK;HARD;1;OK - DSB_Kk_RVM_101 (049018) - 11 minutes since last transaction (0490181K.E3D)
+Service Ok[01-04-2016 15:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049012;OK;HARD;1;OK - DSB_Kk_RVM_103 (049012) - 11 minutes since last transaction (0490121K.CE6)
+Service Ok[01-04-2016 15:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049388;OK;HARD;1;OK - DSB_Od_RVM_103 (049388) - 44 minutes since last transaction (0493881K.2B6)
+Service Ok[01-04-2016 15:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049502;OK;HARD;1;OK - DSB_Od_RVM_101 (049502) - 29 minutes since last transaction (0495021K.5DD)
+Service Ok[01-04-2016 15:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049503;OK;HARD;1;OK - DSB_Od_RVM_102 (049503) - 59 minutes since last transaction (0495031K.73B)
+Service Ok[01-04-2016 15:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049924;OK;HARD;1;OK - DSB_Hg_RVM_102 (049924) - 29 minutes since last transaction (0499241K.4C8)
+Service Ok[01-04-2016 15:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049313;OK;HARD;1;OK - DSB_Cph_RVM_101 (049313) - 11 minutes since last transaction (0493131K.D8D)
+Service Unknown[01-04-2016 15:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049929;UNKNOWN;HARD;1;UNKNOWN - DSB_Lpt_RVM_101 (049929) - SPS link down
+Service Ok[01-04-2016 15:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049402;OK;HARD;1;OK - DSB_Fa_RVM_102 (049402) - 2 minutes since last transaction (0494021K.78C)
+Service Ok[01-04-2016 15:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049910;OK;HARD;1;OK - DSB_Kh_RVM_110 (049910) - 12 minutes since last transaction (0499101K.82D)
+Service Ok[01-04-2016 15:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049911;OK;HARD;1;OK - DSB_Htå_RVM_102 (049911) - 0 minutes since last transaction (0499111K.824)
+Service Ok[01-04-2016 15:07:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 15:06:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 15:06:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 15:06:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045154;CRITICAL;HARD;1;CRITICAL - ARR_Sm_RVM_101 (045154) - 2885 minutes since last transaction (0451541K.2FD)
+Service Critical[01-04-2016 15:05:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[01-04-2016 15:03:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049904;UNKNOWN;HARD;1;UNKNOWN - DSB_Kk_RVM_102 (049904) - SPS link down
+Service Unknown[01-04-2016 15:01:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049521;UNKNOWN;HARD;1;UNKNOWN - DSB_Ar_RVM_102 (049521) - SPS link down
+Service Unknown[01-04-2016 15:01:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049019;UNKNOWN;HARD;1;UNKNOWN - DSB_Kh_RVM_105 (049019) - SPS link down
+Service Unknown[01-04-2016 15:00:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049520;UNKNOWN;HARD;1;UNKNOWN - DSB_Ar_RVM_101 (049520) - SPS link down
+Service Unknown[01-04-2016 15:00:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049018;UNKNOWN;HARD;1;UNKNOWN - DSB_Kk_RVM_101 (049018) - SPS link down
+
+April 01, 2016 14:00
+
+Service Unknown[01-04-2016 14:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049012;UNKNOWN;HARD;1;UNKNOWN - DSB_Kk_RVM_103 (049012) - SPS link down
+Service Unknown[01-04-2016 14:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049388;UNKNOWN;HARD;1;UNKNOWN - DSB_Od_RVM_103 (049388) - SPS link down
+Service Unknown[01-04-2016 14:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049502;UNKNOWN;HARD;1;UNKNOWN - DSB_Od_RVM_101 (049502) - SPS link down
+Service Unknown[01-04-2016 14:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049503;UNKNOWN;HARD;1;UNKNOWN - DSB_Od_RVM_102 (049503) - SPS link down
+Service Unknown[01-04-2016 14:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049924;UNKNOWN;HARD;1;UNKNOWN - DSB_Hg_RVM_102 (049924) - SPS link down
+Service Unknown[01-04-2016 14:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049313;UNKNOWN;HARD;1;UNKNOWN - DSB_Cph_RVM_101 (049313) - SPS link down
+Service Unknown[01-04-2016 14:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049402;UNKNOWN;HARD;1;UNKNOWN - DSB_Fa_RVM_102 (049402) - SPS link down
+Service Unknown[01-04-2016 14:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049910;UNKNOWN;HARD;1;UNKNOWN - DSB_Kh_RVM_110 (049910) - SPS link down
+Service Unknown[01-04-2016 14:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049911;UNKNOWN;HARD;1;UNKNOWN - DSB_Htå_RVM_102 (049911) - SPS link down
+Service Ok[01-04-2016 14:55:15] SERVICE ALERT: AccessPoints;AP2_Gunnar_Clausensvej_4_Viby_j-10.87.71.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[01-04-2016 14:54:35] SERVICE ALERT: AccessPoints;AP2_Storkagervej_15_Risskov-10.87.70.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[01-04-2016 14:54:35] SERVICE ALERT: AccessPoints;AP1_Bisgsrdmark_5_Holstebro-10.87.41.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 14:54:15] SERVICE ALERT: AccessPoints;AP2_Gunnar_Clausensvej_4_Viby_j-10.87.71.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[01-04-2016 14:53:45] SERVICE ALERT: AccessPoints;AP2_Storkagervej_15_Risskov-10.87.70.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[01-04-2016 14:53:35] SERVICE ALERT: AccessPoints;AP1_Bisgsrdmark_5_Holstebro-10.87.41.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 14:52:25] SERVICE ALERT: REJK-P-BCM003;HKP_Overall;OK;HARD;1;OK - RUNNING
+Service Ok[01-04-2016 14:52:25] SERVICE ALERT: REJK-P-BCM003;HKP_BCM;OK;HARD;1;OK - RUNNING
+Service Critical[01-04-2016 14:51:25] SERVICE ALERT: REJK-P-BCM003;HKP_Overall;CRITICAL;HARD;1;CRITICAL - PARTIALLYRUNNING
+Service Critical[01-04-2016 14:51:25] SERVICE ALERT: REJK-P-BCM003;HKP_BCM;CRITICAL;HARD;1;CRITICAL - ONERROR
+Service Ok[01-04-2016 14:39:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[01-04-2016 14:38:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Warning[01-04-2016 14:38:05] SERVICE ALERT: REJK-P-CIT005;Disk C: usage;WARNING;HARD;1;WARNING - [Triggered by _Used%>90] - C:\ Total=60.00GB, Used=55.75GB (92.9%), Free=4.25GB (7.1%)
+Service Critical[01-04-2016 14:37:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 14:21:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049544;OK;HARD;1;OK - DSB_Ã…s_RVM_101 (049544) - 5 minutes since last transaction (0495441K.2AC)
+Service Ok[01-04-2016 14:18:25] SERVICE ALERT: REJK-P-SPS003;SPS EOD Distribution - Secondary Blacklist;OK;HARD;1;OK - VCF: 54/0 (100%) - RVM: 42/0 (100%)
+Service Ok[01-04-2016 14:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048126;OK;HARD;1;OK - STO_Alb_RVM_101 (048126) - 12 minutes since last transaction (0481261K.6C5)
+Service Ok[01-04-2016 14:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049564;OK;HARD;1;OK - DSB_Mr_RVM_101 (049564) - 14 minutes since last transaction (0495641K.281)
+Service Ok[01-04-2016 14:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048153;OK;HARD;1;OK - STO_Li_RVM_101 (048153) - 12 minutes since last transaction (0481531K.30F)
+Service Critical[01-04-2016 14:08:05] SERVICE ALERT: REJK-P-CIT005;Disk C: usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _Used%>95] - C:\ Total=60.00GB, Used=57.55GB (95.9%), Free=2.45GB (4.1%)
+Service Ok[01-04-2016 14:07:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[01-04-2016 14:06:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Ok[01-04-2016 14:06:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048001;OK;HARD;1;OK - STO_Kj_RVM_101 (048001) - 5 minutes since last transaction (0480011K.69F)
+Service Critical[01-04-2016 14:05:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 14:05:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[01-04-2016 14:04:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Ok[01-04-2016 14:03:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049508;OK;HARD;1;OK - DSB_Ap_RVM_101 (049508) - 3 minutes since last transaction (0495081K.24D)
+Service Critical[01-04-2016 14:03:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+
+April 01, 2016 13:00
+
+Service Unknown[01-04-2016 13:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048126;UNKNOWN;HARD;1;UNKNOWN - STO_Alb_RVM_101 (048126) - SPS link down
+Service Warning[01-04-2016 13:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049564;WARNING;HARD;1;WARNING - DSB_Mr_RVM_101 (049564) - 1453 minutes since last transaction (0495641K.280)
+Service Unknown[01-04-2016 13:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048153;UNKNOWN;HARD;1;UNKNOWN - STO_Li_RVM_101 (048153) - SPS link down
+Service Warning[01-04-2016 13:21:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048001;WARNING;HARD;1;WARNING - STO_Kj_RVM_101 (048001) - 1445 minutes since last transaction (0480011K.69E)
+Service Ok[01-04-2016 13:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049923;OK;HARD;1;OK - DSB_Ro_RVM_101 (049923) - 2 minutes since last transaction (0499233K.19E)
+Service Ok[01-04-2016 13:05:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[01-04-2016 13:04:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[01-04-2016 13:03:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 13:03:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 13:02:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+
+April 01, 2016 12:00
+
+Service Unknown[01-04-2016 12:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049923;UNKNOWN;HARD;1;UNKNOWN - DSB_Ro_RVM_101 (049923) - SPS link down
+Service Ok[01-04-2016 12:49:55] SERVICE ALERT: REJK-P-WEB006;IIS connections;OK;HARD;1;OK (Sample Period 3 sec) - Site Name="_Total", CurrentConnections=7, _ConnectionAttemptsPersec=0/sec
+Service Unknown[01-04-2016 12:49:55] SERVICE ALERT: REJK-P-WEB006;IIS connections;UNKNOWN;HARD;1;Collecting first WMI sample because the previous state data file (/tmp/cwpss_checkiisconnections_connections_rejkpweb006__TOTAL__.state) contained no data. Results will be shown the next time the plugin runs.
+Service Ok[01-04-2016 12:43:05] SERVICE ALERT: AccessPoints;AP1_Aabenraavej_67_Skaerbaek-10.85.99.20;OK;HARD;3;OK - Got reply from host
+Service Ok[01-04-2016 12:33:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[01-04-2016 12:32:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[01-04-2016 12:31:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 12:31:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045121;OK;HARD;1;OK - ARR_Tb_RVM_101 (045121) - 301 minutes since last transaction (0451211K.6C6)
+Service Ok[01-04-2016 12:30:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049316;OK;HARD;1;OK - DSB_Trk_RVM_101 (049316) - 29 minutes since last transaction (0493161K.3CF)
+Service Ok[01-04-2016 12:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049453;OK;HARD;1;OK - DSB_Kv_RVM_101 (049453) - 1379 minutes since last transaction (0494531K.241)
+Service Warning[01-04-2016 12:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045160;WARNING;HARD;1;WARNING - ARR_Kæ_RVM_101 (045160) - 1454 minutes since last transaction (0451601K.2CA)
+Service Ok[01-04-2016 12:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049440;OK;HARD;1;OK - DSB_Og_RVM_101 (049440) - 1034 minutes since last transaction (0494401K.BCE)
+Service Ok[01-04-2016 12:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049530;OK;HARD;1;OK - DSB_Hr_RVM_101 (049530) - 13 minutes since last transaction (0495301K.19B)
+Service Warning[01-04-2016 12:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049403;WARNING;HARD;1;WARNING - DSB_Tl_RVM_101 (049403) - 1499 minutes since last transaction (0494031K.49F)
+Service Ok[01-04-2016 12:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049528;OK;HARD;1;OK - DSB_Ty_RVM_101 (049528) - 119 minutes since last transaction (0495281K.645)
+Service Ok[01-04-2016 12:21:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 12:20:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[01-04-2016 12:16:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045121;UNKNOWN;HARD;1;UNKNOWN - ARR_Tb_RVM_101 (045121) - SPS link down
+Service Unknown[01-04-2016 12:15:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049316;UNKNOWN;HARD;1;UNKNOWN - DSB_Trk_RVM_101 (049316) - SPS link down
+Service Unknown[01-04-2016 12:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049453;UNKNOWN;HARD;1;UNKNOWN - DSB_Kv_RVM_101 (049453) - SPS link down
+Service Unknown[01-04-2016 12:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049440;UNKNOWN;HARD;1;UNKNOWN - DSB_Og_RVM_101 (049440) - SPS link down
+Service Unknown[01-04-2016 12:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049403;UNKNOWN;HARD;1;UNKNOWN - DSB_Tl_RVM_101 (049403) - SPS link down
+Service Unknown[01-04-2016 12:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049530;UNKNOWN;HARD;1;UNKNOWN - DSB_Hr_RVM_101 (049530) - SPS link down
+Service Unknown[01-04-2016 12:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049528;UNKNOWN;HARD;1;UNKNOWN - DSB_Ty_RVM_101 (049528) - SPS link down
+Service Ok[01-04-2016 12:01:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 12:00:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+
+April 01, 2016 11:00
+
+Service Ok[01-04-2016 11:50:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 11:49:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 11:46:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045164;OK;HARD;1;OK - ARR_Hu_RVM_101 (045164) - 1 minutes since last transaction (0451641K.425)
+Service Ok[01-04-2016 11:45:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Warning[01-04-2016 11:44:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049403;WARNING;HARD;1;WARNING - DSB_Tl_RVM_101 (049403) - 1454 minutes since last transaction (0494031K.49F)
+Service Critical[01-04-2016 11:44:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 11:43:55] SERVICE ALERT: REJK-P-WEB007;IIS connections;OK;HARD;1;OK (Sample Period 55 sec) - Site Name="_Total", CurrentConnections=50, _ConnectionAttemptsPersec=0/sec
+Service Warning[01-04-2016 11:43:25] SERVICE ALERT: REJK-P-SPS003;SPS EOD Distribution - Secondary Blacklist;WARNING;HARD;1;WARNING - 99% updated in 64 minutes - VCF: 53/1 (98%) - RVM: 42/0 (100%)
+Service Warning[01-04-2016 11:42:55] SERVICE ALERT: REJK-P-WEB007;IIS connections;WARNING;HARD;1;WARNING (Sample Period 5 sec) - [Triggered by CurrentConnections>50] - Site Name="_Total", CurrentConnections=51, _ConnectionAttemptsPersec=1/sec
+Service Ok[01-04-2016 11:36:55] SERVICE ALERT: REJK-P-WEB006;IIS connections;OK;HARD;1;OK (Sample Period 58 sec) - Site Name="_Total", CurrentConnections=7, _ConnectionAttemptsPersec=0/sec
+Service Ok[01-04-2016 11:36:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049525;OK;HARD;1;OK - DSB_Vjs_RVM_101 (049525) - 5 minutes since last transaction (0495251K.37F)
+Service Unknown[01-04-2016 11:35:55] SERVICE ALERT: REJK-P-WEB006;IIS connections;UNKNOWN;HARD;1;Collecting first WMI sample because the previous state data file (/tmp/cwpss_checkiisconnections_connections_rejkpweb006__TOTAL__.state) contained no data. Results will be shown the next time the plugin runs.
+Service Ok[01-04-2016 11:34:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045138;OK;HARD;1;OK - ARR_Uf_RVM_101 (045138) - 4 minutes since last transaction (0451381K.0CE)
+Service Ok[01-04-2016 11:19:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045001;OK;HARD;1;OK - NT_Ken_RVM_101 (045001) - 4 minutes since last transaction (0450011K.554)
+Service Warning[01-04-2016 11:16:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045164;WARNING;HARD;1;WARNING - ARR_Hu_RVM_101 (045164) - 1441 minutes since last transaction (0451641K.424)
+Service Ok[01-04-2016 11:15:45] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 0 row(s) in prg.ObjTransactionBuffer
+Service Critical[01-04-2016 11:15:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Ok[01-04-2016 11:06:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047020;OK;HARD;1;OK - MET_Amb_RVM_101 (047020) - 28 minutes since last transaction (0470201K.018)
+Service Ok[01-04-2016 11:06:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047005;OK;HARD;1;OK - MET_Fb_RVM_101 (047005) - 14 minutes since last transaction (0470051K.077)
+Service Ok[01-04-2016 11:04:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047019;OK;HARD;1;OK - MET_Vea_RVM_101 (047019) - 19 minutes since last transaction (0470191K.618)
+Service Ok[01-04-2016 11:04:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047004;OK;HARD;1;OK - MET_Sot_RVM_101 (047004) - 19 minutes since last transaction (0470041K.AC6)
+Service Ok[01-04-2016 11:04:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047920;OK;HARD;1;OK - MET_Van_RVM_101 (047920) - 25 minutes since last transaction (0479201K.7C3)
+Service Ok[01-04-2016 11:04:35] SERVICE ALERT: AccessPoints;AP1_Markedspladsen_6_Logstor-10.75.1.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[01-04-2016 11:04:35] SERVICE ALERT: AccessPoints;AP1_Industrivej_16_loekken-10.75.36.20;OK;SOFT;2;OK - Got reply from host
+Service Unknown[01-04-2016 11:04:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045001;UNKNOWN;HARD;1;UNKNOWN - NT_Ken_RVM_101 (045001) - SPS link down
+Service Ok[01-04-2016 11:04:35] SERVICE ALERT: AccessPoints;AP1_Harald_Fishersvej_6_Lokken-10.75.5.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[01-04-2016 11:04:35] SERVICE ALERT: AccessPoints;AP1_Lundeborgvej_22_Aalborg-10.75.28.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[01-04-2016 11:04:35] SERVICE ALERT: AccessPoints;AP1_Industrivej_5_Hurup-10.75.33.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[01-04-2016 11:04:35] SERVICE ALERT: AccessPoints;AP1_Halkaervej_42_Nibe-10.75.45.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[01-04-2016 11:04:25] SERVICE ALERT: AccessPoints;AP1_Brinken_5_Ostervraa-10.75.54.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[01-04-2016 11:03:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047018;OK;HARD;1;OK - MET_Øre_RVM_101 (047018) - 78 minutes since last transaction (0470181K.6EC)
+Service Critical[01-04-2016 11:03:45] SERVICE ALERT: AccessPoints;AP1_Industrivej_16_loekken-10.75.36.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[01-04-2016 11:03:45] SERVICE ALERT: AccessPoints;AP1_Markedspladsen_6_Logstor-10.75.1.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[01-04-2016 11:03:35] SERVICE ALERT: AccessPoints;AP1_Harald_Fishersvej_6_Lokken-10.75.5.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[01-04-2016 11:03:35] SERVICE ALERT: AccessPoints;AP1_Lundeborgvej_22_Aalborg-10.75.28.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[01-04-2016 11:03:35] SERVICE ALERT: AccessPoints;AP1_Industrivej_5_Hurup-10.75.33.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[01-04-2016 11:03:35] SERVICE ALERT: AccessPoints;AP1_Halkaervej_42_Nibe-10.75.45.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[01-04-2016 11:03:35] SERVICE ALERT: AccessPoints;AP1_Brinken_5_Ostervraa-10.75.54.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 11:03:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047917;OK;HARD;1;OK - MET_Kn_RVM_101 (047917) - 48 minutes since last transaction (0479171K.D69)
+Service Ok[01-04-2016 11:03:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047003;OK;HARD;1;OK - MET_Lit_RVM_101 (047003) - 48 minutes since last transaction (0470031K.4C5)
+Service Ok[01-04-2016 11:03:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047017;OK;HARD;1;OK - MET_Bc_RVM_101 (047017) - 18 minutes since last transaction (0470171K.F76)
+Service Ok[01-04-2016 11:03:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047902;OK;HARD;1;OK - MET_Khs_RVM_101 (047902) - 107 minutes since last transaction (0479021K.5C3)
+Service Ok[01-04-2016 11:03:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047002;OK;HARD;1;OK - MET_Fl_RVM_101 (047002) - 32 minutes since last transaction (0470021K.1E0)
+
+April 01, 2016 10:00
+
+Service Ok[01-04-2016 10:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044600;OK;HARD;1;OK - MT_Trg_RVM_101 (044600) - 10 minutes since last transaction (0446001K.182)
+Service Ok[01-04-2016 10:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048004;OK;HARD;1;OK - STO_Jsi_RVM_101 (048004) - 8 minutes since last transaction (0480041K.3CC)
+Service Unknown[01-04-2016 10:51:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047020;UNKNOWN;HARD;1;UNKNOWN - MET_Amb_RVM_101 (047020) - SPS link down
+Service Unknown[01-04-2016 10:51:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047005;UNKNOWN;HARD;1;UNKNOWN - MET_Fb_RVM_101 (047005) - SPS link down
+Service Unknown[01-04-2016 10:49:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047019;UNKNOWN;HARD;1;UNKNOWN - MET_Vea_RVM_101 (047019) - SPS link down
+Service Unknown[01-04-2016 10:49:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047004;UNKNOWN;HARD;1;UNKNOWN - MET_Sot_RVM_101 (047004) - SPS link down
+Service Unknown[01-04-2016 10:49:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047920;UNKNOWN;HARD;1;UNKNOWN - MET_Van_RVM_101 (047920) - SPS link down
+Service Unknown[01-04-2016 10:48:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047018;UNKNOWN;HARD;1;UNKNOWN - MET_Øre_RVM_101 (047018) - SPS link down
+Service Unknown[01-04-2016 10:48:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047917;UNKNOWN;HARD;1;UNKNOWN - MET_Kn_RVM_101 (047917) - SPS link down
+Service Unknown[01-04-2016 10:48:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047003;UNKNOWN;HARD;1;UNKNOWN - MET_Lit_RVM_101 (047003) - SPS link down
+Service Unknown[01-04-2016 10:48:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047017;UNKNOWN;HARD;1;UNKNOWN - MET_Bc_RVM_101 (047017) - SPS link down
+Service Unknown[01-04-2016 10:48:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047902;UNKNOWN;HARD;1;UNKNOWN - MET_Khs_RVM_101 (047902) - SPS link down
+Service Unknown[01-04-2016 10:48:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047002;UNKNOWN;HARD;1;UNKNOWN - MET_Fl_RVM_101 (047002) - SPS link down
+Service Ok[01-04-2016 10:47:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 10:46:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 10:40:45] SERVICE ALERT: AccessPoints;AP1_Haandvaerkersvinget_Tinglev-10.85.104.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[01-04-2016 10:40:45] SERVICE ALERT: AccessPoints;AP1_Stationsvej_6_Nordborg-10.85.108.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 10:39:55] SERVICE ALERT: AccessPoints;AP1_Haandvaerkersvinget_Tinglev-10.85.104.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[01-04-2016 10:39:45] SERVICE ALERT: AccessPoints;AP1_Stationsvej_6_Nordborg-10.85.108.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 10:31:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 10:30:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 10:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045159;OK;HARD;1;OK - ARR_Td_RVM_101 (045159) - 14 minutes since last transaction (0451591K.13A)
+Service Ok[01-04-2016 10:29:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 10:28:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+
+April 01, 2016 09:00
+
+Service Unknown[01-04-2016 09:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048004;UNKNOWN;HARD;1;UNKNOWN - STO_Jsi_RVM_101 (048004) - SPS link down
+Service Ok[01-04-2016 09:59:05] SERVICE ALERT: AccessPoints;AP1_Rostvedvej_7_Ronde-10.87.60.20;OK;HARD;3;OK - Got reply from host
+Service Ok[01-04-2016 09:58:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[01-04-2016 09:57:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[01-04-2016 09:56:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 09:45:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 09:44:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 09:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045127;OK;HARD;1;OK - ARR_Vno_RVM_101 (045127) - 1154 minutes since last transaction (0451271K.3D3)
+Service Ok[01-04-2016 09:26:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[01-04-2016 09:25:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[01-04-2016 09:24:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[01-04-2016 09:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045127;UNKNOWN;HARD;1;UNKNOWN - ARR_Vno_RVM_101 (045127) - SPS link down
+Service Warning[01-04-2016 09:06:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049525;WARNING;HARD;1;WARNING - DSB_Vjs_RVM_101 (049525) - 1445 minutes since last transaction (0495251K.37E)
+Service Ok[01-04-2016 09:03:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047917;OK;HARD;1;OK - MET_Kn_RVM_101 (047917) - 48 minutes since last transaction (0479171K.D65)
+Service Ok[01-04-2016 09:03:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047017;OK;HARD;1;OK - MET_Bc_RVM_101 (047017) - 12 minutes since last transaction (0470171K.F73)
+
+April 01, 2016 08:00
+
+Service Warning[01-04-2016 08:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049550;WARNING;HARD;1;WARNING - DSB_Sis_RVM_101 (049550) - 20174 minutes since last transaction (0495501K.06D)
+Service Ok[01-04-2016 08:54:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 08:53:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[01-04-2016 08:51:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049544;WARNING;HARD;1;WARNING - DSB_Ã…s_RVM_101 (049544) - 1445 minutes since last transaction (0495441K.2AB)
+Service Unknown[01-04-2016 08:48:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047917;UNKNOWN;HARD;1;UNKNOWN - MET_Kn_RVM_101 (047917) - SPS link down
+Service Unknown[01-04-2016 08:48:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047017;UNKNOWN;HARD;1;UNKNOWN - MET_Bc_RVM_101 (047017) - SPS link down
+Service Ok[01-04-2016 08:44:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 08:43:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[01-04-2016 08:43:15] SERVICE ALERT: AccessPoints;AP1_Aabenraavej_67_Skaerbaek-10.85.99.20;CRITICAL;HARD;3;Critical - No response from host!
+Service Critical[01-04-2016 08:42:15] SERVICE ALERT: AccessPoints;AP1_Aabenraavej_67_Skaerbaek-10.85.99.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[01-04-2016 08:41:15] SERVICE ALERT: AccessPoints;AP1_Aabenraavej_67_Skaerbaek-10.85.99.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 08:38:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 08:37:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 08:19:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;3;OK - Got reply from host
+Service Ok[01-04-2016 08:18:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049542;OK;HARD;1;OK - DSB_Hjs_RVM_101 (049542) - 91 minutes since last transaction (0495421K.310)
+Service Critical[01-04-2016 08:18:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[01-04-2016 08:17:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 08:07:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Ok[01-04-2016 08:07:15] SERVICE ALERT: AccessPoints;AP1_Kobenhavn_Bernstoffsgade-10.65.2.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[01-04-2016 08:07:15] SERVICE ALERT: AccessPoints;AP3_Kobenhavn_Bernstoffsgade-10.65.2.22;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 08:06:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[01-04-2016 08:06:15] SERVICE ALERT: AccessPoints;AP1_Kobenhavn_Bernstoffsgade-10.65.2.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[01-04-2016 08:06:15] SERVICE ALERT: AccessPoints;AP3_Kobenhavn_Bernstoffsgade-10.65.2.22;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[01-04-2016 08:05:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[01-04-2016 08:03:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049542;UNKNOWN;HARD;1;UNKNOWN - DSB_Hjs_RVM_101 (049542) - SPS link down
+
+April 01, 2016 07:00
+
+Service Ok[01-04-2016 07:50:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[01-04-2016 07:49:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[01-04-2016 07:48:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 07:45:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045163;OK;HARD;1;OK - ARR_Bic_RVM_101 (045163) - 14 minutes since last transaction (0451631K.2BA)
+Service Ok[01-04-2016 07:44:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045020;OK;HARD;1;OK - NT_Hhs_RVM_101 (045020) - 44 minutes since last transaction (0450201K.A39)
+Service Critical[01-04-2016 07:44:05] SERVICE ALERT: AccessPoints;AP1_Rostvedvej_7_Ronde-10.87.60.20;CRITICAL;HARD;3;Critical - No response from host!
+Service Critical[01-04-2016 07:43:05] SERVICE ALERT: AccessPoints;AP1_Rostvedvej_7_Ronde-10.87.60.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[01-04-2016 07:42:05] SERVICE ALERT: AccessPoints;AP1_Rostvedvej_7_Ronde-10.87.60.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 07:33:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[01-04-2016 07:32:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[01-04-2016 07:31:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[01-04-2016 07:29:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045020;UNKNOWN;HARD;1;UNKNOWN - NT_Hhs_RVM_101 (045020) - SPS link down
+Service Ok[01-04-2016 07:16:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[01-04-2016 07:15:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Ok[01-04-2016 07:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045147;OK;HARD;1;OK - ARR_Hx_RVM_101 (045147) - 14 minutes since last transaction (0451471K.3EF)
+Service Ok[01-04-2016 07:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049563;OK;HARD;1;OK - DSB_Os_RVM_101 (049563) - 14 minutes since last transaction (0495631K.34C)
+Service Critical[01-04-2016 07:14:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 07:03:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045135;OK;HARD;1;OK - ARR_Rj_RVM_101 (045135) - 2 minutes since last transaction (0451351K.CA1)
+Service Ok[01-04-2016 07:01:05] SERVICE ALERT: REJK-P-SMC003;Ram usage;OK;HARD;1;OK - 2.4% (395336 kB) free.
+
+April 01, 2016 06:00
+
+Service Ok[01-04-2016 06:59:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049550;OK;HARD;1;OK - DSB_Sis_RVM_101 (049550) - 20054 minutes since last transaction (0495501K.06D)
+Service Ok[01-04-2016 06:59:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 06:58:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[01-04-2016 06:51:05] SERVICE ALERT: REJK-P-SMC003;Ram usage;WARNING;HARD;1;WARNING - 1.1% (184320 kB) free!
+Service Ok[01-04-2016 06:48:25] SERVICE ALERT: REJK-P-SPS005;SPS EOD Distribution - Action List;OK;HARD;1;OK - VCF: 53/0 (100%) - RVM: 37/0 (100%)
+Service Ok[01-04-2016 06:48:25] SERVICE ALERT: REJK-P-SPS005;SPS EOD Distribution - Primary Blacklist;OK;HARD;1;OK - VCF: 53/0 (100%) - RVM: 37/0 (100%)
+Service Unknown[01-04-2016 06:48:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045135;UNKNOWN;HARD;1;UNKNOWN - ARR_Rj_RVM_101 (045135) - SPS link down
+Service Ok[01-04-2016 06:46:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048039;OK;HARD;1;OK - STO_Ch_RVM_101 (048039) - 856 minutes since last transaction (0480391K.A4E)
+Service Ok[01-04-2016 06:44:55] SERVICE ALERT: REJK-P-SPS005;SPS EOD Distribution - Secondary Blacklist;OK;HARD;1;OK - VCF: 0/52 (0%) - RVM: 0/37 (0%)
+Service Unknown[01-04-2016 06:44:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049550;UNKNOWN;HARD;1;UNKNOWN - DSB_Sis_RVM_101 (049550) - SPS link down
+Service Critical[01-04-2016 06:43:25] SERVICE ALERT: REJK-P-SPS005;SPS EOD Distribution - Action List;CRITICAL;HARD;1;CRITICAL - 1 devices (RVM or VCF) has EOD older than previous version
+Service Warning[01-04-2016 06:43:25] SERVICE ALERT: REJK-P-SPS005;SPS EOD Distribution - Primary Blacklist;WARNING;HARD;1;WARNING - 99% updated in 253 minutes - VCF: 52/0 (100%) - RVM: 36/1 (97%)
+Service Ok[01-04-2016 06:41:05] SERVICE ALERT: REJK-P-SMC003;Ram usage;OK;HARD;1;OK - 6.0% (987576 kB) free.
+Service Critical[01-04-2016 06:39:55] SERVICE ALERT: REJK-P-SPS005;SPS EOD Distribution - Secondary Blacklist;CRITICAL;HARD;1;CRITICAL - 1 devices (RVM or VCF) has EOD older than previous version
+Service Warning[01-04-2016 06:36:05] SERVICE ALERT: REJK-P-SMC003;Ram usage;WARNING;HARD;1;WARNING - 1.9% (309664 kB) free!
+Service Ok[01-04-2016 06:32:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[01-04-2016 06:31:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[01-04-2016 06:30:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 06:10:05] SERVICE ALERT: AccessPoints;AP1_Stationsvej_5_Skaelskor-10.84.25.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 06:09:05] SERVICE ALERT: AccessPoints;AP1_Stationsvej_5_Skaelskor-10.84.25.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 06:06:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047020;OK;HARD;1;OK - MET_Amb_RVM_101 (047020) - 185 minutes since last transaction (0470201K.007)
+Service Ok[01-04-2016 06:06:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047005;OK;HARD;1;OK - MET_Fb_RVM_101 (047005) - 77 minutes since last transaction (0470051K.064)
+Service Ok[01-04-2016 06:04:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047019;OK;HARD;1;OK - MET_Vea_RVM_101 (047019) - 138 minutes since last transaction (0470191K.60D)
+Service Ok[01-04-2016 06:04:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047004;OK;HARD;1;OK - MET_Sot_RVM_101 (047004) - 361 minutes since last transaction (0470041K.AB6)
+Service Ok[01-04-2016 06:04:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047920;OK;HARD;1;OK - MET_Van_RVM_101 (047920) - 6 minutes since last transaction (0479201K.7B9)
+Service Ok[01-04-2016 06:01:15] SERVICE ALERT: REJK-P-SMC002;Ram usage;OK;HARD;1;OK - 3.2% (515900 kB) free.
+
+April 01, 2016 05:00
+
+Service Unknown[01-04-2016 05:51:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047020;UNKNOWN;HARD;1;UNKNOWN - MET_Amb_RVM_101 (047020) - SPS link down
+Service Unknown[01-04-2016 05:51:05] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047005;UNKNOWN;HARD;1;UNKNOWN - MET_Fb_RVM_101 (047005) - SPS link down
+Service Unknown[01-04-2016 05:49:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047019;UNKNOWN;HARD;1;UNKNOWN - MET_Vea_RVM_101 (047019) - SPS link down
+Service Unknown[01-04-2016 05:49:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047004;UNKNOWN;HARD;1;UNKNOWN - MET_Sot_RVM_101 (047004) - SPS link down
+Service Unknown[01-04-2016 05:49:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047920;UNKNOWN;HARD;1;UNKNOWN - MET_Van_RVM_101 (047920) - SPS link down
+Service Warning[01-04-2016 05:44:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045147;WARNING;HARD;1;WARNING - ARR_Hx_RVM_101 (045147) - 1446 minutes since last transaction (0451471K.3EE)
+Service Ok[01-04-2016 05:06:05] SERVICE ALERT: REJK-P-INT002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 8GB - Used: 2.569GB (32%) - Free: 5.431GB (68%)
+
+April 01, 2016 04:00
+
+Service Ok[01-04-2016 04:46:45] SERVICE ALERT: REJK-P-MDL001;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 16GB - Used: 12.634GB (79%) - Free: 3.365GB (21%)
+Service Ok[01-04-2016 04:43:15] SERVICE ALERT: REJK-P-SPS003;FSV history out;OK;HARD;1;OK
+Service Ok[01-04-2016 04:33:25] SERVICE ALERT: REJK-P-SPS006;FSV history out;OK;HARD;1;OK
+Service Ok[01-04-2016 04:28:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[01-04-2016 04:28:25] SERVICE ALERT: REJK-P-SPS006;FSV history out;CRITICAL;HARD;1;CRITICAL - modified time 1049 sec exceeded threshold of 900 sec
+Service Critical[01-04-2016 04:27:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[01-04-2016 04:26:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 04:23:25] SERVICE ALERT: REJK-P-MDL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 16GB - Used: 9.924GB (62%) - Free: 6.076GB (38%)
+Service Critical[01-04-2016 04:23:15] SERVICE ALERT: REJK-P-SPS003;FSV history out;CRITICAL;HARD;1;CRITICAL - modified time 912 sec exceeded threshold of 900 sec
+Service Warning[01-04-2016 04:18:25] SERVICE ALERT: REJK-P-MDL002;Ram usage;WARNING;HARD;1;WARNING - [Triggered by _MemUsed%>90] - Physical Memory: Total: 16GB - Used: 15.244GB (95%) - Free: 774.078MB (5%)
+Service Critical[01-04-2016 04:11:05] SERVICE ALERT: REJK-P-INT002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>95] - Physical Memory: Total: 8GB - Used: 7.756GB (97%) - Free: 249.078MB (3%)
+Service Warning[01-04-2016 04:06:15] SERVICE ALERT: REJK-P-SMC002;Ram usage;WARNING;HARD;1;WARNING - 1.2% (197584 kB) free!
+Service Critical[01-04-2016 04:03:25] SERVICE ALERT: REJK-P-MDL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>95] - Physical Memory: Total: 16GB - Used: 15.288GB (96%) - Free: 728.469MB (4%)
+Service Warning[01-04-2016 04:01:05] SERVICE ALERT: REJK-P-INT002;Ram usage;WARNING;HARD;1;WARNING - [Triggered by _MemUsed%>90] - Physical Memory: Total: 8GB - Used: 7.444GB (93%) - Free: 569.012MB (7%)
+
+April 01, 2016 03:00
+
+Service Ok[01-04-2016 03:56:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 03:55:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[01-04-2016 03:51:45] SERVICE ALERT: REJK-P-MDL001;Ram usage;WARNING;HARD;1;WARNING - [Triggered by _MemUsed%>90] - Physical Memory: Total: 16GB - Used: 14.58GB (91%) - Free: 1.42GB (9%)
+Service Ok[01-04-2016 03:48:25] SERVICE ALERT: REJK-P-SPS006;FSV history out;OK;HARD;1;OK
+Service Critical[01-04-2016 03:46:15] SERVICE ALERT: REJK-P-SMC002;Ram usage;CRITICAL;HARD;1;CRITICAL - 1.0% (168304 kB) free!
+Service Ok[01-04-2016 03:43:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[01-04-2016 03:42:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[01-04-2016 03:41:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[01-04-2016 03:41:15] SERVICE ALERT: REJK-P-SMC002;Ram usage;WARNING;HARD;1;WARNING - 1.1% (171884 kB) free!
+Service Ok[01-04-2016 03:40:45] SERVICE ALERT: REJK-P-SQL006;Job - Entity log export NO AIF DSB - SI;OK;HARD;1;OK, Current Status: Waiting
+Service Critical[01-04-2016 03:38:25] SERVICE ALERT: REJK-P-SPS006;FSV history out;CRITICAL;HARD;1;CRITICAL - modified time 915 sec exceeded threshold of 900 sec
+Service Warning[01-04-2016 03:37:45] SERVICE ALERT: REJK-P-SQL006;Job - Entity log export NO AIF DSB - SI;WARNING;HARD;1;WARNING - Job has failed 1 times during past 5 executions, Current Status: Waiting
+Service Critical[01-04-2016 03:36:15] SERVICE ALERT: REJK-P-SMC002;Ram usage;CRITICAL;HARD;1;CRITICAL - 1.0% (171140 kB) free!
+Service Warning[01-04-2016 03:31:15] SERVICE ALERT: REJK-P-SMC002;Ram usage;WARNING;HARD;1;WARNING - 1.1% (171652 kB) free!
+Service Warning[01-04-2016 03:28:25] SERVICE ALERT: REJK-P-MDL002;Ram usage;WARNING;HARD;1;WARNING - [Triggered by _MemUsed%>90] - Physical Memory: Total: 16GB - Used: 14.631GB (91%) - Free: 1.369GB (9%)
+Service Critical[01-04-2016 03:26:15] SERVICE ALERT: REJK-P-SMC002;Ram usage;CRITICAL;HARD;1;CRITICAL - 1.0% (171248 kB) free!
+Service Ok[01-04-2016 03:25:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 03:24:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 03:20:35] SERVICE ALERT: REJK-P-WEB006;CWS Login;OK;SOFT;2;OK - Login succeeded
+Service Critical[01-04-2016 03:19:35] SERVICE ALERT: REJK-P-WEB006;CWS Login;CRITICAL;SOFT;1;Critical - Login failed!
+Service Ok[01-04-2016 03:18:15] SERVICE ALERT: REJK-P-WEB008;CWS Login;OK;HARD;5;OK - Login succeeded
+Service Ok[01-04-2016 03:15:55] SERVICE ALERT: REJK-P-WEB008;IIS connections;OK;HARD;1;OK (Sample Period 58 sec) - Site Name="_Total", CurrentConnections=9, _ConnectionAttemptsPersec=0/sec
+Service Ok[01-04-2016 03:14:35] SERVICE ALERT: REJK-P-WEB007;CWS Login;OK;SOFT;5;OK - Login succeeded
+Service Ok[01-04-2016 03:14:35] SERVICE ALERT: REJK-P-WEB006;CWS Login;OK;SOFT;5;OK - Login succeeded
+Service Critical[01-04-2016 03:14:25] SERVICE ALERT: REJK-P-WEB007;CWS Login;CRITICAL;SOFT;4;Critical - Login time exceeded 30 seconds!
+Service Critical[01-04-2016 03:14:25] SERVICE ALERT: REJK-P-WEB008;CWS Login;CRITICAL;HARD;5;Critical - Login time exceeded 30 seconds!
+Service Ok[01-04-2016 03:14:25] SERVICE ALERT: REJK-P-WEB005;CWS Login;OK;SOFT;5;OK - Login succeeded
+Service Critical[01-04-2016 03:14:25] SERVICE ALERT: REJK-P-WEB006;CWS Login;CRITICAL;SOFT;4;(Service Check Timed Out)
+Service Critical[01-04-2016 03:14:05] SERVICE ALERT: REJK-P-WEB005;CWS Login;CRITICAL;SOFT;4;(Service Check Timed Out)
+Service Critical[01-04-2016 03:13:45] SERVICE ALERT: REJK-P-SQL006;Job - Entity log export NO AIF DSB - SI;CRITICAL;HARD;1;CRITICAL - Job has failed 2 times during past 5 executions, Current Status: Waiting
+Service Critical[01-04-2016 03:13:05] SERVICE ALERT: REJK-P-WEB008;CWS Login;CRITICAL;SOFT;4;(Service Check Timed Out)
+Service Critical[01-04-2016 03:12:05] SERVICE ALERT: REJK-P-WEB007;CWS Login;CRITICAL;SOFT;3;(Service Check Timed Out)
+Service Ok[01-04-2016 03:11:55] SERVICE ALERT: REJK-P-WEB005;IIS connections;OK;HARD;1;OK (Sample Period 56 sec) - Site Name="_Total", CurrentConnections=25, _ConnectionAttemptsPersec=0/sec
+Service Ok[01-04-2016 03:11:55] SERVICE ALERT: REJK-P-WEB007;IIS connections;OK;HARD;1;OK (Sample Period 56 sec) - Site Name="_Total", CurrentConnections=25, _ConnectionAttemptsPersec=0/sec
+Service Ok[01-04-2016 03:11:35] SERVICE ALERT: AccessPoints;AP1_Kristensmindevej_3_Fuglebjerg-10.81.6.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[01-04-2016 03:11:35] SERVICE ALERT: AccessPoints;AP1_Gl_Rosagervej_4_Praesto-10.81.12.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 03:11:15] SERVICE ALERT: REJK-P-WEB006;CWS Login;CRITICAL;SOFT;3;(Service Check Timed Out)
+Service Ok[01-04-2016 03:10:55] SERVICE ALERT: REJK-P-WEB006;IIS connections;OK;HARD;1;OK (Sample Period 5 sec) - Site Name="_Total", CurrentConnections=23, _ConnectionAttemptsPersec=0/sec
+Service Critical[01-04-2016 03:10:55] SERVICE ALERT: REJK-P-WEB008;IIS connections;CRITICAL;HARD;1;CRITICAL (Sample Period 58 sec) - [Triggered by CurrentConnections>75] - Site Name="_Total", CurrentConnections=78, _ConnectionAttemptsPersec=0/sec
+Service Critical[01-04-2016 03:10:55] SERVICE ALERT: REJK-P-WEB005;IIS connections;CRITICAL;HARD;1;CRITICAL (Sample Period 56 sec) - [Triggered by CurrentConnections>75] - Site Name="_Total", CurrentConnections=76, _ConnectionAttemptsPersec=0/sec
+Service Critical[01-04-2016 03:10:55] SERVICE ALERT: REJK-P-WEB005;CWS Login;CRITICAL;SOFT;3;(Service Check Timed Out)
+Service Critical[01-04-2016 03:10:45] SERVICE ALERT: REJK-P-WEB006;IIS connections;CRITICAL;HARD;1;CRITICAL (Sample Period 54 sec) - [Triggered by CurrentConnections>75] - Site Name="_Total", CurrentConnections=76, _ConnectionAttemptsPersec=0/sec
+Service Critical[01-04-2016 03:10:35] SERVICE ALERT: AccessPoints;AP1_Kristensmindevej_3_Fuglebjerg-10.81.6.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[01-04-2016 03:10:35] SERVICE ALERT: AccessPoints;AP1_Gl_Rosagervej_4_Praesto-10.81.12.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[01-04-2016 03:09:55] SERVICE ALERT: REJK-P-WEB008;IIS connections;WARNING;HARD;1;WARNING (Sample Period 57 sec) - [Triggered by CurrentConnections>50] - Site Name="_Total", CurrentConnections=55, _ConnectionAttemptsPersec=0/sec
+Service Critical[01-04-2016 03:09:55] SERVICE ALERT: REJK-P-WEB008;CWS Login;CRITICAL;SOFT;3;(Service Check Timed Out)
+Service Warning[01-04-2016 03:09:55] SERVICE ALERT: REJK-P-WEB005;IIS connections;WARNING;HARD;1;WARNING (Sample Period 55 sec) - [Triggered by CurrentConnections>50] - Site Name="_Total", CurrentConnections=57, _ConnectionAttemptsPersec=0/sec
+Service Warning[01-04-2016 03:09:55] SERVICE ALERT: REJK-P-WEB007;IIS connections;WARNING;HARD;1;WARNING (Sample Period 55 sec) - [Triggered by CurrentConnections>50] - Site Name="_Total", CurrentConnections=54, _ConnectionAttemptsPersec=0/sec
+Service Warning[01-04-2016 03:09:45] SERVICE ALERT: REJK-P-WEB006;IIS connections;WARNING;HARD;1;WARNING (Sample Period 53 sec) - [Triggered by CurrentConnections>50] - Site Name="_Total", CurrentConnections=53, _ConnectionAttemptsPersec=0/sec
+Service Ok[01-04-2016 03:09:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 03:08:55] SERVICE ALERT: REJK-P-WEB005;IIS connections;CRITICAL;HARD;1;CRITICAL (Sample Period 3 sec) - [Triggered by CurrentConnections>75] - Site Name="_Total", CurrentConnections=80, _ConnectionAttemptsPersec=1/sec
+Service Warning[01-04-2016 03:08:55] SERVICE ALERT: REJK-P-WEB005;IIS connections;WARNING;HARD;1;WARNING (Sample Period 57 sec) - [Triggered by CurrentConnections>50] - Site Name="_Total", CurrentConnections=75, _ConnectionAttemptsPersec=1/sec
+Service Critical[01-04-2016 03:08:55] SERVICE ALERT: REJK-P-WEB007;CWS Login;CRITICAL;SOFT;2;(Service Check Timed Out)
+Service Critical[01-04-2016 03:08:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[01-04-2016 03:08:05] SERVICE ALERT: REJK-P-WEB006;CWS Login;CRITICAL;SOFT;2;(Service Check Timed Out)
+Service Warning[01-04-2016 03:07:45] SERVICE ALERT: REJK-P-SQL006;Job - Entity log export NO AIF DSB - SI;WARNING;HARD;1;WARNING - Job has failed 1 times during past 5 executions, Current Status: Waiting
+Service Critical[01-04-2016 03:07:45] SERVICE ALERT: REJK-P-WEB005;CWS Login;CRITICAL;SOFT;2;(Service Check Timed Out)
+Service Ok[01-04-2016 03:06:55] SERVICE ALERT: REJK-P-WEB006;IIS connections;OK;HARD;1;OK (Sample Period 6 sec) - Site Name="_Total", CurrentConnections=12, _ConnectionAttemptsPersec=0/sec
+Service Critical[01-04-2016 03:06:45] SERVICE ALERT: REJK-P-WEB008;CWS Login;CRITICAL;SOFT;2;(Service Check Timed Out)
+Service Ok[01-04-2016 03:05:55] SERVICE ALERT: REJK-P-WEB008;IIS connections;OK;HARD;1;OK (Sample Period 58 sec) - Site Name="_Total", CurrentConnections=11, _ConnectionAttemptsPersec=0/sec
+Service Ok[01-04-2016 03:05:55] SERVICE ALERT: REJK-P-WEB005;IIS connections;OK;HARD;1;OK (Sample Period 56 sec) - Site Name="_Total", CurrentConnections=28, _ConnectionAttemptsPersec=0/sec
+Service Critical[01-04-2016 03:05:45] SERVICE ALERT: REJK-P-WEB006;IIS connections;CRITICAL;HARD;1;CRITICAL (Sample Period 54 sec) - [Triggered by CurrentConnections>75] - Site Name="_Total", CurrentConnections=104, _ConnectionAttemptsPersec=1/sec
+Service Critical[01-04-2016 03:05:45] SERVICE ALERT: REJK-P-WEB007;CWS Login;CRITICAL;SOFT;1;(Service Check Timed Out)
+Service Critical[01-04-2016 03:04:55] SERVICE ALERT: REJK-P-WEB006;CWS Login;CRITICAL;SOFT;1;(Service Check Timed Out)
+Service Warning[01-04-2016 03:04:55] SERVICE ALERT: REJK-P-WEB006;IIS connections;WARNING;HARD;1;WARNING (Sample Period 5 sec) - [Triggered by CurrentConnections>50] - Site Name="_Total", CurrentConnections=51, _ConnectionAttemptsPersec=1/sec
+Service Critical[01-04-2016 03:04:55] SERVICE ALERT: REJK-P-WEB005;IIS connections;CRITICAL;HARD;1;CRITICAL (Sample Period 55 sec) - [Triggered by CurrentConnections>75] - Site Name="_Total", CurrentConnections=97, _ConnectionAttemptsPersec=1/sec
+Service Critical[01-04-2016 03:04:45] SERVICE ALERT: REJK-P-WEB006;IIS connections;CRITICAL;HARD;1;CRITICAL (Sample Period 53 sec) - [Triggered by CurrentConnections>75] - Site Name="_Total", CurrentConnections=108, _ConnectionAttemptsPersec=1/sec
+Service Critical[01-04-2016 03:04:35] SERVICE ALERT: REJK-P-WEB005;CWS Login;CRITICAL;SOFT;1;(Service Check Timed Out)
+Service Warning[01-04-2016 03:03:55] SERVICE ALERT: REJK-P-WEB006;IIS connections;WARNING;HARD;1;WARNING (Sample Period 4 sec) - [Triggered by CurrentConnections>50] - Site Name="_Total", CurrentConnections=55, _ConnectionAttemptsPersec=1/sec
+Service Warning[01-04-2016 03:03:55] SERVICE ALERT: REJK-P-WEB005;IIS connections;WARNING;HARD;1;WARNING (Sample Period 57 sec) - [Triggered by CurrentConnections>50] - Site Name="_Total", CurrentConnections=57, _ConnectionAttemptsPersec=1/sec
+Service Ok[01-04-2016 03:03:35] SERVICE ALERT: REJK-P-MDL002;MDL incoming files queue;OK;HARD;1;OK
+Service Critical[01-04-2016 03:03:35] SERVICE ALERT: REJK-P-WEB008;CWS Login;CRITICAL;SOFT;1;(Service Check Timed Out)
+Service Ok[01-04-2016 03:03:35] SERVICE ALERT: REJK-P-MDL001;MDL incoming files queue;OK;HARD;1;OK
+Service Critical[01-04-2016 03:02:55] SERVICE ALERT: REJK-P-WEB008;IIS connections;CRITICAL;HARD;1;CRITICAL (Sample Period 57 sec) - [Triggered by CurrentConnections>75] - Site Name="_Total", CurrentConnections=121, _ConnectionAttemptsPersec=1/sec
+Service Warning[01-04-2016 03:01:55] SERVICE ALERT: REJK-P-WEB008;IIS connections;WARNING;HARD;1;WARNING (Sample Period 57 sec) - [Triggered by CurrentConnections>50] - Site Name="_Total", CurrentConnections=63, _ConnectionAttemptsPersec=1/sec
+Service Ok[01-04-2016 03:01:05] SERVICE ALERT: REJK-P-SMC003;Ram usage;OK;HARD;1;OK - 6.0% (980628 kB) free.
+Service Ok[01-04-2016 03:00:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+
+April 01, 2016 02:00
+
+Service Critical[01-04-2016 02:59:25] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 02:53:15] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_1_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_1.exe" running (0 excluded). (List is on next line)
+Service Ok[01-04-2016 02:53:15] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_4_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_4.exe" running (0 excluded). (List is on next line)
+Service Ok[01-04-2016 02:53:15] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_1_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_1.exe" running (0 excluded). (List is on next line)
+Service Ok[01-04-2016 02:53:15] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_3_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded). (List is on next line)
+Service Ok[01-04-2016 02:52:15] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_4_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_4.exe" running (0 excluded). (List is on next line)
+Service Ok[01-04-2016 02:51:05] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_2_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_2.exe" running (0 excluded). (List is on next line)
+Service Ok[01-04-2016 02:51:05] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_3_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded). (List is on next line)
+Service Ok[01-04-2016 02:48:35] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_2_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_2.exe" running (0 excluded). (List is on next line)
+Service Warning[01-04-2016 02:46:05] SERVICE ALERT: REJK-P-SMC003;Ram usage;WARNING;HARD;1;WARNING - 1.1% (187316 kB) free!
+Service Ok[01-04-2016 02:38:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[01-04-2016 02:37:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[01-04-2016 02:36:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 02:21:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Ok[01-04-2016 02:21:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049561;OK;HARD;1;OK - DSB_Øds_RVM_101 (049561) - 474 minutes since last transaction (0495611K.344)
+Service Ok[01-04-2016 02:21:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049525;OK;HARD;1;OK - DSB_Vjs_RVM_101 (049525) - 1040 minutes since last transaction (0495251K.37E)
+Service Ok[01-04-2016 02:21:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049523;OK;HARD;1;OK - DSB_Lg_RVM_101 (049523) - 443 minutes since last transaction (0495231K.C05)
+Service Ok[01-04-2016 02:21:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049409;OK;HARD;1;OK - DSB_Te_RVM_101 (049409) - 636 minutes since last transaction (0494091K.211)
+Service Ok[01-04-2016 02:21:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049305;OK;HARD;1;OK - DSB_Ni_RVM_101 (049305) - 170 minutes since last transaction (0493051K.3BE)
+Service Ok[01-04-2016 02:21:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049436;OK;HARD;1;OK - DSB_Ad_RVM_101 (049436) - 396 minutes since last transaction (0494361K.D6D)
+Service Critical[01-04-2016 02:20:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Ok[01-04-2016 02:19:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049408;OK;HARD;1;OK - DSB_Rq_RVM_101 (049408) - 313 minutes since last transaction (0494081K.D42)
+Service Critical[01-04-2016 02:19:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 02:19:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049304;OK;HARD;1;OK - DSB_Ok_RVM_101 (049304) - 199 minutes since last transaction (0493041K.86A)
+Service Ok[01-04-2016 02:19:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048016;OK;HARD;1;OK - STO_Nel_RVM_101 (048016) - 154 minutes since last transaction (0480161K.916)
+Service Ok[01-04-2016 02:19:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047019;OK;HARD;1;OK - MET_Vea_RVM_101 (047019) - 274 minutes since last transaction (0470191K.60C)
+Service Ok[01-04-2016 02:19:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045167;OK;HARD;1;OK - ARR_Ev_RVM_101 (045167) - 2134 minutes since last transaction (0451671K.195)
+Service Warning[01-04-2016 02:19:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045138;WARNING;HARD;1;WARNING - ARR_Uf_RVM_101 (045138) - 2089 minutes since last transaction (0451381K.0CD)
+Service Ok[01-04-2016 02:19:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045111;OK;HARD;1;OK - ARR_Bw_RVM_101 (045111) - 617 minutes since last transaction (0451111K.3B6)
+Service Ok[01-04-2016 02:19:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045153;OK;HARD;1;OK - ARR_Vg_RVM_101 (045153) - 93 minutes since last transaction (0451531K.000)
+Service Unknown[01-04-2016 02:06:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049561;UNKNOWN;HARD;1;UNKNOWN - DSB_Øds_RVM_101 (049561) - SPS link down
+Service Unknown[01-04-2016 02:06:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049525;UNKNOWN;HARD;1;UNKNOWN - DSB_Vjs_RVM_101 (049525) - SPS link down
+Service Unknown[01-04-2016 02:06:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049523;UNKNOWN;HARD;1;UNKNOWN - DSB_Lg_RVM_101 (049523) - SPS link down
+Service Unknown[01-04-2016 02:06:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049409;UNKNOWN;HARD;1;UNKNOWN - DSB_Te_RVM_101 (049409) - SPS link down
+Service Unknown[01-04-2016 02:06:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049305;UNKNOWN;HARD;1;UNKNOWN - DSB_Ni_RVM_101 (049305) - SPS link down
+Service Unknown[01-04-2016 02:06:15] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049436;UNKNOWN;HARD;1;UNKNOWN - DSB_Ad_RVM_101 (049436) - SPS link down
+Service Ok[01-04-2016 02:06:05] SERVICE ALERT: REJK-P-SQL003;Boris connections;OK;HARD;1;OK - Number of BORIS TCRW connected: 257
+Service Unknown[01-04-2016 02:04:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049408;UNKNOWN;HARD;1;UNKNOWN - DSB_Rq_RVM_101 (049408) - SPS link down
+Service Unknown[01-04-2016 02:04:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049304;UNKNOWN;HARD;1;UNKNOWN - DSB_Ok_RVM_101 (049304) - SPS link down
+Service Unknown[01-04-2016 02:04:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048016;UNKNOWN;HARD;1;UNKNOWN - STO_Nel_RVM_101 (048016) - SPS link down
+Service Unknown[01-04-2016 02:04:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047019;UNKNOWN;HARD;1;UNKNOWN - MET_Vea_RVM_101 (047019) - SPS link down
+Service Ok[01-04-2016 02:04:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Unknown[01-04-2016 02:04:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045167;UNKNOWN;HARD;1;UNKNOWN - ARR_Ev_RVM_101 (045167) - SPS link down
+Service Unknown[01-04-2016 02:04:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045138;UNKNOWN;HARD;1;UNKNOWN - ARR_Uf_RVM_101 (045138) - SPS link down
+Service Unknown[01-04-2016 02:04:45] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045111;UNKNOWN;HARD;1;UNKNOWN - ARR_Bw_RVM_101 (045111) - SPS link down
+Service Unknown[01-04-2016 02:04:35] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045153;UNKNOWN;HARD;1;UNKNOWN - ARR_Vg_RVM_101 (045153) - SPS link down
+Service Critical[01-04-2016 02:03:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[01-04-2016 02:03:35] SERVICE ALERT: REJK-P-MDL002;MDL incoming files queue;CRITICAL;HARD;1;CRITICAL - count 1813 exceeded threshold of 1000
+Service Critical[01-04-2016 02:03:35] SERVICE ALERT: REJK-P-MDL001;MDL incoming files queue;CRITICAL;HARD;1;CRITICAL - count 1336 exceeded threshold of 1000
+Service Critical[01-04-2016 02:03:35] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_2_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_2.exe" running (0 excluded).
+Service Critical[01-04-2016 02:03:15] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_1_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_1.exe" running (0 excluded).
+Service Critical[01-04-2016 02:03:15] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_4_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_4.exe" running (0 excluded).
+Service Critical[01-04-2016 02:03:15] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_1_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_1.exe" running (0 excluded).
+Service Critical[01-04-2016 02:03:15] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_3_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded).
+Service Critical[01-04-2016 02:02:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[01-04-2016 02:02:15] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_4_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_4.exe" running (0 excluded).
+Service Critical[01-04-2016 02:01:05] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_2_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_2.exe" running (0 excluded).
+Service Critical[01-04-2016 02:01:05] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_3_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded).
+Service Warning[01-04-2016 02:01:05] SERVICE ALERT: REJK-P-SQL003;Boris connections;WARNING;HARD;1;WARNING - Number of BORIS TCRW connected: 192
+
+April 01, 2016 01:00
+
+Service Ok[01-04-2016 01:56:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 01:55:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 01:40:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[01-04-2016 01:39:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[01-04-2016 01:38:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 01:23:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[01-04-2016 01:22:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[01-04-2016 01:21:25] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[01-04-2016 01:21:15] SERVICE ALERT: REJK-P-SMC002;Ram usage;WARNING;HARD;1;WARNING - 1.3% (217600 kB) free!
+Service Ok[01-04-2016 01:17:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[01-04-2016 01:16:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[01-04-2016 01:16:15] SERVICE ALERT: REJK-P-SMC002;Ram usage;CRITICAL;HARD;1;CRITICAL - 1.0% (170640 kB) free!
+Service Critical[01-04-2016 01:15:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 01:00:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+
+April 01, 2016 00:00
+
+Service Critical[01-04-2016 00:59:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 00:45:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 0 row(s) in prg.ObjTransactionBuffer
+Service Ok[01-04-2016 00:44:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[01-04-2016 00:43:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[01-04-2016 00:42:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[01-04-2016 00:40:05] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Ok[01-04-2016 00:27:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[01-04-2016 00:26:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[01-04-2016 00:25:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[01-04-2016 00:14:55] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049518;OK;HARD;1;OK - DSB_Hs_RVM_101 (049518) - 149 minutes since last transaction (0495181K.32D)
+Service Ok[01-04-2016 00:10:45] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[01-04-2016 00:09:55] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+
+Alert History
+Last Updated: Tue Apr 12 15:22:04 CEST 2016
+Nagios® Core™ 3.4.1 - www.nagios.org
+Logged in as ThalesMNI
+View Status Detail For All Hosts
+View Notifications For All Hosts
+All Hosts and Services
+
+Earlier Archive
+Earlier Archive
+Log File Navigation
+Tue Mar 29 00:00:00 CEST 2016
+to
+Wed Mar 30 00:00:00 CEST 2016 More Recent Archive
+More Recent Archive
+
+File: /var/log/nagios/archives/nagios-03-30-2016-00.log
+State type options:
+
+History detail level for all hosts:
+
+ Hide Flapping Alerts
+ Hide Downtime Alerts
+ Hide Process Messages
+ Older Entries First
+Update
+
+March 29, 2016 23:00
+
+Service Ok[29-03-2016 23:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045196;OK;HARD;1;OK - ARR_Um_RVM_101 (045196) - 3599 minutes since last transaction (0451961K.069)
+Service Ok[29-03-2016 23:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045145;OK;HARD;1;OK - ARR_Hw_RVM_101 (045145) - 509 minutes since last transaction (0451451K.2DE)
+Service Ok[29-03-2016 23:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045126;OK;HARD;1;OK - ARR_Va_RVM_101 (045126) - 149 minutes since last transaction (0451261K.E21)
+Service Ok[29-03-2016 23:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045131;OK;HARD;1;OK - ARR_Øg_RVM_101 (045131) - 479 minutes since last transaction (0451311K.DD4)
+Service Ok[29-03-2016 23:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045194;OK;HARD;1;OK - ARR_Yd_RVM_101 (045194) - 614 minutes since last transaction (0451941K.36C)
+Service Ok[29-03-2016 23:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045148;OK;HARD;1;OK - ARR_Vi_RVM_101 (045148) - 374 minutes since last transaction (0451481K.D7B)
+Service Ok[29-03-2016 23:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045102;OK;HARD;1;OK - ARR_Ur_RVM_101 (045102) - 614 minutes since last transaction (0451021K.E39)
+Service Ok[29-03-2016 23:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047026;OK;HARD;1;OK - MET_Feo_RVM_101 (047026) - 193 minutes since last transaction (0470261K.694)
+Service Ok[29-03-2016 23:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048011;OK;HARD;1;OK - STO_Vlb_RVM_101 (048011) - 119 minutes since last transaction (0480111K.476)
+Service Ok[29-03-2016 23:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045146;OK;HARD;1;OK - ARR_Ln_RVM_101 (045146) - 1694 minutes since last transaction (0451461K.15B)
+Service Ok[29-03-2016 23:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045171;OK;HARD;1;OK - ARR_Ry_RVM_101 (045171) - 291 minutes since last transaction (0451711K.AA9)
+Service Ok[29-03-2016 23:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049443;OK;HARD;1;OK - DSB_Lih_RVM_101 (049443) - 119 minutes since last transaction (0494431K.466)
+Service Critical[29-03-2016 23:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045115;CRITICAL;HARD;1;CRITICAL - ARR_Rej_RVM_101 (045115) - 6494 minutes since last transaction (0451151K.25C)
+Service Ok[29-03-2016 23:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045132;OK;HARD;1;OK - ARR_Ta_RVM_101 (045132) - 174 minutes since last transaction (0451321K.5F2)
+Service Ok[29-03-2016 23:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048090;OK;HARD;1;OK - STO_Ã…lm_RVM_101 (048090) - 89 minutes since last transaction (0480901K.014)
+Service Ok[29-03-2016 23:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049205;OK;HARD;1;OK - DSB_Sg_RVM_101 (049205) - 46 minutes since last transaction (0492051K.1C4)
+Service Ok[29-03-2016 23:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049517;OK;HARD;1;OK - DSB_Hed_RVM_101 (049517) - 992 minutes since last transaction (0495171K.59D)
+Service Ok[29-03-2016 23:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045158;OK;HARD;1;OK - ARR_Bs_RVM_101 (045158) - 4394 minutes since last transaction (0451581K.220)
+Service Ok[29-03-2016 23:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048151;OK;HARD;1;OK - STO_Hi_RVM_101 (048151) - 45 minutes since last transaction (0481511K.36E)
+Service Ok[29-03-2016 23:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049373;OK;HARD;1;OK - DSB_Sg_RVM_102 (049373) - 134 minutes since last transaction (0493731K.6FC)
+Service Critical[29-03-2016 23:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049504;CRITICAL;HARD;1;CRITICAL - DSB_Hp_RVM_101 (049504) - 74264 minutes since last transaction (0495041K.040)
+Service Ok[29-03-2016 23:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049444;OK;HARD;1;OK - DSB_Bl_RVM_101 (049444) - 134 minutes since last transaction (0494441K.D98)
+Service Ok[29-03-2016 23:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047024;OK;HARD;1;OK - MET_Ørs_RVM_101 (047024) - 192 minutes since last transaction (0470241K.9E4)
+Service Ok[29-03-2016 23:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049440;OK;HARD;1;OK - DSB_Og_RVM_101 (049440) - 434 minutes since last transaction (0494401K.BC6)
+Service Ok[29-03-2016 23:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049501;OK;HARD;1;OK - DSB_Ng_RVM_101 (049501) - 119 minutes since last transaction (0495011K.285)
+Service Ok[29-03-2016 23:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049380;OK;HARD;1;OK - DSB_RÃ¥d_RVM_101 (049380) - 434 minutes since last transaction (0493801K.622)
+Service Ok[29-03-2016 23:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049454;OK;HARD;1;OK - DSB_Fh_RVM_101 (049454) - 104 minutes since last transaction (0494541K.1A1)
+Service Ok[29-03-2016 23:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049943;OK;HARD;1;OK - DSB_Ab_RVM_102 (049943) - 59 minutes since last transaction (0499431K.4C5)
+Service Ok[29-03-2016 23:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049551;OK;HARD;1;OK - DSB_Svv_RVM_101 (049551) - 479 minutes since last transaction (0495511K.620)
+Service Ok[29-03-2016 23:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049914;OK;HARD;1;OK - DSB_Lw_RVM_101 (049914) - 89 minutes since last transaction (0499141K.92B)
+Service Ok[29-03-2016 23:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049352;OK;HARD;1;OK - DSB_Vj_RVM_101 (049352) - 44 minutes since last transaction (0493521K.805)
+Service Ok[29-03-2016 23:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049552;OK;HARD;1;OK - DSB_Svg_RVM_101 (049552) - 174 minutes since last transaction (0495521K.E4A)
+Service Ok[29-03-2016 23:55:04] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 0 row(s) in prg.ObjTransactionBuffer
+Service Ok[29-03-2016 23:54:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 23:53:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 23:51:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047005;OK;HARD;1;OK - MET_Fb_RVM_101 (047005) - 50 minutes since last transaction (0470051K.FDC)
+Service Critical[29-03-2016 23:50:04] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Unknown[29-03-2016 23:45:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049404;UNKNOWN;HARD;1;UNKNOWN - DSB_Kd_RVM_101 (049404) - SPS link down
+Service Unknown[29-03-2016 23:45:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045163;UNKNOWN;HARD;1;UNKNOWN - ARR_Bic_RVM_101 (045163) - SPS link down
+Service Unknown[29-03-2016 23:45:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049505;UNKNOWN;HARD;1;UNKNOWN - DSB_Tp_RVM_101 (049505) - SPS link down
+Service Unknown[29-03-2016 23:45:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049316;UNKNOWN;HARD;1;UNKNOWN - DSB_Trk_RVM_101 (049316) - SPS link down
+Service Unknown[29-03-2016 23:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045196;UNKNOWN;HARD;1;UNKNOWN - ARR_Um_RVM_101 (045196) - SPS link down
+Service Unknown[29-03-2016 23:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045145;UNKNOWN;HARD;1;UNKNOWN - ARR_Hw_RVM_101 (045145) - SPS link down
+Service Unknown[29-03-2016 23:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045126;UNKNOWN;HARD;1;UNKNOWN - ARR_Va_RVM_101 (045126) - SPS link down
+Service Unknown[29-03-2016 23:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045131;UNKNOWN;HARD;1;UNKNOWN - ARR_Øg_RVM_101 (045131) - SPS link down
+Service Unknown[29-03-2016 23:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045194;UNKNOWN;HARD;1;UNKNOWN - ARR_Yd_RVM_101 (045194) - SPS link down
+Service Unknown[29-03-2016 23:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045148;UNKNOWN;HARD;1;UNKNOWN - ARR_Vi_RVM_101 (045148) - SPS link down
+Service Unknown[29-03-2016 23:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045102;UNKNOWN;HARD;1;UNKNOWN - ARR_Ur_RVM_101 (045102) - SPS link down
+Service Unknown[29-03-2016 23:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048011;UNKNOWN;HARD;1;UNKNOWN - STO_Vlb_RVM_101 (048011) - SPS link down
+Service Unknown[29-03-2016 23:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047026;UNKNOWN;HARD;1;UNKNOWN - MET_Feo_RVM_101 (047026) - SPS link down
+Service Unknown[29-03-2016 23:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045146;UNKNOWN;HARD;1;UNKNOWN - ARR_Ln_RVM_101 (045146) - SPS link down
+Service Unknown[29-03-2016 23:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045171;UNKNOWN;HARD;1;UNKNOWN - ARR_Ry_RVM_101 (045171) - SPS link down
+Service Unknown[29-03-2016 23:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049443;UNKNOWN;HARD;1;UNKNOWN - DSB_Lih_RVM_101 (049443) - SPS link down
+Service Unknown[29-03-2016 23:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045115;UNKNOWN;HARD;1;UNKNOWN - ARR_Rej_RVM_101 (045115) - SPS link down
+Service Unknown[29-03-2016 23:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045132;UNKNOWN;HARD;1;UNKNOWN - ARR_Ta_RVM_101 (045132) - SPS link down
+Service Unknown[29-03-2016 23:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048090;UNKNOWN;HARD;1;UNKNOWN - STO_Ã…lm_RVM_101 (048090) - SPS link down
+Service Unknown[29-03-2016 23:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049205;UNKNOWN;HARD;1;UNKNOWN - DSB_Sg_RVM_101 (049205) - SPS link down
+Service Unknown[29-03-2016 23:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049517;UNKNOWN;HARD;1;UNKNOWN - DSB_Hed_RVM_101 (049517) - SPS link down
+Service Unknown[29-03-2016 23:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045158;UNKNOWN;HARD;1;UNKNOWN - ARR_Bs_RVM_101 (045158) - SPS link down
+Service Unknown[29-03-2016 23:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048151;UNKNOWN;HARD;1;UNKNOWN - STO_Hi_RVM_101 (048151) - SPS link down
+Service Unknown[29-03-2016 23:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049373;UNKNOWN;HARD;1;UNKNOWN - DSB_Sg_RVM_102 (049373) - SPS link down
+Service Unknown[29-03-2016 23:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049504;UNKNOWN;HARD;1;UNKNOWN - DSB_Hp_RVM_101 (049504) - SPS link down
+Service Unknown[29-03-2016 23:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049444;UNKNOWN;HARD;1;UNKNOWN - DSB_Bl_RVM_101 (049444) - SPS link down
+Service Unknown[29-03-2016 23:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047024;UNKNOWN;HARD;1;UNKNOWN - MET_Ørs_RVM_101 (047024) - SPS link down
+Service Unknown[29-03-2016 23:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049440;UNKNOWN;HARD;1;UNKNOWN - DSB_Og_RVM_101 (049440) - SPS link down
+Service Unknown[29-03-2016 23:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049380;UNKNOWN;HARD;1;UNKNOWN - DSB_RÃ¥d_RVM_101 (049380) - SPS link down
+Service Unknown[29-03-2016 23:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049501;UNKNOWN;HARD;1;UNKNOWN - DSB_Ng_RVM_101 (049501) - SPS link down
+Service Unknown[29-03-2016 23:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049454;UNKNOWN;HARD;1;UNKNOWN - DSB_Fh_RVM_101 (049454) - SPS link down
+Service Unknown[29-03-2016 23:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049551;UNKNOWN;HARD;1;UNKNOWN - DSB_Svv_RVM_101 (049551) - SPS link down
+Service Unknown[29-03-2016 23:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049943;UNKNOWN;HARD;1;UNKNOWN - DSB_Ab_RVM_102 (049943) - SPS link down
+Service Unknown[29-03-2016 23:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049914;UNKNOWN;HARD;1;UNKNOWN - DSB_Lw_RVM_101 (049914) - SPS link down
+Service Unknown[29-03-2016 23:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049552;UNKNOWN;HARD;1;UNKNOWN - DSB_Svg_RVM_101 (049552) - SPS link down
+Service Unknown[29-03-2016 23:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049352;UNKNOWN;HARD;1;UNKNOWN - DSB_Vj_RVM_101 (049352) - SPS link down
+Service Ok[29-03-2016 23:40:44] SERVICE ALERT: REJK-P-SQL006;Job - Entity log export NO AIF DSB - SI;OK;HARD;1;OK, Current Status: Waiting
+Service Ok[29-03-2016 23:38:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[29-03-2016 23:37:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Ok[29-03-2016 23:37:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 23:36:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 23:36:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[29-03-2016 23:36:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047005;UNKNOWN;HARD;1;UNKNOWN - MET_Fb_RVM_101 (047005) - SPS link down
+Service Ok[29-03-2016 23:21:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 23:20:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[29-03-2016 23:13:44] SERVICE ALERT: REJK-P-SQL006;Job - Entity log export NO AIF DSB - SI;WARNING;HARD;1;WARNING - Job has failed 1 times during past 5 executions, Current Status: Waiting
+Service Ok[29-03-2016 23:05:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[29-03-2016 23:04:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[29-03-2016 23:03:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 23:00:04] SERVICE ALERT: REJK-P-SQL006;Job Execution - Creation of collection letter DSB - BO;CRITICAL;HARD;1;CRITICAL - JOB - Creation of collection letter has not been executed since 2016-03-28 21:10:01. Current Status: Waiting
+
+March 29, 2016 22:00
+
+Service Ok[29-03-2016 22:50:34] SERVICE ALERT: AccessPoints;AP1_Granvaenget_8_Herning-10.87.34.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[29-03-2016 22:50:34] SERVICE ALERT: AccessPoints;AP1_Samsoevej_29_Hinnerup-10.87.66.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[29-03-2016 22:50:34] SERVICE ALERT: AccessPoints;AP1_Mellemstrupvej_7_Grenaa-10.87.73.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[29-03-2016 22:50:34] SERVICE ALERT: AccessPoints;AP1_AArhusvej_3_Allingaabro-10.87.55.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[29-03-2016 22:50:24] SERVICE ALERT: AccessPoints;AP1_Ebeltoft_Busterminal_Ebeltoft-10.87.58.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 22:49:44] SERVICE ALERT: AccessPoints;AP1_Granvaenget_8_Herning-10.87.34.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 22:49:44] SERVICE ALERT: AccessPoints;AP1_Samsoevej_29_Hinnerup-10.87.66.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 22:49:44] SERVICE ALERT: AccessPoints;AP1_Mellemstrupvej_7_Grenaa-10.87.73.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 22:49:44] SERVICE ALERT: AccessPoints;AP1_AArhusvej_3_Allingaabro-10.87.55.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 22:49:24] SERVICE ALERT: AccessPoints;AP1_Ebeltoft_Busterminal_Ebeltoft-10.87.58.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 22:33:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045110;OK;HARD;1;OK - ARR_Vis_RVM_101 (045110) - 1636 minutes since last transaction (0451101K.0D0)
+Service Ok[29-03-2016 22:03:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Unknown[29-03-2016 22:03:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045110;UNKNOWN;HARD;1;UNKNOWN - ARR_Vis_RVM_101 (045110) - SPS link down
+Service Critical[29-03-2016 22:02:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[29-03-2016 22:01:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+
+March 29, 2016 21:00
+
+Service Ok[29-03-2016 21:55:04] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 0 row(s) in prg.ObjTransactionBuffer
+Service Ok[29-03-2016 21:51:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 21:50:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 21:50:04] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Ok[29-03-2016 21:48:34] SERVICE ALERT: AccessPoints;AP2_Holbaek_Dito-10.84.13.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[29-03-2016 21:48:34] SERVICE ALERT: AccessPoints;AP1_Dalsvinget_6_Slagelse-10.84.28.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[29-03-2016 21:48:24] SERVICE ALERT: AccessPoints;AP1_K_P_Danosvej_2_Holbaek-10.84.13.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[29-03-2016 21:48:24] SERVICE ALERT: AccessPoints;AP1_Holbaek_Dito-10.84.13.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[29-03-2016 21:48:24] SERVICE ALERT: AccessPoints;AP1_Bag_station_5-10.84.19.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 21:47:44] SERVICE ALERT: AccessPoints;AP2_Holbaek_Dito-10.84.13.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 21:47:44] SERVICE ALERT: AccessPoints;AP1_Dalsvinget_6_Slagelse-10.84.28.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 21:47:24] SERVICE ALERT: AccessPoints;AP1_K_P_Danosvej_2_Holbaek-10.84.13.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 21:47:24] SERVICE ALERT: AccessPoints;AP1_Holbaek_Dito-10.84.13.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 21:47:24] SERVICE ALERT: AccessPoints;AP1_Bag_station_5-10.84.19.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 21:45:04] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 0 row(s) in prg.ObjTransactionBuffer
+Service Critical[29-03-2016 21:40:04] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Ok[29-03-2016 21:35:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[29-03-2016 21:34:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[29-03-2016 21:33:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 21:24:04] SERVICE ALERT: REJK-P-SQL003;Unprocessed TCS transactions;OK;HARD;1;OK
+Service Ok[29-03-2016 21:18:34] SERVICE ALERT: REJK-P-MDL002;MDL incoming files queue;OK;HARD;1;OK
+Service Ok[29-03-2016 21:18:34] SERVICE ALERT: REJK-P-MDL001;MDL incoming files queue;OK;HARD;1;OK
+Service Ok[29-03-2016 21:18:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 21:17:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 21:03:34] SERVICE ALERT: REJK-P-MDL002;MDL incoming files queue;CRITICAL;HARD;1;CRITICAL - count 1014 exceeded threshold of 1000
+Service Critical[29-03-2016 21:03:34] SERVICE ALERT: REJK-P-MDL001;MDL incoming files queue;CRITICAL;HARD;1;CRITICAL - count 1580 exceeded threshold of 1000
+Service Ok[29-03-2016 21:02:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 21:01:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 21:00:04] SERVICE ALERT: REJK-P-SQL003;TRK - DCP Buffer;OK;HARD;1;OK - 2651 row(s) in dcp.ObjTransactionBuffer - oldest insert at 2016-03-29 20:20:51
+
+March 29, 2016 20:00
+
+Service Warning[29-03-2016 20:55:04] SERVICE ALERT: REJK-P-SQL003;TRK - DCP Buffer;WARNING;HARD;1;WARNING - 24886 row(s) in dcp.ObjTransactionBuffer - oldest insert at 2016-03-29 20:05:38
+Service Critical[29-03-2016 20:54:04] SERVICE ALERT: REJK-P-SQL003;Unprocessed TCS transactions;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Warning[29-03-2016 20:49:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049560;WARNING;HARD;1;WARNING - DSB_Ht_RVM_101 (049560) - 1444 minutes since last transaction (0495601K.46A)
+Service Ok[29-03-2016 20:46:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 20:45:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 20:33:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045110;OK;HARD;1;OK - ARR_Vis_RVM_101 (045110) - 1516 minutes since last transaction (0451101K.0D0)
+Service Ok[29-03-2016 20:31:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 20:30:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[29-03-2016 20:18:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045110;UNKNOWN;HARD;1;UNKNOWN - ARR_Vis_RVM_101 (045110) - SPS link down
+Service Critical[29-03-2016 20:15:04] SERVICE ALERT: REJK-P-BCM003;RCOB import directory count;CRITICAL;HARD;1;CRITICAL - count 18 exceeded threshold of 1
+Service Ok[29-03-2016 20:14:04] SERVICE ALERT: REJK-P-SQL003;Unprocessed TCS transactions;OK;HARD;1;OK
+Service Critical[29-03-2016 20:04:04] SERVICE ALERT: REJK-P-SQL003;Unprocessed TCS transactions;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Ok[29-03-2016 20:03:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045110;OK;HARD;1;OK - ARR_Vis_RVM_101 (045110) - 1486 minutes since last transaction (0451101K.0D0)
+Service Ok[29-03-2016 20:00:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+
+March 29, 2016 19:00
+
+Service Critical[29-03-2016 19:59:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 19:56:44] SERVICE ALERT: REJK-P-SQL006;Job - POM orders creation and synchronization DAT - BO;OK;HARD;1;OK, Current Status: Waiting
+Service Unknown[29-03-2016 19:48:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045110;UNKNOWN;HARD;1;UNKNOWN - ARR_Vis_RVM_101 (045110) - SPS link down
+Service Ok[29-03-2016 19:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049511;OK;HARD;1;OK - DSB_Na_RVM_101 (049511) - 8 minutes since last transaction (0495111K.2EB)
+Service Ok[29-03-2016 19:44:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[29-03-2016 19:43:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[29-03-2016 19:42:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[29-03-2016 19:41:44] SERVICE ALERT: REJK-P-SQL006;Job - POM orders creation and synchronization DAT - BO;WARNING;HARD;1;WARNING - Job has failed 1 times during past 5 executions, Current Status: Waiting
+Service Ok[29-03-2016 19:27:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 19:26:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 19:23:34] SERVICE ALERT: AccessPoints;AP2_Storkagervej_15_Risskov-10.87.70.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[29-03-2016 19:23:34] SERVICE ALERT: AccessPoints;AP1_Bisgsrdmark_5_Holstebro-10.87.41.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 19:22:44] SERVICE ALERT: AccessPoints;AP2_Storkagervej_15_Risskov-10.87.70.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 19:22:34] SERVICE ALERT: AccessPoints;AP1_Bisgsrdmark_5_Holstebro-10.87.41.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 19:15:04] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 0 row(s) in prg.ObjTransactionBuffer
+Service Warning[29-03-2016 19:14:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044600;WARNING;HARD;1;WARNING - MT_Trg_RVM_101 (044600) - 1454 minutes since last transaction (0446001K.180)
+Service Ok[29-03-2016 19:11:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 19:10:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 19:10:14] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Warning[29-03-2016 19:03:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049508;WARNING;HARD;1;WARNING - DSB_Ap_RVM_101 (049508) - 1443 minutes since last transaction (0495081K.24C)
+Service Ok[29-03-2016 19:00:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+
+March 29, 2016 18:00
+
+Service Critical[29-03-2016 18:59:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[29-03-2016 18:58:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 18:55:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[29-03-2016 18:54:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[29-03-2016 18:53:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 18:49:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049022;OK;HARD;1;OK - DSB_Næn_RVM_101 (049022) - 4 minutes since last transaction (0490221K.F5D)
+Service Ok[29-03-2016 18:38:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 18:37:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 18:34:34] SERVICE ALERT: AccessPoints;AP3_Industrivej_22_Skibby-10.71.44.22;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 18:33:44] SERVICE ALERT: AccessPoints;AP3_Industrivej_22_Skibby-10.71.44.22;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 18:28:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[29-03-2016 18:27:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[29-03-2016 18:26:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 18:26:04] SERVICE ALERT: REJK-P-SPS005;FSV history out;OK;HARD;1;OK
+Service Ok[29-03-2016 18:22:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 18:21:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[29-03-2016 18:21:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045112;WARNING;HARD;1;WARNING - ARR_Ds_RVM_101 (045112) - 1446 minutes since last transaction (0451121K.235)
+Service Critical[29-03-2016 18:21:04] SERVICE ALERT: REJK-P-SPS005;FSV history out;CRITICAL;HARD;1;CRITICAL - modified time 969 sec exceeded threshold of 900 sec
+Service Ok[29-03-2016 18:18:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049508;OK;HARD;1;OK - DSB_Ap_RVM_101 (049508) - 1398 minutes since last transaction (0495081K.24C)
+Service Ok[29-03-2016 18:16:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049446;OK;HARD;1;OK - DSB_Hj_RVM_101 (049446) - 16 minutes since last transaction (0494461K.9DC)
+Service Ok[29-03-2016 18:14:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045113;OK;HARD;1;OK - ARR_Æk_RVM_101 (045113) - 494 minutes since last transaction (0451131K.802)
+Service Ok[29-03-2016 18:14:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045103;OK;HARD;1;OK - ARR_Bn_RVM_101 (045103) - 581 minutes since last transaction (0451031K.7A8)
+Service Ok[29-03-2016 18:06:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 18:05:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[29-03-2016 18:03:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049508;UNKNOWN;HARD;1;UNKNOWN - DSB_Ap_RVM_101 (049508) - SPS link down
+Service Unknown[29-03-2016 18:01:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049446;UNKNOWN;HARD;1;UNKNOWN - DSB_Hj_RVM_101 (049446) - SPS link down
+
+March 29, 2016 17:00
+
+Service Unknown[29-03-2016 17:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045113;UNKNOWN;HARD;1;UNKNOWN - ARR_Æk_RVM_101 (045113) - SPS link down
+Service Unknown[29-03-2016 17:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045103;UNKNOWN;HARD;1;UNKNOWN - ARR_Bn_RVM_101 (045103) - SPS link down
+Service Ok[29-03-2016 17:51:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048148;OK;HARD;1;OK - STO_Hot_RVM_101 (048148) - 50 minutes since last transaction (0481481K.8D0)
+Service Ok[29-03-2016 17:50:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 17:49:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 17:48:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048117;OK;HARD;1;OK - STO_Gtg_RVM_101 (048117) - 18 minutes since last transaction (0481171K.DB2)
+Service Ok[29-03-2016 17:48:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048517;OK;HARD;1;OK - STO_Val_RVM_103 (048517) - 18 minutes since last transaction (0485171K.5DA)
+Service Unknown[29-03-2016 17:36:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048148;UNKNOWN;HARD;1;UNKNOWN - STO_Hot_RVM_101 (048148) - SPS link down
+Service Ok[29-03-2016 17:34:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[29-03-2016 17:33:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Unknown[29-03-2016 17:33:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048117;UNKNOWN;HARD;1;UNKNOWN - STO_Gtg_RVM_101 (048117) - SPS link down
+Service Unknown[29-03-2016 17:33:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048517;UNKNOWN;HARD;1;UNKNOWN - STO_Val_RVM_103 (048517) - SPS link down
+Service Critical[29-03-2016 17:32:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 17:29:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045131;OK;HARD;1;OK - ARR_Øg_RVM_101 (045131) - 89 minutes since last transaction (0451311K.DD4)
+Service Ok[29-03-2016 17:17:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[29-03-2016 17:16:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[29-03-2016 17:15:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[29-03-2016 17:14:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045131;UNKNOWN;HARD;1;UNKNOWN - ARR_Øg_RVM_101 (045131) - SPS link down
+Service Ok[29-03-2016 17:00:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+
+March 29, 2016 16:00
+
+Service Critical[29-03-2016 16:59:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[29-03-2016 16:58:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 16:56:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[29-03-2016 16:55:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[29-03-2016 16:54:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 16:43:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 16:42:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 16:30:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045163;CRITICAL;HARD;1;CRITICAL - ARR_Bic_RVM_101 (045163) - 2894 minutes since last transaction (0451631K.2B7)
+Service Ok[29-03-2016 16:27:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 16:26:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 16:23:14] SERVICE ALERT: REJK-P-SQL003;TRK - DCP Exception;CRITICAL;HARD;1;Critical - sum: 132.431 / avg: 16.553 files in dcp.ObjTransactionException for the past 7 days
+Service Warning[29-03-2016 16:19:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049022;WARNING;HARD;1;WARNING - DSB_Næn_RVM_101 (049022) - 1443 minutes since last transaction (0490221K.F5C)
+Service Ok[29-03-2016 16:15:04] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 0 row(s) in prg.ObjTransactionBuffer
+Service Critical[29-03-2016 16:10:04] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Ok[29-03-2016 16:09:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[29-03-2016 16:08:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[29-03-2016 16:07:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 16:01:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049540;OK;HARD;1;OK - DSB_Oss_RVM_101 (049540) - 1 minutes since last transaction (0495401K.64B)
+
+March 29, 2016 15:00
+
+Service Ok[29-03-2016 15:56:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[29-03-2016 15:55:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[29-03-2016 15:54:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 15:31:24] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 15:30:24] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 15:30:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049554;OK;HARD;1;OK - DSB_Bak_RVM_101 (049554) - 14 minutes since last transaction (0495541K.4FF)
+Service Ok[29-03-2016 15:24:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[29-03-2016 15:23:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[29-03-2016 15:22:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 15:18:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045122;OK;HARD;1;OK - ARR_Esn_RVM_101 (045122) - 2 minutes since last transaction (0451221K.99B)
+Service Warning[29-03-2016 15:14:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045104;WARNING;HARD;1;WARNING - ARR_Hæ_RVM_101 (045104) - 1443 minutes since last transaction (0451041K.266)
+Service Ok[29-03-2016 15:07:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Ok[29-03-2016 15:07:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 15:06:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[29-03-2016 15:06:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 15:06:04] SERVICE ALERT: REJK-P-SQL006;Job - NetsACC Invoicing TSY - BO;OK;HARD;1;OK, Current Status: Waiting
+Service Critical[29-03-2016 15:05:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+
+March 29, 2016 14:00
+
+Service Ok[29-03-2016 14:50:04] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 0 row(s) in prg.ObjTransactionBuffer
+Service Critical[29-03-2016 14:45:04] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Ok[29-03-2016 14:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045160;OK;HARD;1;OK - ARR_Kæ_RVM_101 (045160) - 14 minutes since last transaction (0451601K.2C5)
+Service Ok[29-03-2016 14:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048007;OK;HARD;1;OK - STO_Und_RVM_101 (048007) - 19 minutes since last transaction (0480073K.0AB)
+Service Ok[29-03-2016 14:40:04] SERVICE ALERT: REJK-P-SQL003;TRK - DCP Buffer;OK;HARD;1;OK - 744 row(s) in dcp.ObjTransactionBuffer - oldest insert at 2016-03-29 14:35:38
+Service Ok[29-03-2016 14:35:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 14:35:04] SERVICE ALERT: REJK-P-SQL003;TRK - DCP Buffer;CRITICAL;HARD;1;CRITICAL - 2155 row(s) in dcp.ObjTransactionBuffer - oldest insert at 2016-03-09 19:28:30
+Service Critical[29-03-2016 14:34:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 14:34:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045138;OK;HARD;1;OK - ARR_Uf_RVM_101 (045138) - 4 minutes since last transaction (0451381K.0CC)
+Service Unknown[29-03-2016 14:29:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048007;UNKNOWN;HARD;1;UNKNOWN - STO_Und_RVM_101 (048007) - SPS link down
+Service Ok[29-03-2016 14:25:04] SERVICE ALERT: REJK-P-SQL003;TRK - DCP Buffer;OK;HARD;1;OK - 1246 row(s) in dcp.ObjTransactionBuffer - oldest insert at 2016-03-29 14:20:24
+Service Ok[29-03-2016 14:21:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[29-03-2016 14:20:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[29-03-2016 14:19:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 14:16:44] SERVICE ALERT: REJK-P-SQL006;Job - POM orders creation and synchronization DAT - BO;CRITICAL;HARD;1;CRITICAL - Job has failed 2 times during past 5 executions, Current Status: Waiting
+Service Warning[29-03-2016 14:16:04] SERVICE ALERT: REJK-P-SQL006;Job - NetsACC Invoicing TSY - BO;WARNING;HARD;1;WARNING - Job has failed 1 times during past 3 executions, Current Status: Waiting
+Service Ok[29-03-2016 14:15:24] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 14:15:04] SERVICE ALERT: REJK-P-SQL003;TRK - DCP Buffer;CRITICAL;HARD;1;CRITICAL - 6402 row(s) in dcp.ObjTransactionBuffer - oldest insert at 2016-02-22 08:50:24
+Service Ok[29-03-2016 14:14:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049515;OK;HARD;1;OK - DSB_Bet_RVM_101 (049515) - 14 minutes since last transaction (0495151K.3C9)
+Service Ok[29-03-2016 14:14:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049380;OK;HARD;1;OK - DSB_RÃ¥d_RVM_101 (049380) - 14 minutes since last transaction (0493801K.621)
+Service Critical[29-03-2016 14:14:34] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 14:10:04] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 0 row(s) in prg.ObjTransactionBuffer
+Service Critical[29-03-2016 14:05:04] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Ok[29-03-2016 14:04:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[29-03-2016 14:04:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 14:03:54] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 14:03:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 14:03:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048116;OK;HARD;1;OK - STO_St_RVM_101 (048116) - 2 minutes since last transaction (0481163K.079)
+Service Warning[29-03-2016 14:01:44] SERVICE ALERT: REJK-P-SQL006;Job - POM orders creation and synchronization DAT - BO;WARNING;HARD;1;WARNING - Job has failed 1 times during past 5 executions, Current Status: Waiting
+Service Ok[29-03-2016 14:01:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047015;OK;HARD;1;OK - MET_Uni_RVM_101 (047015) - 14 minutes since last transaction (0470151K.703)
+Service Ok[29-03-2016 14:01:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047029;OK;HARD;1;OK - MET_Cph_RVM_102 (047029) - 1 minutes since last transaction (0470293K.0FD)
+Service Ok[29-03-2016 14:00:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047014;OK;HARD;1;OK - MET_Isb_RVM_101 (047014) - 12 minutes since last transaction (0470141K.ECF)
+Service Ok[29-03-2016 14:00:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047028;OK;HARD;1;OK - MET_Cph_RVM_101 (047028) - 12 minutes since last transaction (0470281K.6EF)
+
+March 29, 2016 13:00
+
+Service Ok[29-03-2016 13:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047009;OK;HARD;1;OK - MET_Kn_RVM_102 (047009) - 12 minutes since last transaction (0470091K.3FD)
+Service Ok[29-03-2016 13:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047006;OK;HARD;1;OK - MET_For_RVM_101 (047006) - 29 minutes since last transaction (0470061K.97C)
+Service Ok[29-03-2016 13:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047026;OK;HARD;1;OK - MET_Feo_RVM_101 (047026) - 13 minutes since last transaction (0470261K.690)
+Service Ok[29-03-2016 13:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047022;OK;HARD;1;OK - MET_Lgp_RVM_101 (047022) - 29 minutes since last transaction (0470221K.156)
+Service Ok[29-03-2016 13:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047023;OK;HARD;1;OK - MET_Lgp_RVM_102 (047023) - 12 minutes since last transaction (0470231K.458)
+Service Ok[29-03-2016 13:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047010;OK;HARD;1;OK - MET_Kgn_RVM_101 (047010) - 13 minutes since last transaction (0470101K.F20)
+Service Ok[29-03-2016 13:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047012;OK;HARD;1;OK - MET_Khc_RVM_101 (047012) - 13 minutes since last transaction (0470121K.B85)
+Service Ok[29-03-2016 13:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047021;OK;HARD;1;OK - MET_Amb_RVM_102 (047021) - 12 minutes since last transaction (0470211K.0FF)
+Service Ok[29-03-2016 13:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047027;OK;HARD;1;OK - MET_Ksa_RVM_101 (047027) - 13 minutes since last transaction (0470271K.F51)
+Service Ok[29-03-2016 13:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047007;OK;HARD;1;OK - MET_For_RVM_102 (047007) - 29 minutes since last transaction (0470071K.317)
+Service Ok[29-03-2016 13:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047024;OK;HARD;1;OK - MET_Ørs_RVM_101 (047024) - 85 minutes since last transaction (0470241K.9DA)
+Service Critical[29-03-2016 13:56:44] SERVICE ALERT: REJK-P-SQL006;Job - POM orders creation and synchronization DAT - BO;CRITICAL;HARD;1;CRITICAL - Job has failed 2 times during past 5 executions, Current Status: Waiting
+Service Unknown[29-03-2016 13:46:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047015;UNKNOWN;HARD;1;UNKNOWN - MET_Uni_RVM_101 (047015) - SPS link down
+Service Unknown[29-03-2016 13:46:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047029;UNKNOWN;HARD;1;UNKNOWN - MET_Cph_RVM_102 (047029) - SPS link down
+Service Unknown[29-03-2016 13:45:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047014;UNKNOWN;HARD;1;UNKNOWN - MET_Isb_RVM_101 (047014) - SPS link down
+Service Unknown[29-03-2016 13:45:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047028;UNKNOWN;HARD;1;UNKNOWN - MET_Cph_RVM_101 (047028) - SPS link down
+Service Unknown[29-03-2016 13:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047006;UNKNOWN;HARD;1;UNKNOWN - MET_For_RVM_101 (047006) - SPS link down
+Service Unknown[29-03-2016 13:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047009;UNKNOWN;HARD;1;UNKNOWN - MET_Kn_RVM_102 (047009) - SPS link down
+Service Unknown[29-03-2016 13:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047026;UNKNOWN;HARD;1;UNKNOWN - MET_Feo_RVM_101 (047026) - SPS link down
+Service Unknown[29-03-2016 13:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047022;UNKNOWN;HARD;1;UNKNOWN - MET_Lgp_RVM_101 (047022) - SPS link down
+Service Unknown[29-03-2016 13:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047023;UNKNOWN;HARD;1;UNKNOWN - MET_Lgp_RVM_102 (047023) - SPS link down
+Service Unknown[29-03-2016 13:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047010;UNKNOWN;HARD;1;UNKNOWN - MET_Kgn_RVM_101 (047010) - SPS link down
+Service Unknown[29-03-2016 13:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047012;UNKNOWN;HARD;1;UNKNOWN - MET_Khc_RVM_101 (047012) - SPS link down
+Service Warning[29-03-2016 13:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045160;WARNING;HARD;1;WARNING - ARR_Kæ_RVM_101 (045160) - 1454 minutes since last transaction (0451601K.2C4)
+Service Unknown[29-03-2016 13:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047021;UNKNOWN;HARD;1;UNKNOWN - MET_Amb_RVM_102 (047021) - SPS link down
+Service Unknown[29-03-2016 13:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047027;UNKNOWN;HARD;1;UNKNOWN - MET_Ksa_RVM_101 (047027) - SPS link down
+Service Unknown[29-03-2016 13:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047007;UNKNOWN;HARD;1;UNKNOWN - MET_For_RVM_102 (047007) - SPS link down
+Service Unknown[29-03-2016 13:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047024;UNKNOWN;HARD;1;UNKNOWN - MET_Ørs_RVM_101 (047024) - SPS link down
+Service Warning[29-03-2016 13:41:44] SERVICE ALERT: REJK-P-SQL006;Job - POM orders creation and synchronization DAT - BO;WARNING;HARD;1;WARNING - Job has failed 2 times during past 5 executions, Current Status: Withhold
+Service Critical[29-03-2016 13:36:44] SERVICE ALERT: REJK-P-SQL006;Job - POM orders creation and synchronization DAT - BO;CRITICAL;HARD;1;CRITICAL - Job has failed 2 times during past 5 executions, Current Status: Waiting
+Service Warning[29-03-2016 13:26:44] SERVICE ALERT: REJK-P-SQL006;Job - POM orders creation and synchronization DAT - BO;WARNING;HARD;1;WARNING - Job has failed 1 times during past 5 executions, Current Status: Waiting
+Service Ok[29-03-2016 13:18:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 13:17:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 13:16:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044601;OK;HARD;1;OK - MT_Mst_RVM_101 (044601) - 1 minutes since last transaction (0446011K.1CE)
+Service Ok[29-03-2016 13:16:04] SERVICE ALERT: AccessPoints;AP1_Vejlevej_119_Fredericia-10.85.111.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[29-03-2016 13:15:14] SERVICE ALERT: AccessPoints;AP1_Vejlevej_119_Fredericia-10.85.111.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[29-03-2016 13:14:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049511;CRITICAL;HARD;1;CRITICAL - DSB_Na_RVM_101 (049511) - 2894 minutes since last transaction (0495111K.2EA)
+Service Critical[29-03-2016 13:14:14] SERVICE ALERT: AccessPoints;AP1_Vejlevej_119_Fredericia-10.85.111.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 13:08:14] SERVICE ALERT: AccessPoints;AP2_Gunnar_Clausensvej_4_Viby_j-10.87.71.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 13:07:14] SERVICE ALERT: AccessPoints;AP2_Gunnar_Clausensvej_4_Viby_j-10.87.71.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 13:06:44] SERVICE ALERT: REJK-P-SQL006;Job - POM orders creation and synchronization DAT - BO;OK;HARD;1;OK, Current Status: Waiting
+Service Critical[29-03-2016 13:03:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049542;CRITICAL;HARD;1;CRITICAL - DSB_Hjs_RVM_101 (049542) - 2883 minutes since last transaction (0495421K.30E)
+Service Ok[29-03-2016 13:02:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[29-03-2016 13:01:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Warning[29-03-2016 13:01:44] SERVICE ALERT: REJK-P-SQL006;Job - POM orders creation and synchronization DAT - BO;WARNING;HARD;1;WARNING - Job has failed 1 times during past 5 executions, Current Status: Waiting
+Service Critical[29-03-2016 13:00:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+
+March 29, 2016 12:00
+
+Service Ok[29-03-2016 12:48:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[29-03-2016 12:47:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[29-03-2016 12:46:44] SERVICE ALERT: REJK-P-SQL006;Job - POM orders creation and synchronization DAT - BO;CRITICAL;HARD;1;CRITICAL - Job has failed 4 times during past 5 executions, Current Status: Waiting
+Service Critical[29-03-2016 12:46:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 12:45:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[29-03-2016 12:44:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[29-03-2016 12:43:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 12:42:44] SERVICE ALERT: AccessPoints;AP1_Karetmagervej_14_Dronninglund-10.75.9.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[29-03-2016 12:42:34] SERVICE ALERT: AccessPoints;AP1_Industrivej_4_Terndrup-10.75.10.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[29-03-2016 12:42:34] SERVICE ALERT: AccessPoints;AP4_John_F_Kennedys_Plads_1_Aalborg-10.75.11.23;OK;SOFT;2;OK - Got reply from host
+Service Ok[29-03-2016 12:42:34] SERVICE ALERT: AccessPoints;AP1_Skagensvej_58_Tversted-10.75.21.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[29-03-2016 12:42:24] SERVICE ALERT: AccessPoints;AP3_John_F_Kennedys_Plads_1_Aalborg-10.75.11.22;OK;SOFT;2;OK - Got reply from host
+Service Ok[29-03-2016 12:42:24] SERVICE ALERT: AccessPoints;AP1_Bransagervej_23_Pandrup-10.75.35.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[29-03-2016 12:42:24] SERVICE ALERT: AccessPoints;AP2_Fabriksvej_21_Fjerritslev-10.75.16.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[29-03-2016 12:42:24] SERVICE ALERT: AccessPoints;AP1_Fabriksvej_21_Fjerritslev-10.75.16.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[29-03-2016 12:42:24] SERVICE ALERT: AccessPoints;AP1_John_F_Kennedys_Plads_1_Aalborg-10.75.11.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[29-03-2016 12:42:24] SERVICE ALERT: AccessPoints;AP1_Aarupvej_24_Thisted-10.75.50.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[29-03-2016 12:42:04] SERVICE ALERT: AccessPoints;AP1_Fanovej_12_Hjorring-10.75.6.20;OK;SOFT;2;OK - Got reply from host
+Service Ok[29-03-2016 12:42:04] SERVICE ALERT: AccessPoints;AP1_Limfjordsvej_30_Logstor-10.75.2.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 12:41:44] SERVICE ALERT: AccessPoints;AP1_Karetmagervej_14_Dronninglund-10.75.9.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 12:41:44] SERVICE ALERT: AccessPoints;AP1_Industrivej_4_Terndrup-10.75.10.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[29-03-2016 12:41:44] SERVICE ALERT: REJK-P-SQL006;Job - POM orders creation and synchronization DAT - BO;WARNING;HARD;1;WARNING - Job has failed 4 times during past 5 executions, Current Status: Withhold
+Service Critical[29-03-2016 12:41:44] SERVICE ALERT: AccessPoints;AP4_John_F_Kennedys_Plads_1_Aalborg-10.75.11.23;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 12:41:34] SERVICE ALERT: AccessPoints;AP1_Skagensvej_58_Tversted-10.75.21.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 12:41:34] SERVICE ALERT: AccessPoints;AP3_John_F_Kennedys_Plads_1_Aalborg-10.75.11.22;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 12:41:34] SERVICE ALERT: AccessPoints;AP1_Bransagervej_23_Pandrup-10.75.35.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 12:41:24] SERVICE ALERT: AccessPoints;AP2_Fabriksvej_21_Fjerritslev-10.75.16.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 12:41:24] SERVICE ALERT: AccessPoints;AP1_John_F_Kennedys_Plads_1_Aalborg-10.75.11.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 12:41:24] SERVICE ALERT: AccessPoints;AP1_Fabriksvej_21_Fjerritslev-10.75.16.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 12:41:24] SERVICE ALERT: AccessPoints;AP1_Aarupvej_24_Thisted-10.75.50.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 12:41:14] SERVICE ALERT: AccessPoints;AP1_Fanovej_12_Hjorring-10.75.6.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 12:41:14] SERVICE ALERT: AccessPoints;AP1_Limfjordsvej_30_Logstor-10.75.2.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[29-03-2016 12:31:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049540;WARNING;HARD;1;WARNING - DSB_Oss_RVM_101 (049540) - 1452 minutes since last transaction (0495401K.64A)
+Service Ok[29-03-2016 12:29:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048090;OK;HARD;1;OK - STO_Ã…lm_RVM_101 (048090) - 29 minutes since last transaction (0480903K.068)
+Service Warning[29-03-2016 12:29:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045020;WARNING;HARD;1;WARNING - NT_Hhs_RVM_101 (045020) - 1452 minutes since last transaction (0450201K.A2C)
+Service Ok[29-03-2016 12:29:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048107;OK;HARD;1;OK - STO_Her_RVM_101 (048107) - 13 minutes since last transaction (0481071K.F93)
+Service Warning[29-03-2016 12:29:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049380;WARNING;HARD;1;WARNING - DSB_RÃ¥d_RVM_101 (049380) - 1450 minutes since last transaction (0493801K.620)
+Service Ok[29-03-2016 12:28:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 12:27:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 12:26:44] SERVICE ALERT: REJK-P-SQL006;Job - POM orders creation and synchronization DAT - BO;CRITICAL;HARD;1;CRITICAL - Job has failed 2 times during past 5 executions, Current Status: Waiting
+Service Unknown[29-03-2016 12:18:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048116;UNKNOWN;HARD;1;UNKNOWN - STO_St_RVM_101 (048116) - SPS link down
+Service Warning[29-03-2016 12:16:44] SERVICE ALERT: REJK-P-SQL006;Job - POM orders creation and synchronization DAT - BO;WARNING;HARD;1;WARNING - Job has failed 1 times during past 5 executions, Current Status: Waiting
+Service Unknown[29-03-2016 12:14:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048090;UNKNOWN;HARD;1;UNKNOWN - STO_Ã…lm_RVM_101 (048090) - SPS link down
+Service Unknown[29-03-2016 12:14:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048107;UNKNOWN;HARD;1;UNKNOWN - STO_Her_RVM_101 (048107) - SPS link down
+Service Ok[29-03-2016 12:14:24] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 12:13:24] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 12:12:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 12:11:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 12:04:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045111;OK;HARD;1;OK - ARR_Bw_RVM_101 (045111) - 4 minutes since last transaction (0451111K.3AE)
+Service Ok[29-03-2016 12:03:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048116;OK;HARD;1;OK - STO_St_RVM_101 (048116) - 2 minutes since last transaction (0481161K.0C4)
+Service Ok[29-03-2016 12:01:44] SERVICE ALERT: REJK-P-SQL006;Job - POM orders creation and synchronization DAT - BO;OK;HARD;1;OK, Current Status: Waiting
+
+March 29, 2016 11:00
+
+Service Critical[29-03-2016 11:59:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049564;CRITICAL;HARD;1;CRITICAL - DSB_Mr_RVM_101 (049564) - 2892 minutes since last transaction (0495641K.27F)
+Service Ok[29-03-2016 11:58:24] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 11:57:24] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 11:56:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[29-03-2016 11:55:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[29-03-2016 11:54:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[29-03-2016 11:48:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048116;UNKNOWN;HARD;1;UNKNOWN - STO_St_RVM_101 (048116) - SPS link down
+Service Warning[29-03-2016 11:46:44] SERVICE ALERT: REJK-P-SQL006;Job - POM orders creation and synchronization DAT - BO;WARNING;HARD;1;WARNING - Job has failed 1 times during past 5 executions, Current Status: Waiting
+Service Ok[29-03-2016 11:39:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[29-03-2016 11:38:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[29-03-2016 11:37:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 11:27:04] SERVICE ALERT: REJK-P-SQL006;Job - Payment journal posting TSM - BO;OK;HARD;1;OK, Current Status: Waiting
+Service Critical[29-03-2016 11:26:44] SERVICE ALERT: REJK-P-SQL006;Job - POM orders creation and synchronization DAT - BO;CRITICAL;HARD;1;CRITICAL - Job has failed 2 times during past 5 executions, Current Status: Waiting
+Service Ok[29-03-2016 11:22:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 11:21:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 11:17:14] SERVICE ALERT: REJK-P-BCM003;HKP_Overall;OK;HARD;1;OK - RUNNING
+Service Ok[29-03-2016 11:17:14] SERVICE ALERT: REJK-P-BCM003;HKP_BCM;OK;HARD;1;OK - RUNNING
+Service Warning[29-03-2016 11:16:44] SERVICE ALERT: REJK-P-SQL006;Job - POM orders creation and synchronization DAT - BO;WARNING;HARD;1;WARNING - Job has failed 1 times during past 5 executions, Current Status: Waiting
+Service Ok[29-03-2016 11:16:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[29-03-2016 11:16:24] SERVICE ALERT: REJK-P-BCM003;HKP_BCM;CRITICAL;HARD;1;CRITICAL - ONERROR
+Service Critical[29-03-2016 11:16:14] SERVICE ALERT: REJK-P-BCM003;HKP_Overall;CRITICAL;HARD;1;CRITICAL - PARTIALLYRUNNING
+Service Critical[29-03-2016 11:15:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[29-03-2016 11:14:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 11:13:24] SERVICE ALERT: REJK-P-SQL006;Job - Payment journal posting TSN - BO;OK;HARD;1;OK, Current Status: Waiting
+Service Ok[29-03-2016 11:12:14] SERVICE ALERT: REJK-P-DPS006;Netstat DPS;OK;HARD;1;OK
+Service Critical[29-03-2016 11:09:44] SERVICE ALERT: REJK-P-DPS006;Netstat DPS;CRITICAL;HARD;1;(Service Check Timed Out)
+Service Ok[29-03-2016 11:08:04] SERVICE ALERT: REJK-P-SQL006;Job - Payment journal posting DSB - BO;OK;HARD;1;OK, Current Status: Waiting
+Service Ok[29-03-2016 11:06:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Ok[29-03-2016 11:06:44] SERVICE ALERT: REJK-P-SQL006;Job - Payment journal posting ATO - BO;OK;HARD;1;OK, Current Status: Waiting
+Service Critical[29-03-2016 11:05:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[29-03-2016 11:04:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+
+March 29, 2016 10:00
+
+Service Ok[29-03-2016 10:55:24] SERVICE ALERT: REJK-P-DPS001;Netstat DPS;OK;HARD;1;OK
+Service Critical[29-03-2016 10:51:34] SERVICE ALERT: REJK-P-DPS001;Netstat DPS;CRITICAL;HARD;1;(Service Check Timed Out)
+Service Ok[29-03-2016 10:48:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049406;OK;HARD;1;OK - DSB_Vm_RVM_101 (049406) - 62 minutes since last transaction (0494061K.A91)
+Service Ok[29-03-2016 10:36:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049451;OK;HARD;1;OK - DSB_Sa_RVM_101 (049451) - 805 minutes since last transaction (0494511K.5AA)
+Service Ok[29-03-2016 10:36:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049321;OK;HARD;1;OK - DSB_Gt_RVM_101 (049321) - 14 minutes since last transaction (0493211K.827)
+Service Warning[29-03-2016 10:36:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045154;WARNING;HARD;1;WARNING - ARR_Sm_RVM_101 (045154) - 1580 minutes since last transaction (0451541K.2FB)
+Service Unknown[29-03-2016 10:33:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049406;UNKNOWN;HARD;1;UNKNOWN - DSB_Vm_RVM_101 (049406) - SPS link down
+Service Ok[29-03-2016 10:29:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045160;OK;HARD;1;OK - ARR_Kæ_RVM_101 (045160) - 1259 minutes since last transaction (0451601K.2C4)
+Service Ok[29-03-2016 10:29:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049331;OK;HARD;1;OK - STO_Sol_RVM_101 (049331) - 89 minutes since last transaction (0493311K.F50)
+Service Ok[29-03-2016 10:29:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 10:28:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[29-03-2016 10:27:04] SERVICE ALERT: REJK-P-SQL006;Job - Payment journal posting TSM - BO;WARNING;HARD;1;WARNING - Job has failed 1 times during past 2 executions, Current Status: Waiting
+Service Unknown[29-03-2016 10:21:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049451;UNKNOWN;HARD;1;UNKNOWN - DSB_Sa_RVM_101 (049451) - SPS link down
+Service Unknown[29-03-2016 10:21:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049321;UNKNOWN;HARD;1;UNKNOWN - DSB_Gt_RVM_101 (049321) - SPS link down
+Service Unknown[29-03-2016 10:21:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045154;UNKNOWN;HARD;1;UNKNOWN - ARR_Sm_RVM_101 (045154) - SPS link down
+Service Ok[29-03-2016 10:19:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045167;OK;HARD;1;OK - ARR_Ev_RVM_101 (045167) - 1249 minutes since last transaction (0451671K.192)
+Service Ok[29-03-2016 10:19:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Ok[29-03-2016 10:19:14] SERVICE ALERT: REJK-P-DPS002;Netstat DPS;OK;HARD;1;OK
+Service Critical[29-03-2016 10:18:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[29-03-2016 10:17:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 10:16:14] SERVICE ALERT: REJK-P-DPS002;Netstat DPS;CRITICAL;HARD;1;(Service Check Timed Out)
+Service Unknown[29-03-2016 10:14:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045160;UNKNOWN;HARD;1;UNKNOWN - ARR_Kæ_RVM_101 (045160) - SPS link down
+Service Unknown[29-03-2016 10:14:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049331;UNKNOWN;HARD;1;UNKNOWN - STO_Sol_RVM_101 (049331) - SPS link down
+Service Warning[29-03-2016 10:13:24] SERVICE ALERT: REJK-P-SQL006;Job - Payment journal posting TSN - BO;WARNING;HARD;1;WARNING - Job has failed 1 times during past 2 executions, Current Status: Waiting
+Service Ok[29-03-2016 10:10:04] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 0 row(s) in prg.ObjTransactionBuffer
+Service Warning[29-03-2016 10:08:04] SERVICE ALERT: REJK-P-SQL006;Job - Payment journal posting DSB - BO;WARNING;HARD;1;WARNING - Job has failed 1 times during past 2 executions, Current Status: Waiting
+Service Critical[29-03-2016 10:05:04] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Ok[29-03-2016 10:04:54] SERVICE ALERT: REJK-P-DPS004;Netstat DPS;OK;HARD;1;OK
+Service Unknown[29-03-2016 10:04:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045167;UNKNOWN;HARD;1;UNKNOWN - ARR_Ev_RVM_101 (045167) - SPS link down
+Service Ok[29-03-2016 10:04:24] SERVICE ALERT: REJK-P-DPS002;Netstat DPS;OK;HARD;1;OK
+Service Ok[29-03-2016 10:03:14] SERVICE ALERT: REJK-P-DPS003;Netstat DPS;OK;HARD;1;OK
+Service Ok[29-03-2016 10:02:44] SERVICE ALERT: REJK-P-DPS006;Netstat DPS;OK;HARD;1;OK
+Service Critical[29-03-2016 10:01:14] SERVICE ALERT: REJK-P-DPS002;Netstat DPS;CRITICAL;HARD;1;(Service Check Timed Out)
+Service Critical[29-03-2016 10:01:14] SERVICE ALERT: REJK-P-DPS004;Netstat DPS;CRITICAL;HARD;1;(Service Check Timed Out)
+
+March 29, 2016 09:00
+
+Service Ok[29-03-2016 09:59:54] SERVICE ALERT: REJK-P-DPS001;Netstat DPS;OK;HARD;1;OK
+Service Critical[29-03-2016 09:59:44] SERVICE ALERT: REJK-P-DPS006;Netstat DPS;CRITICAL;HARD;1;(Service Check Timed Out)
+Service Critical[29-03-2016 09:59:34] SERVICE ALERT: REJK-P-DPS003;Netstat DPS;CRITICAL;HARD;1;(Service Check Timed Out)
+Service Ok[29-03-2016 09:58:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 09:57:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 09:56:34] SERVICE ALERT: REJK-P-DPS001;Netstat DPS;CRITICAL;HARD;1;(Service Check Timed Out)
+Service Ok[29-03-2016 09:52:24] SERVICE ALERT: REJK-P-DPS005;Netstat DPS;OK;HARD;1;OK
+Service Critical[29-03-2016 09:49:44] SERVICE ALERT: REJK-P-DPS005;Netstat DPS;CRITICAL;HARD;1;(Service Check Timed Out)
+Service Ok[29-03-2016 09:47:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[29-03-2016 09:46:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Ok[29-03-2016 09:46:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045121;OK;HARD;1;OK - ARR_Tb_RVM_101 (045121) - 1 minutes since last transaction (0451211K.6BD)
+Service Critical[29-03-2016 09:45:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 09:42:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 09:41:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 09:30:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[29-03-2016 09:29:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[29-03-2016 09:28:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 09:21:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045125;OK;HARD;1;OK - ARR_Vka_RVM_101 (045125) - 5 minutes since last transaction (0451251K.34D)
+Service Ok[29-03-2016 09:14:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045127;OK;HARD;1;OK - ARR_Vno_RVM_101 (045127) - 14 minutes since last transaction (0451271K.3CD)
+Service Warning[29-03-2016 09:14:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049515;WARNING;HARD;1;WARNING - DSB_Bet_RVM_101 (049515) - 1454 minutes since last transaction (0495151K.3C8)
+Service Ok[29-03-2016 09:13:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[29-03-2016 09:12:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[29-03-2016 09:11:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[29-03-2016 09:06:44] SERVICE ALERT: REJK-P-SQL006;Job - Payment journal posting ATO - BO;WARNING;HARD;1;WARNING - Job has failed 1 times during past 2 executions, Current Status: Waiting
+Service Warning[29-03-2016 09:01:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044601;WARNING;HARD;1;WARNING - MT_Mst_RVM_101 (044601) - 1441 minutes since last transaction (0446011K.1CD)
+
+March 29, 2016 08:00
+
+Service Ok[29-03-2016 08:48:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 044602;OK;HARD;1;OK - MT_Mal_RVM_101 (044602) - 3 minutes since last transaction (0446021K.298)
+Service Ok[29-03-2016 08:41:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[29-03-2016 08:40:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[29-03-2016 08:39:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 08:29:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048019;OK;HARD;1;OK - STO_Gre_RVM_101 (048019) - 13 minutes since last transaction (0480191K.B3D)
+Service Ok[29-03-2016 08:24:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[29-03-2016 08:23:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[29-03-2016 08:22:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[29-03-2016 08:21:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045154;WARNING;HARD;1;WARNING - ARR_Sm_RVM_101 (045154) - 1445 minutes since last transaction (0451541K.2FB)
+Service Ok[29-03-2016 08:19:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047019;OK;HARD;1;OK - MET_Vea_RVM_101 (047019) - 4 minutes since last transaction (0470191K.5BA)
+Service Ok[29-03-2016 08:19:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047920;OK;HARD;1;OK - MET_Van_RVM_101 (047920) - 63 minutes since last transaction (0479201K.776)
+Service Ok[29-03-2016 08:19:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047004;OK;HARD;1;OK - MET_Sot_RVM_101 (047004) - 4 minutes since last transaction (0470041K.A1D)
+Service Ok[29-03-2016 08:18:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047018;OK;HARD;1;OK - MET_Øre_RVM_101 (047018) - 3 minutes since last transaction (0470181K.674)
+Service Ok[29-03-2016 08:18:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047917;OK;HARD;1;OK - MET_Kn_RVM_101 (047917) - 18 minutes since last transaction (0479171K.CC8)
+Service Ok[29-03-2016 08:18:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047003;OK;HARD;1;OK - MET_Lit_RVM_101 (047003) - 3 minutes since last transaction (0470031K.45B)
+Service Ok[29-03-2016 08:18:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047017;OK;HARD;1;OK - MET_Bc_RVM_101 (047017) - 32 minutes since last transaction (0470171K.F16)
+Service Ok[29-03-2016 08:18:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047002;OK;HARD;1;OK - MET_Fl_RVM_101 (047002) - 13 minutes since last transaction (0470021K.190)
+Service Ok[29-03-2016 08:18:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047902;OK;HARD;1;OK - MET_Khs_RVM_101 (047902) - 62 minutes since last transaction (0479021K.597)
+Service Ok[29-03-2016 08:15:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049417;OK;HARD;1;OK - DSB_Gø_RVM_101 (049417) - 14 minutes since last transaction (0494171K.7D7)
+Service Unknown[29-03-2016 08:14:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048019;UNKNOWN;HARD;1;UNKNOWN - STO_Gre_RVM_101 (048019) - SPS link down
+Service Ok[29-03-2016 08:07:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[29-03-2016 08:06:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[29-03-2016 08:05:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[29-03-2016 08:04:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047019;UNKNOWN;HARD;1;UNKNOWN - MET_Vea_RVM_101 (047019) - SPS link down
+Service Unknown[29-03-2016 08:04:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047920;UNKNOWN;HARD;1;UNKNOWN - MET_Van_RVM_101 (047920) - SPS link down
+Service Unknown[29-03-2016 08:04:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047004;UNKNOWN;HARD;1;UNKNOWN - MET_Sot_RVM_101 (047004) - SPS link down
+Service Unknown[29-03-2016 08:03:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047018;UNKNOWN;HARD;1;UNKNOWN - MET_Øre_RVM_101 (047018) - SPS link down
+Service Ok[29-03-2016 08:03:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049448;OK;HARD;1;OK - DSB_Hl_RVM_101 (049448) - 14 minutes since last transaction (0494481K.3DE)
+Service Unknown[29-03-2016 08:03:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047917;UNKNOWN;HARD;1;UNKNOWN - MET_Kn_RVM_101 (047917) - SPS link down
+Service Unknown[29-03-2016 08:03:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047003;UNKNOWN;HARD;1;UNKNOWN - MET_Lit_RVM_101 (047003) - SPS link down
+Service Unknown[29-03-2016 08:03:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047017;UNKNOWN;HARD;1;UNKNOWN - MET_Bc_RVM_101 (047017) - SPS link down
+Service Unknown[29-03-2016 08:03:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047002;UNKNOWN;HARD;1;UNKNOWN - MET_Fl_RVM_101 (047002) - SPS link down
+Service Unknown[29-03-2016 08:03:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 047902;UNKNOWN;HARD;1;UNKNOWN - MET_Khs_RVM_101 (047902) - SPS link down
+
+March 29, 2016 07:00
+
+Service Ok[29-03-2016 07:50:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 07:49:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[29-03-2016 07:48:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049448;UNKNOWN;HARD;1;UNKNOWN - DSB_Hl_RVM_101 (049448) - SPS link down
+Service Critical[29-03-2016 07:34:44] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045111;CRITICAL;HARD;1;CRITICAL - ARR_Bw_RVM_101 (045111) - 2884 minutes since last transaction (0451111K.3AD)
+Service Ok[29-03-2016 07:34:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 07:33:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 07:29:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045106;OK;HARD;1;OK - ARR_Ri_RVM_101 (045106) - 8 minutes since last transaction (0451061K.39B)
+Service Ok[29-03-2016 07:29:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048106;OK;HARD;1;OK - STO_Hut_RVM_101 (048106) - 12 minutes since last transaction (0481061K.A7A)
+Service Ok[29-03-2016 07:29:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049354;OK;HARD;1;OK - DSB_Uu_RVM_101 (049354) - 14 minutes since last transaction (0493541K.4F6)
+Service Ok[29-03-2016 07:20:04] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 0 row(s) in prg.ObjTransactionBuffer
+Service Ok[29-03-2016 07:18:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049556;OK;HARD;1;OK - DSB_Vsa_RVM_101 (049556) - 2 minutes since last transaction (0495561K.3C1)
+Service Critical[29-03-2016 07:15:04] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Ok[29-03-2016 07:14:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045094;OK;HARD;1;OK - NT_Sal_RVM_101 (045094) - 6 minutes since last transaction (0450941K.16F)
+Service Unknown[29-03-2016 07:14:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048106;UNKNOWN;HARD;1;UNKNOWN - STO_Hut_RVM_101 (048106) - SPS link down
+Service Ok[29-03-2016 07:14:14] SERVICE ALERT: AccessPoints;AP1_Vejlevej_119_Fredericia-10.85.111.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[29-03-2016 07:13:14] SERVICE ALERT: AccessPoints;AP1_Vejlevej_119_Fredericia-10.85.111.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[29-03-2016 07:12:14] SERVICE ALERT: AccessPoints;AP1_Vejlevej_119_Fredericia-10.85.111.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 07:03:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 07:02:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+
+March 29, 2016 06:00
+
+Service Ok[29-03-2016 06:56:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[29-03-2016 06:55:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[29-03-2016 06:54:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 06:51:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049561;OK;HARD;1;OK - DSB_Øds_RVM_101 (049561) - 5 minutes since last transaction (0495611K.342)
+Service Ok[29-03-2016 06:51:14] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 048519;OK;HARD;1;OK - DSB_So_RVM_101 (048519) - 5 minutes since last transaction (0485191K.809)
+Service Ok[29-03-2016 06:31:14] SERVICE ALERT: AccessPoints;AP1_Refshalevej_141_havnebus-10.71.1.20;OK;HARD;3;OK - Got reply from host
+Service Ok[29-03-2016 06:30:04] SERVICE ALERT: REJK-P-SPS001;SPS EOD Distribution - Secondary Blacklist;OK;HARD;1;OK - VCF: 53/0 (100%) - RVM: 36/0 (100%)
+Service Ok[29-03-2016 06:29:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049403;OK;HARD;1;OK - DSB_Tl_RVM_101 (049403) - 14 minutes since last transaction (0494031K.499)
+Service Ok[29-03-2016 06:29:24] SERVICE ALERT: REJK-P-SPS001;SPS EOD Distribution - Primary Blacklist;OK;HARD;1;OK - VCF: 53/0 (100%) - RVM: 36/0 (100%)
+Service Ok[29-03-2016 06:28:24] SERVICE ALERT: REJK-P-SPS001;SPS EOD Distribution - Action List;OK;HARD;1;OK - VCF: 53/0 (100%) - RVM: 36/0 (100%)
+Service Ok[29-03-2016 06:17:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[29-03-2016 06:16:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[29-03-2016 06:16:24] SERVICE ALERT: AccessPoints;AP1_Refshalevej_141_havnebus-10.71.1.20;CRITICAL;HARD;3;Critical - No response from host!
+Service Critical[29-03-2016 06:15:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 06:15:24] SERVICE ALERT: AccessPoints;AP1_Refshalevej_141_havnebus-10.71.1.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Ok[29-03-2016 06:14:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045105;OK;HARD;1;OK - ARR_Sne_RVM_101 (045105) - 1049 minutes since last transaction (0451051K.533)
+Service Ok[29-03-2016 06:14:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049566;OK;HARD;1;OK - DSB_Ko_RVM_101 (049566) - 14 minutes since last transaction (0495661K.317)
+Service Critical[29-03-2016 06:14:24] SERVICE ALERT: AccessPoints;AP1_Refshalevej_141_havnebus-10.71.1.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 06:09:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 06:08:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+
+March 29, 2016 05:00
+
+Service Ok[29-03-2016 05:48:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045110;OK;HARD;1;OK - ARR_Vis_RVM_101 (045110) - 631 minutes since last transaction (0451101K.0D0)
+Service Ok[29-03-2016 05:45:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[29-03-2016 05:44:54] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045118;OK;HARD;1;OK - ARR_Rbn_RVM_101 (045118) - 11 minutes since last transaction (0451181K.833)
+Service Critical[29-03-2016 05:44:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 05:38:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 05:37:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[29-03-2016 05:33:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045110;UNKNOWN;HARD;1;UNKNOWN - ARR_Vis_RVM_101 (045110) - SPS link down
+Service Ok[29-03-2016 05:14:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 05:13:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 05:13:24] SERVICE ALERT: REJK-P-SPS002;FSV history out;OK;HARD;1;OK
+Service Ok[29-03-2016 05:12:14] SERVICE ALERT: REJK-P-SPS010;FSV history out;OK;HARD;1;OK
+Service Critical[29-03-2016 05:08:24] SERVICE ALERT: REJK-P-SPS002;FSV history out;CRITICAL;HARD;1;CRITICAL - modified time 912 sec exceeded threshold of 900 sec
+Service Critical[29-03-2016 05:07:14] SERVICE ALERT: REJK-P-SPS010;FSV history out;CRITICAL;HARD;1;CRITICAL - modified time 1057 sec exceeded threshold of 900 sec
+
+March 29, 2016 04:00
+
+Service Ok[29-03-2016 04:58:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 04:57:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 04:56:04] SERVICE ALERT: REJK-P-SPS005;FSV history out;OK;HARD;1;OK
+Service Ok[29-03-2016 04:53:24] SERVICE ALERT: REJK-P-SPS006;FSV history out;OK;HARD;1;OK
+Service Critical[29-03-2016 04:51:04] SERVICE ALERT: REJK-P-SPS005;FSV history out;CRITICAL;HARD;1;CRITICAL - modified time 952 sec exceeded threshold of 900 sec
+Service Critical[29-03-2016 04:48:24] SERVICE ALERT: REJK-P-SPS006;FSV history out;CRITICAL;HARD;1;CRITICAL - modified time 916 sec exceeded threshold of 900 sec
+Service Ok[29-03-2016 04:23:04] SERVICE ALERT: AccessPoints;AP3_Limfjordsvej_30_Logstor-10.75.2.22;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 04:22:04] SERVICE ALERT: AccessPoints;AP3_Limfjordsvej_30_Logstor-10.75.2.22;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 04:17:14] SERVICE ALERT: REJK-P-SPS010;FSV history in;OK;HARD;1;OK
+Service Ok[29-03-2016 04:16:44] SERVICE ALERT: REJK-P-MDL001;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 16GB - Used: 9.785GB (61%) - Free: 6.214GB (39%)
+Service Ok[29-03-2016 04:12:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[29-03-2016 04:12:24] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 04:11:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 04:11:34] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 04:07:14] SERVICE ALERT: REJK-P-SPS010;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 2061 sec exceeded threshold of 1800 sec
+Service Warning[29-03-2016 04:06:44] SERVICE ALERT: REJK-P-MDL001;Ram usage;WARNING;HARD;1;WARNING - [Triggered by _MemUsed%>90] - Physical Memory: Total: 16GB - Used: 15.239GB (95%) - Free: 778.852MB (5%)
+Service Ok[29-03-2016 04:03:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045110;OK;HARD;1;OK - ARR_Vis_RVM_101 (045110) - 526 minutes since last transaction (0451101K.0D0)
+Service Ok[29-03-2016 04:03:24] SERVICE ALERT: REJK-P-MDL002;Ram usage;OK;HARD;1;OK - Physical Memory: Total: 16GB - Used: 10.038GB (63%) - Free: 5.961GB (37%)
+Service Critical[29-03-2016 04:01:44] SERVICE ALERT: REJK-P-MDL001;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>95] - Physical Memory: Total: 16GB - Used: 15.291GB (96%) - Free: 725.977MB (4%)
+Service Ok[29-03-2016 04:01:04] SERVICE ALERT: REJK-P-SMC003;Ram usage;OK;HARD;1;OK - 6.7% (1089508 kB) free.
+
+March 29, 2016 03:00
+
+Service Ok[29-03-2016 03:56:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Ok[29-03-2016 03:56:24] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 03:56:04] SERVICE ALERT: REJK-P-SMC003;Ram usage;CRITICAL;HARD;1;CRITICAL - 1.0% (157600 kB) free!
+Service Critical[29-03-2016 03:55:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 03:55:34] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Unknown[29-03-2016 03:48:34] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 045110;UNKNOWN;HARD;1;UNKNOWN - ARR_Vis_RVM_101 (045110) - SPS link down
+Service Critical[29-03-2016 03:48:24] SERVICE ALERT: REJK-P-MDL002;Ram usage;CRITICAL;HARD;1;CRITICAL - [Triggered by _MemUsed%>95] - Physical Memory: Total: 16GB - Used: 15.377GB (96%) - Free: 637.547MB (4%)
+Service Ok[29-03-2016 03:40:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[29-03-2016 03:39:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[29-03-2016 03:38:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Warning[29-03-2016 03:36:44] SERVICE ALERT: REJK-P-MDL001;Ram usage;WARNING;HARD;1;WARNING - [Triggered by _MemUsed%>90] - Physical Memory: Total: 16GB - Used: 14.707GB (92%) - Free: 1.293GB (8%)
+Service Ok[29-03-2016 03:33:34] SERVICE ALERT: REJK-P-MDL002;MDL incoming files queue;OK;HARD;1;OK
+Service Ok[29-03-2016 03:33:34] SERVICE ALERT: REJK-P-MDL001;MDL incoming files queue;OK;HARD;1;OK
+Service Ok[29-03-2016 03:30:34] SERVICE ALERT: REJK-P-MDL001;MDL incoming files age;OK;HARD;1;OK
+Service Warning[29-03-2016 03:28:24] SERVICE ALERT: REJK-P-MDL002;Ram usage;WARNING;HARD;1;WARNING - [Triggered by _MemUsed%>90] - Physical Memory: Total: 16GB - Used: 14.734GB (92%) - Free: 1.265GB (8%)
+Service Ok[29-03-2016 03:24:24] SERVICE ALERT: REJK-P-MDL002;MDL incoming files age;OK;HARD;1;OK
+Service Ok[29-03-2016 03:23:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;3;OK - Got reply from host
+Service Critical[29-03-2016 03:22:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[29-03-2016 03:21:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 03:18:24] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_2_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_2.exe" running (0 excluded). (List is on next line)
+Service Ok[29-03-2016 03:18:14] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_1_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_1.exe" running (0 excluded). (List is on next line)
+Service Ok[29-03-2016 03:18:14] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_4_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_4.exe" running (0 excluded). (List is on next line)
+Service Ok[29-03-2016 03:18:14] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_1_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_1.exe" running (0 excluded). (List is on next line)
+Service Ok[29-03-2016 03:18:14] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_3_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded). (List is on next line)
+Service Ok[29-03-2016 03:17:14] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_4_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_4.exe" running (0 excluded). (List is on next line)
+Service Warning[29-03-2016 03:16:14] SERVICE ALERT: REJK-P-MDL001;MDL incoming files age;WARNING;HARD;1;WARNING - modified time 4432 sec exceeded threshold of 3600 sec
+Service Ok[29-03-2016 03:16:04] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_3_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded). (List is on next line)
+Service Ok[29-03-2016 03:16:04] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_2_process;OK;HARD;1;OK - Found 1 Instance(s) of "DCP_InserterService_2.exe" running (0 excluded). (List is on next line)
+Service Ok[29-03-2016 03:12:14] SERVICE ALERT: REJK-P-BCM003;HKP_Overall;OK;HARD;1;OK - RUNNING
+Service Ok[29-03-2016 03:12:14] SERVICE ALERT: REJK-P-BCM003;HKP_BCM;OK;HARD;1;OK - RUNNING
+Service Critical[29-03-2016 03:11:14] SERVICE ALERT: REJK-P-BCM003;HKP_Overall;CRITICAL;HARD;1;CRITICAL - PARTIALLYRUNNING
+Service Critical[29-03-2016 03:11:14] SERVICE ALERT: REJK-P-BCM003;HKP_BCM;CRITICAL;HARD;1;CRITICAL - ONERROR
+Service Warning[29-03-2016 03:09:54] SERVICE ALERT: REJK-P-MDL002;MDL incoming files age;WARNING;HARD;1;WARNING - modified time 4002 sec exceeded threshold of 3600 sec
+Service Ok[29-03-2016 03:06:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 03:05:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+
+March 29, 2016 02:00
+
+Service Ok[29-03-2016 02:52:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[29-03-2016 02:51:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Ok[29-03-2016 02:50:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 02:50:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 02:49:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 02:46:04] SERVICE ALERT: REJK-P-SPS009;FSV history in;OK;HARD;1;OK
+Service Ok[29-03-2016 02:46:04] SERVICE ALERT: REJK-P-SMC003;Ram usage;OK;HARD;1;OK - 6.3% (1031752 kB) free.
+Service Ok[29-03-2016 02:45:04] SERVICE ALERT: REJK-P-SPS003;FSV history in;OK;HARD;1;OK
+Service Ok[29-03-2016 02:44:54] SERVICE ALERT: REJK-P-SPS007;FSV history in;OK;HARD;1;OK
+Service Ok[29-03-2016 02:44:54] SERVICE ALERT: REJK-P-SPS001;FSV history in;OK;HARD;1;OK
+Service Ok[29-03-2016 02:43:24] SERVICE ALERT: REJK-P-SPS004;FSV history in;OK;HARD;1;OK
+Service Critical[29-03-2016 02:39:54] SERVICE ALERT: REJK-P-SPS007;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 1837 sec exceeded threshold of 1800 sec
+Service Critical[29-03-2016 02:38:24] SERVICE ALERT: REJK-P-SPS004;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 2050 sec exceeded threshold of 1800 sec
+Service Ok[29-03-2016 02:38:24] SERVICE ALERT: REJK-P-BCM003;HKP_Overall;OK;HARD;1;OK - RUNNING
+Service Ok[29-03-2016 02:38:24] SERVICE ALERT: REJK-P-BCM003;HKP_BCM;OK;HARD;1;OK - RUNNING
+Service Critical[29-03-2016 02:37:24] SERVICE ALERT: REJK-P-BCM003;HKP_BCM;CRITICAL;HARD;1;CRITICAL - ONERROR
+Service Critical[29-03-2016 02:37:14] SERVICE ALERT: REJK-P-BCM003;HKP_Overall;CRITICAL;HARD;1;CRITICAL - PARTIALLYRUNNING
+Service Critical[29-03-2016 02:36:04] SERVICE ALERT: REJK-P-SPS009;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 2063 sec exceeded threshold of 1800 sec
+Service Critical[29-03-2016 02:35:04] SERVICE ALERT: REJK-P-SPS003;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 1940 sec exceeded threshold of 1800 sec
+Service Critical[29-03-2016 02:34:54] SERVICE ALERT: REJK-P-SPS001;FSV history in;CRITICAL;HARD;1;CRITICAL - modified time 1981 sec exceeded threshold of 1800 sec
+Service Ok[29-03-2016 02:25:24] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 02:24:34] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 02:19:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 02:18:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 02:11:04] SERVICE ALERT: REJK-P-SQL003;Boris connections;OK;HARD;1;OK - Number of BORIS TCRW connected: 260
+Service Warning[29-03-2016 02:06:04] SERVICE ALERT: REJK-P-SMC003;Ram usage;WARNING;HARD;1;WARNING - 1.1% (180064 kB) free!
+Service Ok[29-03-2016 02:06:04] SERVICE ALERT: REJK-P-SPS005;FSV history out;OK;HARD;1;OK
+Service Critical[29-03-2016 02:03:34] SERVICE ALERT: REJK-P-MDL002;MDL incoming files queue;CRITICAL;HARD;1;CRITICAL - count 1038 exceeded threshold of 1000
+Service Critical[29-03-2016 02:03:34] SERVICE ALERT: REJK-P-MDL001;MDL incoming files queue;CRITICAL;HARD;1;CRITICAL - count 1165 exceeded threshold of 1000
+Service Critical[29-03-2016 02:03:24] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_2_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_2.exe" running (0 excluded).
+Service Critical[29-03-2016 02:03:14] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_1_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_1.exe" running (0 excluded).
+Service Critical[29-03-2016 02:03:14] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_4_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_4.exe" running (0 excluded).
+Service Critical[29-03-2016 02:03:14] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_1_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_1.exe" running (0 excluded).
+Service Ok[29-03-2016 02:03:14] SERVICE ALERT: REJK-P-SPS003;FSV history out;OK;HARD;1;OK
+Service Critical[29-03-2016 02:03:14] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_3_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded).
+Service Critical[29-03-2016 02:02:14] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_4_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_4.exe" running (0 excluded).
+Service Critical[29-03-2016 02:01:04] SERVICE ALERT: REJK-P-MDL001;DCP_Inserter_3_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_3.exe" running (0 excluded).
+Service Critical[29-03-2016 02:01:04] SERVICE ALERT: REJK-P-MDL002;DCP_Inserter_2_process;CRITICAL;HARD;1;CRITICAL - [Triggered by _ItemCount<1] - Found 0 Instance(s) of "DCP_InserterService_2.exe" running (0 excluded).
+Service Critical[29-03-2016 02:01:04] SERVICE ALERT: REJK-P-SQL003;Boris connections;CRITICAL;HARD;1;CRITICAL - Number of BORIS TCRW connected: 146
+Service Critical[29-03-2016 02:01:04] SERVICE ALERT: REJK-P-SMC003;Ram usage;CRITICAL;HARD;1;CRITICAL - 1.0% (168024 kB) free!
+
+March 29, 2016 01:00
+
+Service Critical[29-03-2016 01:56:04] SERVICE ALERT: REJK-P-SPS005;FSV history out;CRITICAL;HARD;1;CRITICAL - modified time 1106 sec exceeded threshold of 900 sec
+Service Ok[29-03-2016 01:54:24] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 01:53:34] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Critical[29-03-2016 01:53:14] SERVICE ALERT: REJK-P-SPS003;FSV history out;CRITICAL;HARD;1;CRITICAL - modified time 913 sec exceeded threshold of 900 sec
+Service Ok[29-03-2016 01:50:04] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;OK;HARD;1;OK - 0 row(s) in prg.ObjTransactionBuffer
+Service Critical[29-03-2016 01:45:04] SERVICE ALERT: REJK-P-SQL003;TRK - PRG Buffer;CRITICAL;HARD;1;(Return code of 255 is out of bounds)
+Service Ok[29-03-2016 01:33:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 01:32:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 01:21:04] SERVICE ALERT: REJK-P-SMC003;Ram usage;OK;HARD;1;OK - 2.2% (362024 kB) free.
+Service Critical[29-03-2016 01:16:04] SERVICE ALERT: REJK-P-SMC003;Ram usage;CRITICAL;HARD;1;CRITICAL - 1.0% (169780 kB) free!
+Service Ok[29-03-2016 01:02:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 01:01:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+
+March 29, 2016 00:00
+
+Service Ok[29-03-2016 00:53:24] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 00:52:34] SERVICE ALERT: AccessPoints;AP1_Faurskovvej_3_Hadsten-10.87.65.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 00:50:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;OK;SOFT;3;OK - Got reply from host
+Service Critical[29-03-2016 00:49:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;2;Critical - No response from host!
+Service Critical[29-03-2016 00:48:24] SERVICE ALERT: AccessPoints;AP1_Kobenhavnsvej_19_Nykobing_F-10.81.3.20;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 00:46:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Critical[29-03-2016 00:45:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 00:15:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;OK;SOFT;2;OK - Got reply from host
+Service Warning[29-03-2016 00:15:04] SERVICE ALERT: Equipment;RVM - Last Transaction Received - 049417;WARNING;HARD;1;WARNING - DSB_Gø_RVM_101 (049417) - 1441 minutes since last transaction (0494171K.7D6)
+Service Critical[29-03-2016 00:14:44] SERVICE ALERT: AccessPoints;AP2_STS_Naestved-10.81.1.21;CRITICAL;SOFT;1;Critical - No response from host!
+Service Ok[29-03-2016 00:09:14] SERVICE ALERT: REJK-P-SPS004;FSV history out;OK;HARD;1;OK
+Service Ok[29-03-2016 00:08:24] SERVICE ALERT: REJK-P-SPS004;FSV history in;OK;HARD;1;OK
+Service Critical[29-03-2016 00:04:14] SERVICE ALERT: REJK-P-SPS004;FSV history out;CRITICAL;HARD;1;CRITICAL - smb://rejk-p-sps004/D$/IFSBOData/FSV/Outgoing_histo/20160329/FSV_HistoOutgoing.txt not found
+Service Critical[29-03-2016 00:03:24] SERVICE ALERT: REJK-P-SPS004;FSV history in;CRITICAL;HARD;1;CRITICAL - smb://rejk-p-sps004/D$/IFSBOData/FSV/Incoming_histo/20160329/FSV_HistoIncoming.txt not found
+Service Ok[29-03-2016 00:01:24] SERVICE ALERT: REJK-P-SQL006;Job Execution - Creation of collection letter OSS - BO;OK;HARD;1;OK - Normal execution interval
+Service Ok[29-03-2016 00:00:04] SERVICE ALERT: REJK-P-SQL006;Job Execution - Creation of collection letter DSB - BO;OK;HARD;1;OK - Normal execution interval
+
+"@.Split("`r`n")
+
+$select = $data | Select-String -Pattern 'Service Unknown\[(.*)\].*Last Transaction Received.*\((.*)\).*'
+
+$unknowns = foreach($item in $select) {
+ Write-Output ( [pscustomobject]@{
+ Time = [datetime]::ParseExact($item.Matches[0].Groups[1], 'dd-MM-yyyy HH:mm:ss', [cultureinfo]::InvariantCulture)
+ PKISAM = $item.Matches[0].Groups[2]
+ })
+}
\ No newline at end of file
diff --git a/Dennis_Scripts/NagiosSOPGenerator.ps1 b/Dennis_Scripts/NagiosSOPGenerator.ps1
new file mode 100644
index 0000000..9614973
--- /dev/null
+++ b/Dennis_Scripts/NagiosSOPGenerator.ps1
@@ -0,0 +1,176 @@
+$data = @{
+ 'AOS' = @(
+ 'Ax32Serv Process'
+ 'IFS Customer Counter'
+ 'IFS Hotlist Counter'
+ )
+
+
+ 'BCM' = @(
+ 'BCM to DWH Upload Failure'
+ 'CardClosure TCS Not Available'
+ 'IFS Agent List Counter'
+ 'IFS Action List Counter'
+ 'IFS Blacklist Primary Card'
+ 'IFS Blacklist Primary Range'
+ 'IFS Blacklist Primary Device'
+ 'IFS Blacklist Secondary'
+ 'IFS Blacklist Secondary Card'
+ 'IFS Blacklist Secondary Range'
+ 'IFS Blacklist Secondary Device'
+ 'RCOB Import Directory Count'
+ 'RCOB Export Directory Count'
+ 'RCOB Import Files Duplicate'
+ 'CardCheck Rejsekort Sale'
+ 'EOD Generation Action List'
+ 'EOD Generation Primary Blacklist'
+ 'EOD Generation Secondary Blacklist'
+ 'CardClosure'
+ 'Open Refund List'
+ )
+
+ 'CAC' = @(
+ 'Cache Statistics'
+ )
+
+ 'HKP' = @(
+ 'HKP Overall'
+ )
+
+ 'INT' = @(
+ 'MailQueue'
+ 'FTP Batch Reports'
+ 'FTP Batch Exports'
+ )
+
+ 'MDL' = @(
+ 'Incoming Not Processed'
+ 'Incoming Files Age'
+ 'Incoming Files Queue'
+ 'IFS Waiting Events'
+ )
+
+ 'REPORTS' = @(
+ '...'
+ )
+
+ 'SPS' = @(
+ 'Outgoing EFTLogs Queue'
+ 'EOD Distribution Action List'
+ 'EOD Distribution Primary Blacklist'
+ 'EOD Distribution Secondary Blacklist'
+ 'Connected Equipment'
+ )
+
+ 'SQL' = @(
+ 'Job Execution Backup'
+ 'Job Execution DB Integrity Check'
+ 'Job Execution Index Optimization'
+ 'Job Execution DBA Info Collector'
+ 'Job Execution Archiving'
+ 'Performance Check General'
+ 'Performance Check Locks'
+ 'Performance Check Memory'
+ 'Performance Check Waits'
+ 'Performance Check Buffer'
+ 'Performance Check Statistics'
+ 'Performance Check Cache'
+ 'Logfile Usage'
+ 'File Usage'
+ )
+
+ 'SQL-AX' = @(
+ 'EntityLog'
+ 'LongRunning Exec'
+ 'Session EndBlocked'
+ )
+
+ 'SQL-AX-JOBS' = @(
+ 'CPR ZipCode Update'
+ 'Unblock Blocked CPR'
+ 'Accruals Export'
+ 'EntityLog Export'
+ 'NonPersistent Entities Export'
+ 'Persistent Entities Export'
+ 'Open Payments Export'
+ 'POM Transaction Creation'
+ 'Purge BatchHistory Parameters'
+ 'Purge BatchHistory Records'
+ 'Update Performance Counters'
+ 'CPR Customer Address Update'
+ )
+
+ 'SQL-MSBI' = @(
+ 'Active Node MSBI vs PDB'
+ )
+
+ 'SQL-PDB' = @(
+ 'Duplicate CWS Username'
+ 'Frequent Travellers'
+ 'TRK'
+ 'Job Execution IFS Auditing'
+ 'Job Execution IFS Tracking'
+ 'Unprocessed TCS Transactions'
+ 'Last CWS Purse Reload'
+ )
+
+ 'TCS' = @(
+ 'BORIS Connection Count'
+ 'BORIS Shift Count'
+ 'FSV Outgoing File Age'
+ )
+
+ 'WEB' = @(
+ 'IIS Connections'
+ 'IIS Users'
+ 'IIS Requests'
+ 'IIS Transfers'
+ )
+
+ 'WEB-BO' = @(
+ 'BackOffice Website'
+ )
+
+ 'WEB-BORIS' = @(
+ 'BORIS Website'
+ )
+
+ 'WEB-CWS' = @(
+ 'CWS Website'
+ )
+
+ 'XPS' = @(
+ 'Outgoing File Queue'
+ 'Outgoing Logbooks Queue'
+ )
+}
+
+$etoloutput = foreach($key in ($data.keys | sort)) {
+ "$key
"
+
+ $array = $data[$key]
+ foreach($item in $array) {
+ #"$item
"
+ #""
+
+ "$item
"
+ }
+}
+
+#https://e-ecm.thalesgroup.com/livelink/livelink.exe?func=ll&objId=6398950&objAction=WikiView#Duplicate CWS Username
+$nagiosoutput = foreach($key in ($data.keys | sort)) {
+ #"$key
"
+
+ $array = $data[$key]
+ foreach($item in $array) {
+ @{
+ title = "SISOP - $item"
+ description = $item
+ actions = @(
+ "E-TOL WIKI - $item"
+ )
+ }
+ }
+}
+
+$nagiosoutput | ConvertTo-Json
\ No newline at end of file
diff --git a/Dennis_Scripts/ParseDWHMissingFinancialDocuments.ps1 b/Dennis_Scripts/ParseDWHMissingFinancialDocuments.ps1
new file mode 100644
index 0000000..676f1f7
--- /dev/null
+++ b/Dennis_Scripts/ParseDWHMissingFinancialDocuments.ps1
@@ -0,0 +1,34 @@
+$csv = Import-Csv .\Missing_financial_documents_201603.csv -Delimiter ';'
+
+$startDate = Get-Date
+$endDate = Get-Date 'January 1, 1970'
+
+$result = foreach($entry in $csv) {
+ $date = [datetime]::ParseExact($entry.documentdate, 'dd-MM-yyyy', [cultureinfo]::InvariantCulture)
+
+ if($date -gt $endDate) { $endDate = $date }
+ if($date -lt $startDate) { $startdate = $date }
+
+ [pscustomobject]@{
+ PTORefNumber = $entry.ptorefnumber
+ MissingDocument = $entry.MissingDocument
+ DocumentType = & {
+ switch($entry.MissingDocument.Substring(0,1)) {
+ "F" { "Invoice" }
+ "K" { "CreditNote" }
+ "R" { "Reminder" }
+ "B" { "Payment" }
+ "E" { "Interest" }
+ default {
+ Write-Host "Skipping $($entry.ptorefnumber):$($entry.MissingDocument)"
+ continue
+ }
+ }
+ }
+ }
+}
+
+
+$result | Export-Csv -Delimiter ';' -NoTypeInformation -NoClobber -Path "MissingNo.csv"
+
+Get-Content -Path "MissingNo.csv" | Select -Skip 1 | % { $_ -replace '"','' } | Out-File -FilePath 'MissingNo.Processed.csv'
\ No newline at end of file
diff --git a/Dennis_Scripts/ParseFinanceNonPersistentAX.ps1 b/Dennis_Scripts/ParseFinanceNonPersistentAX.ps1
new file mode 100644
index 0000000..d7276db
--- /dev/null
+++ b/Dennis_Scripts/ParseFinanceNonPersistentAX.ps1
@@ -0,0 +1,54 @@
+
+$files = Get-Item C:\Users\ewpmni\Desktop\NonPers\Finance*.xml
+$fileCount = $files.Count
+$fileNum = 0
+
+$result = foreach($file in $files) {
+
+ $fileNum++
+
+ Write-Progress -Id 1 -Activity "File" -Status "$($file.Name) - Loading XML" -PercentComplete ($fileNum / $fileCount * 100)
+
+ $xml = [xml](Get-Content $file)
+
+ Write-Progress -Id 1 -Activity "File" -Status "$($file.Name) - Processing invoices" -PercentComplete ($fileNum / $fileCount * 100)
+
+ $invoiceCount = $xml.DataExportFile.DataGroup.DataType.Finance.Invoice.Count
+ $invoiceNum = 0
+
+ foreach($invoice in $xml.DataExportFile.DataGroup.DataType.Finance.Invoice) {
+
+ $invoiceNum++
+
+ Write-Progress -ParentId 1 -Activity "Invoice" -Status "$invoiceNum / $invoiceCount" -PercentComplete ($invoiceNum / $invoiceCount * 100)
+
+ [pscustomobject]@{
+ ID = $invoice.DocumentUniqueID
+ File = $file.Name
+ PTO = $invoice.PTORefNumber
+ }
+ }
+
+ Write-Progress -ParentId 1 -Activity "Invoice" -Completed
+}
+
+
+$dup = @{}
+
+$dupIds = for($i = 0; $i -lt $result.Count; $i++) {
+ $id = "{0}_{1}" -f $result[$i].ID, $result[$i].PTO
+
+ if(-not $dup.ContainsKey($id)) {
+ $dup[$id] = @( $result[$i].File )
+ }
+ else {
+ $dup[$id] += $result[$i].File
+ $id
+ }
+}
+
+
+foreach($id in $dupIds) {
+ Write-Verbose -Verbose "ID: $id"
+ $dup[$id]
+}
\ No newline at end of file
diff --git a/Dennis_Scripts/ParseNagiosEquipmentPage.ps1 b/Dennis_Scripts/ParseNagiosEquipmentPage.ps1
new file mode 100644
index 0000000..3c35760
--- /dev/null
+++ b/Dennis_Scripts/ParseNagiosEquipmentPage.ps1
@@ -0,0 +1,73 @@
+$wc = New-Object System.Net.WebClient
+#$wc.Credentials = New-Object System.Net.NetworkCredential 'Nagios\nagiosadmin','1dsb3wmrDJ'
+
+#Convert.ToBase64String(
+# Encoding.ASCII.GetBytes(userName + ":" + password));
+#client.Headers[HttpRequestHeader.Authorization] = string.Format(
+# "Basic {0}", credentials);
+
+$credentials = [System.Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes('nagiosadmin:1dsb3wmrDJ'))
+
+$wc.Headers['Authorization'] = ("Basic {0}" -f $credentials)
+
+
+$data = $wc.DownloadString('http://sysops-prod.east-west.dk/nagios/cgi-bin/status.cgi?host=Equipment')
+
+
+$lines = $data.Split("`r`n")
+
+$select = $lines | Select-String -Pattern 'OK - (.*?) \(([0-9]+)\) - ([0-9]+) minutes since last transaction'
+
+$result = $select | Select-Object @{ n='RVM'; e={ $_.Matches[0].Groups[1].Value }}, @{ n='ID'; e={ $_.Matches[0].Groups[2].Value }}, @{ n='TimeSinceLast'; e={ [int]$_.Matches[0].Groups[3].Value }}
+
+$exempt = @"
+ARR_Ak_RVM_101
+ARR_Bg_RVM_101
+ARR_Brr_RVM_101
+ARR_Bs_RVM_101
+ARR_Bu_RVM_101
+ARR_Ev_RVM_101
+ARR_Gu_RVM_101
+ARR_GÃ¥_RVM_101
+ARR_He_RVM_101
+ARR_Hm_RVM_101
+ARR_Hrm_RVM_101
+ARR_Hæ_RVM_101
+ARR_Is_RVM_101
+ARR_La_RVM_101
+ARR_Ln_RVM_101
+ARR_No_RVM_101
+ARR_Sej_RVM_101
+ARR_Stu_RVM_101
+ARR_Tm_RVM_101
+ARR_Ul_RVM_101
+ARR_Um_RVM_101
+ARR_Up_RVM_101
+ARR_Vem_RVM_101
+ARR_Vis_RVM_101
+ARR_Yd_RVM_101
+DSB_Bd_RVM_101
+DSB_Frs_RVM_101
+DSB_Gd_RVM_101
+DSB_Hp_RVM_101
+DSB_Høs_RVM_101
+DSB_Ka_RVM_101
+DSB_Kv_RVM_101
+DSB_Kvs_RVM_101
+DSB_Kw_RVM_101
+DSB_Lpt_RVM_101
+DSB_Lt_RVM_101
+DSB_Lv_RVM_101
+DSB_Pds_RVM_101
+DSB_Rus_RVM_101
+DSB_Sc_RVM_101
+DSB_Sis_RVM_101
+DSB_Sts_RVM_101
+DSB_To_RVM_101
+DSB_Tu_RVM_101
+RVM_Test1
+"@.Split("`r`n")
+
+$output = $result | where { ($_.TimeSinceLast -gt 1440 -and $exempt -notcontains $_.RVM) -or ($_.TimeSinceLast -gt 20140 -and $exempt -contains $_.RVM) }
+
+$output | Out-GridView
\ No newline at end of file
diff --git a/Dennis_Scripts/ParseNagiosHostgroup.ps1 b/Dennis_Scripts/ParseNagiosHostgroup.ps1
new file mode 100644
index 0000000..09bec91
--- /dev/null
+++ b/Dennis_Scripts/ParseNagiosHostgroup.ps1
@@ -0,0 +1,5051 @@
+$newStuff = @"
+
+define servicedependency {
+ hostgroup_name SQL-AX
+ service_description SQL-CLUSTER - WMI - Service - SQL Server
+ dependent_service_description SQL-AX - SQL - *
+
+ execution_failure_criteria c,u
+ notification_failure_criteria c,u
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Entitylog - TravelCard Entitylog
+ use thales-service
+ check_command entity_log_sql
+ _ARGS -t 1 -w 175000 -c 200000
+ _SOP Database Issue
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Entitylog - AIF Outbound
+ use thales-service
+ check_command entity_log_sql
+ _ARGS -t 2 -w 175000 -c 200000
+ _SOP Database Issue
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Entitylog - AIF Gateway
+ use thales-service
+ check_command entity_log_sql
+ _ARGS -t 3 -w 175000 -c 200000
+ _SOP Database Issue
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - TravelCardDynamicsAX - Longrunning Exec
+ use thales-service
+ check_command check_ax_sql
+ _ARGS -type longrun -crit 21600
+ _SOP Database Issue
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - TravelCardDynamicsAX - Session EndBlocked
+ use thales-service
+ check_command check_ax_sql
+ _ARGS -type endblocked
+ _SOP Database Issue
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - TravelCardDynamicsAX - Logfile usage
+ use thales-service-10
+ check_command check_database_logfile_usage
+ _ARGS -database 'TravelCardDynamicsAX' -logfile 'TravelCardDynamicsAX_log' -server_type 'axdb'
+ _SOP Database logfile usage
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - TravelCardDynamicsAX - File usage
+ use thales-service-60
+ check_command check_database_file_usage_info
+ _ARGS -database 'TravelCardDynamicsAX' -server_type 'axdb'
+ _SOP Database file usage
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Backup USER DATABASES DIFF
+ use thales-service-180
+ check_command check_sqlserver_job_execution
+ _ARGS -job_name 'DatabaseBackup - USER_DATABASES - DIFF' -sql_host 'axdb' -hours_last_execution 26
+ _SOP Database Issue
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Backup USER DATABASES FULL
+ use thales-service-180
+ check_command check_sqlserver_job_execution
+ _ARGS -job_name 'DatabaseBackup - USER_DATABASES - FULL' -sql_host 'axdb' -hours_last_execution 175
+ _SOP Database Issue
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Backup USER DATABASES LOG
+ use thales-service-10
+ check_command check_sqlserver_job_execution
+ _ARGS -job_name 'DatabaseBackup - USER_DATABASES - LOG' -sql_host 'axdb' -hours_last_execution 1
+ _SOP Database Issue
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - DatabaseIntegrityCheck ALL DATABASES
+ use thales-service-180
+ check_command check_sqlserver_job_execution
+ _ARGS -job_name 'Maintenance - DatabaseIntegrityCheck - ALL_DATABASES' -sql_host 'axdb' -hours_last_execution 250
+ _SOP Database Issue
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - IndexOptimize USER DATABASES
+ use thales-service-180
+ check_command check_sqlserver_job_execution
+ _ARGS -job_name 'Maintenance - IndexOptimize - USER_DATABASES' -sql_host 'axdb' -hours_last_execution 250
+ _SOP Database Issue
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - ThalesDBAInfoCollector
+ use thales-service-180
+ check_command check_sqlserver_job_execution
+ _ARGS -job_name 'ThalesDBAInfoCollector' -sql_host 'pdb' -hours_last_execution 26
+ _SOP Database Issue
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - TravelCardDynamicsAX - e-Invoice Received
+ use thales-service-60
+ check_command check_ax_einvoice_received
+ _CHECKTYPE Day
+ _SOP Database Issue - BackOffice
+}
+
+
+
+#
+# AX jobs
+#
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - CPR ZipCodes/Streets Update DAT - SI
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'CPR ZipCodes/Streets Update' -company 'dat'
+ _SOP Database Issue
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Unblock blocked CPR DAT - SI
+ use thales-service-15
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'Unblock blocked CPR' -company 'dat'
+ _SOP Database Issue
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Accruals and Provisions Export DAT - SI
+ use thales-service-1440
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Accruals and Provisions Export' -company 'dat'
+ _SOP Database Issue
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - AOTExport for PerfMonitor DSB - TD
+ use thales-service-1440
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'AOTExport' -company 'dsb'
+ _SOP Database Issue
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Cancel not activated payment agreements DAT - BO
+ use thales-service-360
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Cancel not activated payment agreements' -company 'dat'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Creation of collection letter TSY - BO
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Creation of collection letter' -company 'tsy'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Creation of collection letter TSM - BO
+ use thales-service-360
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Creation of collection letter' -company 'tsm'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Creation of collection letter TSN - BO
+ use thales-service-360
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Creation of collection letter' -company 'tsn'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Creation of collection letter ATO - BO
+ use thales-service-360
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Creation of collection letter' -company 'ato'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Creation of collection letter DSB - BO
+ use thales-service-360
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Creation of collection letter' -company 'dsb'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Creation of collection letter OSS - BO
+ use thales-service-360
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Creation of collection letter' -company 'oss'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Creation of collection letter REJ - BO
+ use thales-service-360
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Creation of collection letter' -company 'rej'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Creation of collection letter TSJ - BO
+ use thales-service-360
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Creation of collection letter' -company 'tsj'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Creation of collection letter FYN - BO
+ use thales-service-360
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Creation of collection letter' -company 'fyn'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Creation of collection letter RK - BO
+ use thales-service-360
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Creation of collection letter' -company 'rk'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - E-Invoice export DAT - BO
+ use thales-service-360
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'E-Invoice export' -company 'dat'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Entity log export NO AIF DSB - SI
+ use thales-service-5
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 2 -job_name 'Entity log export (no AIF)' -company 'dsb'
+ _SOP Database Issue
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Expired Payment Agreements Updates DSB - BO
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Expired Payment Agreements Updates' -company 'dsb'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Netaxept Request/Response DAT - BO
+ use thales-service-90
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'Netaxept Request/Response' -company 'dat'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Nets BS Update Request M605 DAT - BO
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Nets BS Update Request (M605)' -company 'dat'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Nets BS Update Response M603 DAT - BO
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Nets BS Update Response (M603)' -company 'dat'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Nets Invoice/Reminder Request M601 DAT - BO
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Nets Invoice/Reminder Request (M601)' -company 'dat'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Nets Invoice/Reminder Response M602 DAT - BO
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Nets Invoice/Reminder Response (M602)' -company 'dat'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsACC Invoicing DSB - BO
+ use thales-service-30
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsACC Invoicing' -company 'dsb'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsACC Invoicing ATO - BO
+ use thales-service-30
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsACC Invoicing' -company 'ato'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsACC Invoicing TSM - BO
+ use thales-service-30
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsACC Invoicing' -company 'tsm'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsACC Invoicing TSJ - BO
+ use thales-service-30
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsACC Invoicing' -company 'tsj'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsACC Invoicing REJ - BO
+ use thales-service-30
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsACC Invoicing' -company 'rej'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsACC Invoicing OSS - BO
+ use thales-service-30
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsACC Invoicing' -company 'oss'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsACC Invoicing TSY - BO
+ use thales-service-30
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsACC Invoicing' -company 'tsy'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsACC Invoicing TSN - BO
+ use thales-service-30
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsACC Invoicing' -company 'tsn'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsACC Invoicing FYN - BO
+ use thales-service-30
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsACC Invoicing' -company 'fyn'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsACC Invoicing RK - BO
+ use thales-service-30
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsACC Invoicing' -company 'rk'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsACC Invoicing RPTO - BO
+ use thales-service-30
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsACC Invoicing' -company 'rpto'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsBS Invoicing TSN - BO
+ use thales-service-1440
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsBS Invoicing' -company 'tsn'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsBS Invoicing TSY - BO
+ use thales-service-1440
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsBS Invoicing' -company 'tsy'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsBS Invoicing OSS - BO
+ use thales-service-1440
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsBS Invoicing' -company 'oss'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsBS Invoicing REJ - BO
+ use thales-service-1440
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsBS Invoicing' -company 'rej'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsBS Invoicing TSJ - BO
+ use thales-service-1440
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsBS Invoicing' -company 'tsj'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsBS Invoicing TSM - BO
+ use thales-service-1440
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsBS Invoicing' -company 'tsm'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsBS Invoicing ATO - BO
+ use thales-service-1440
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsBS Invoicing' -company 'ato'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsBS Invoicing DSB - BO
+ use thales-service-1440
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsBS Invoicing' -company 'dsb'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsBS Invoicing FYN - BO
+ use thales-service-1440
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsBS Invoicing' -company 'fyn'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsBS Invoicing RPTO - BO
+ use thales-service-1440
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsBS Invoicing' -company 'rpto'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsBS Invoicing RK - BO
+ use thales-service-1440
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsBS Invoicing' -company 'rk'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsINV E-Invoicing DSB - BO
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV E-Invoicing' -company 'dsb'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsINV E-Invoicing ATO - BO
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV E-Invoicing' -company 'ato'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsINV E-Invoicing TSM - BO
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV E-Invoicing' -company 'tsm'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsINV E-Invoicing TSJ - BO
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV E-Invoicing' -company 'tsj'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsINV E-Invoicing REJ - BO
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV E-Invoicing' -company 'rej'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsINV E-Invoicing OSS - BO
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV E-Invoicing' -company 'oss'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsINV E-Invoicing TSY - BO
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV E-Invoicing' -company 'tsy'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsINV E-Invoicing TSN - BO
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV E-Invoicing' -company 'tsn'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsINV E-Invoicing FYN - BO
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV E-Invoicing' -company 'fyn'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsINV E-Invoicing RPTO - BO
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV E-Invoicing' -company 'rpto'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsINV E-Invoicing RK - BO
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV E-Invoicing' -company 'rk'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsINV Invoicing TSN - BO
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV Invoicing' -company 'tsn'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsINV Invoicing TSY - BO
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV Invoicing' -company 'tsy'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsINV Invoicing OSS - BO
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV Invoicing' -company 'oss'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsINV Invoicing REJ - BO
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV Invoicing' -company 'rej'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsINV Invoicing TSJ - BO
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV Invoicing' -company 'tsj'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsINV Invoicing TSM - BO
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV Invoicing' -company 'tsm'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsINV Invoicing ATO - BO
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV Invoicing' -company 'ato'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsINV Invoicing DSB - BO
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV Invoicing' -company 'dsb'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsINV Invoicing RK - BO
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV Invoicing' -company 'rk'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsINV Invoicing RPTO - BO
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV Invoicing' -company 'rpto'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsINV Invoicing FYN - BO
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV Invoicing' -company 'fyn'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsOS Invoicing DSB - BO
+ use thales-service-90
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsOS Invoicing' -company 'dsb'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsOS Invoicing ATO - BO
+ use thales-service-90
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsOS Invoicing' -company 'ato'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsOS Invoicing TSM - BO
+ use thales-service-90
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsOS Invoicing' -company 'tsm'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsOS Invoicing TSJ - BO
+ use thales-service-90
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsOS Invoicing' -company 'tsj'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsOS Invoicing REJ - BO
+ use thales-service-90
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsOS Invoicing' -company 'rej'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsOS Invoicing OSS - BO
+ use thales-service-90
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsOS Invoicing' -company 'oss'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsOS Invoicing TSY - BO
+ use thales-service-90
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsOS Invoicing' -company 'tsy'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsOS Invoicing TSN - BO
+ use thales-service-90
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsOS Invoicing' -company 'tsn'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsOS Invoicing FYN - BO
+ use thales-service-90
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsOS Invoicing' -company 'fyn'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsOS Invoicing RPTO - BO
+ use thales-service-90
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsOS Invoicing' -company 'rpto'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NetsOS Invoicing RK - BO
+ use thales-service-90
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsOS Invoicing' -company 'rk'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Non-Persistent entities export DAT - SI
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'Non-Persistent entities export' -company 'dat'
+ _SOP Database Issue
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NoPA Invoicing ATO - BO
+ use thales-service-5
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoPA Invoicing' -company 'ato'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NoPA Invoicing DSB - BO
+ use thales-service-5
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoPA Invoicing' -company 'dsb'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NoPA Invoicing OSS - BO
+ use thales-service-5
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoPA Invoicing' -company 'oss'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NoPA Invoicing REJ - BO
+ use thales-service-5
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoPA Invoicing' -company 'rej'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NoPA Invoicing TSJ - BO
+ use thales-service-5
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoPA Invoicing' -company 'tsj'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NoPA Invoicing TSM - BO
+ use thales-service-5
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoPA Invoicing' -company 'tsm'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NoPA Invoicing TSN - BO
+ use thales-service-5
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoPA Invoicing' -company 'tsn'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NoPA Invoicing TSY - BO
+ use thales-service-5
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoPA Invoicing' -company 'tsy'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NoPA Invoicing RPTO - BO
+ use thales-service-5
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoPA Invoicing' -company 'rpto'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NoPA Invoicing RK - BO
+ use thales-service-5
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoPA Invoicing' -company 'rk'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NoPA Invoicing FYN - BO
+ use thales-service-5
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoPA Invoicing' -company 'fyn'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NoTransfer Invoicing TSY - BO
+ use thales-service-5
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoTransfer Invoicing' -company 'tsy'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NoTransfer Invoicing TSN - BO
+ use thales-service-5
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoTransfer Invoicing' -company 'tsn'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NoTransfer Invoicing TSM - BO
+ use thales-service-5
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoTransfer Invoicing' -company 'tsm'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NoTransfer Invoicing TSJ - BO
+ use thales-service-5
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoTransfer Invoicing' -company 'tsj'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NoTransfer Invoicing REJ - BO
+ use thales-service-5
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoTransfer Invoicing' -company 'rej'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NoTransfer Invoicing OSS - BO
+ use thales-service-5
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoTransfer Invoicing' -company 'oss'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NoTransfer Invoicing DSB - BO
+ use thales-service-5
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoTransfer Invoicing' -company 'dsb'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NoTransfer Invoicing ATO - BO
+ use thales-service-5
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoTransfer Invoicing' -company 'ato'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NoTransfer Invoicing RPTO - BO
+ use thales-service-5
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoTransfer Invoicing' -company 'rpto'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NoTransfer Invoicing RK - BO
+ use thales-service-5
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoTransfer Invoicing' -company 'rk'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - NoTransfer Invoicing FYN - BO
+ use thales-service-5
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoTransfer Invoicing' -company 'fyn'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Open Payments Export DAT - SI
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Open Payments Export' -company 'dat'
+ _SOP Database Issue
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Payment journal posting ATO - BO
+ use thales-service-90
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 2 -job_name 'Payment journal posting' -company 'ato'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Payment journal posting DSB - BO
+ use thales-service-90
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 2 -job_name 'Payment journal posting' -company 'dsb'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Payment journal posting OSS - BO
+ use thales-service-90
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 2 -job_name 'Payment journal posting' -company 'oss'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Payment journal posting REJ - BO
+ use thales-service-90
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 2 -job_name 'Payment journal posting' -company 'rej'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Payment journal posting TSJ - BO
+ use thales-service-90
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 2 -job_name 'Payment journal posting' -company 'tsj'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Payment journal posting TSM - BO
+ use thales-service-90
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 2 -job_name 'Payment journal posting' -company 'tsm'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Payment journal posting TSN - BO
+ use thales-service-90
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 2 -job_name 'Payment journal posting' -company 'tsn'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Payment journal posting TSY - BO
+ use thales-service-90
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 2 -job_name 'Payment journal posting' -company 'tsy'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Payment journal posting RK - BO
+ use thales-service-90
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 2 -job_name 'Payment journal posting' -company 'rk'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Payment journal posting RPTO - BO
+ use thales-service-90
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 2 -job_name 'Payment journal posting' -company 'rpto'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Payment journal posting FYN - BO
+ use thales-service-90
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 2 -job_name 'Payment journal posting' -company 'fyn'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Persistent entities export DAT - SI
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Persistent entities export' -company 'dat'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - POM transactions creation DAT - SI and BO
+ use thales-service-10
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'POM transactions creation' -company 'dat'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Purge batchHistory parameters field RK - SI
+ use thales-service-90
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'Purge batchHistory parameters field' -company 'rk'
+ _SOP Database Issue
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Purge batchHistory records RK - SI
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Purge batchHistory records' -company 'rk'
+ _SOP Database Issue
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Update performance counters DAT - SI
+ use thales-service-10
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 10 -job_name 'Update performance counters' -company 'dat'
+ _SOP Database Issue
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Workflow due date processing DAT - BO
+ use thales-service-1
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'Workflow due date processing' -company 'dat'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Workflow line-item notifications DAT - BO
+ use thales-service-30
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'Workflow line-item notifications' -company 'dat'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Workflow message processing DAT - BO
+ use thales-service-5
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'Workflow message processing' -company 'dat'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - CPR Customers Address Update DAT - SI
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'CPR Customers Address Update' -company 'dat'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Netaxept bank card verification DAT - BO
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Netaxept bank card verification' -company 'dat'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Nets BS message 0686 DAT - BO
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Nets BS message 0686' -company 'dat'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - Nets Refund Request DAT - BO
+ use thales-service-720
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Nets Refund Request' -company 'dat'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job - POM orders creation and synchronization DAT - BO
+ use thales-service-15
+ servicegroups ax-jobs
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'POM orders creation/synchronization' -company 'dat'
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - POM orders creation and synchronization DAT - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dat' -job_name 'POM orders creation/synchronization' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Nets Refund Request DAT - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dat' -job_name 'Nets Refund Request' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Nets BS message 0686 DAT DAT - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dat' -job_name 'Nets BS message 0686' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Netaxept bank card verification DAT - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dat' -job_name 'Netaxept bank card verification' -hours_last_execution 170
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Cancel not activated payment agreements DAT - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dat' -job_name 'Cancel not activated payment agreements' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Nets Invoice Reminder Request M601 DAT - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dat' -job_name 'Nets Invoice/Reminder Request (M601)' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Nets Invoice Reminder Response M602 DAT - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dat' -job_name 'Nets Invoice/Reminder Response (M602)' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Nets BS Update Response M603 DAT - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dat' -job_name 'Nets BS Update Response (M603)' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Nets BS Update Request M605 DAT - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dat' -job_name 'Nets BS Update Request (M605)' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+
+ service_description SQL-AX - SQL - Job Execution - Netaxept Request Response DAT - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dat' -job_name 'Netaxept Request/Response' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Non-Persistent entities export DAT - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dat' -job_name 'Non-Persistent entities export' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - E-Invoice export DAT - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dat' -job_name 'E-Invoice export' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsACC Invoicing ATO - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'ato' -job_name 'NetsACC Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsACC Invoicing DSB - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dsb' -job_name 'NetsACC Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsACC Invoicing OSS - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'oss' -job_name 'NetsACC Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsACC Invoicing REJ - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rej' -job_name 'NetsACC Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsACC Invoicing TSJ - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsj' -job_name 'NetsACC Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsACC Invoicing TSM - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsm' -job_name 'NetsACC Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsACC Invoicing TSN - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsn' -job_name 'NetsACC Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsACC Invoicing TSY - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsy' -job_name 'NetsACC Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsACC Invoicing FYN - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'fyn' -job_name 'NetsACC Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsACC Invoicing RPTO - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rpto' -job_name 'NetsACC Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsACC Invoicing RK - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rk' -job_name 'NetsACC Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsINV Invoicing ATO - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'ato' -job_name 'NetsINV Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsINV Invoicing DSB - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dsb' -job_name 'NetsINV Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsINV Invoicing OSS - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'oss' -job_name 'NetsINV Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsINV Invoicing REJ - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rej' -job_name 'NetsINV Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsINV Invoicing TSJ - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsj' -job_name 'NetsINV Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsINV Invoicing TSM - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsm' -job_name 'NetsINV Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsINV Invoicing TSN - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsn' -job_name 'NetsINV Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsINV Invoicing TSY - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsy' -job_name 'NetsINV Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsINV Invoicing RPTO - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rpto' -job_name 'NetsINV Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsINV Invoicing FYN - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'fyn' -job_name 'NetsINV Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsINV Invoicing RK - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rk' -job_name 'NetsINV Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsINV E-Invoicing ATO - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'ato' -job_name 'NetsINV E-Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsINV E-Invoicing DSB - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dsb' -job_name 'NetsINV E-Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsINV E-Invoicing OSS - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'oss' -job_name 'NetsINV E-Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsINV E-Invoicing REJ - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rej' -job_name 'NetsINV E-Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsINV E-Invoicing TSJ - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsj' -job_name 'NetsINV E-Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsINV E-Invoicing TSM - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsm' -job_name 'NetsINV E-Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsINV E-Invoicing TSN - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsn' -job_name 'NetsINV E-Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsINV E-Invoicing TSY - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsy' -job_name 'NetsINV E-Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsINV E-Invoicing RPTO - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rpto' -job_name 'NetsINV E-Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsINV E-Invoicing FYN - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'fyn' -job_name 'NetsINV E-Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsINV E-Invoicing RK - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rk' -job_name 'NetsINV E-Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NoPA Invoicing ATO - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'ato' -job_name 'NoPA Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NoPA Invoicing DSB - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dsb' -job_name 'NoPA Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NoPA Invoicing OSS - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'oss' -job_name 'NoPA Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NoPA Invoicing REJ - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rej' -job_name 'NoPA Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NoPA Invoicing TSJ - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsj' -job_name 'NoPA Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NoPA Invoicing TSM - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsm' -job_name 'NoPA Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NoPA Invoicing TSN - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsn' -job_name 'NoPA Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NoPA Invoicing TSY - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsy' -job_name 'NoPA Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NoPA Invoicing RPTO - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rpto' -job_name 'NoPA Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NoPA Invoicing RK - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rk' -job_name 'NoPA Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NoPA Invoicing FYN - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'fyn' -job_name 'NoPA Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsOS Invoicing ATO - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'ato' -job_name 'NetsOS Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsOS Invoicing DSB - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dsb' -job_name 'NetsOS Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsOS Invoicing OSS - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'oss' -job_name 'NetsOS Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsOS Invoicing REJ - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rej' -job_name 'NetsOS Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsOS Invoicing TSJ - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsj' -job_name 'NetsOS Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsOS Invoicing TSM - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsm' -job_name 'NetsOS Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsOS Invoicing TSN - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsn' -job_name 'NetsOS Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsOS Invoicing TSY - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsy' -job_name 'NetsOS Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsOS Invoicing RPTO - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rpto' -job_name 'NetsOS Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsOS Invoicing FYN - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'fyn' -job_name 'NetsOS Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - NetsOS Invoicing RK - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rk' -job_name 'NetsOS Invoicing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Payment journal posting ATO - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'ato' -job_name 'Payment journal posting' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Payment journal posting DSB - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dsb' -job_name 'Payment journal posting' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Payment journal posting OSS - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'oss' -job_name 'Payment journal posting' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Payment journal posting REJ - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rej' -job_name 'Payment journal posting' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Payment journal posting TSJ - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsj' -job_name 'Payment journal posting' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Payment journal posting TSM - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsm' -job_name 'Payment journal posting' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Payment journal posting TSN - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsn' -job_name 'Payment journal posting' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Payment journal posting TSY - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsy' -job_name 'Payment journal posting' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Payment journal posting RPTO - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rpto' -job_name 'Payment journal posting' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Payment journal posting RK - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rk' -job_name 'Payment journal posting' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Payment journal posting FYN - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'fyn' -job_name 'Payment journal posting' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Creation of collection letter ATO - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'ato' -job_name 'Creation of collection letter' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Creation of collection letter DSB - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dsb' -job_name 'Creation of collection letter' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Creation of collection letter OSS - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'oss' -job_name 'Creation of collection letter' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Creation of collection letter REJ - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rej' -job_name 'Creation of collection letter' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Creation of collection letter TSJ - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsj' -job_name 'Creation of collection letter' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Creation of collection letter TSM - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsm' -job_name 'Creation of collection letter' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Creation of collection letter TSN - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsn' -job_name 'Creation of collection letter' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Creation of collection letter TSY - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsy' -job_name 'Creation of collection letter' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Creation of collection letter RK - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rk' -job_name 'Creation of collection letter' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Creation of collection letter FYN - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'fyn' -job_name 'Creation of collection letter' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Workflow message processing DAT - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dat' -job_name 'Workflow message processing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Workflow due date processing DAT - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dat' -job_name 'Workflow due date processing' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Workflow line-item notifications DAT - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dat' -job_name 'Workflow line-item notifications' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - CPR Customers Address Update - BO
+ use thales-service-60
+ servicegroups ax-jobs
+ check_period cpr_address_update
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dat' -job_name 'CPR Customers Address Update' -hours_last_execution 25
+ _SOP Database Issue - BackOffice
+}
+
+define service {
+ hostgroup_name SQL-AX
+ service_description SQL-AX - SQL - Job Execution - Accruals and Provisions Export DAT - BO
+ use thales-service-1440
+ servicegroups ax-jobs
+ check_command check_ax_job_accruals_execution
+ _SOP Database Issue - BackOffice
+}
+"@
+
+$oldStuff = @"
+define service {
+ hostgroup_name DAXJOBS
+ name cpr_zipcodes_streets_update_dat
+ service_description Job - CPR ZipCodes/Streets Update DAT - SI
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'CPR ZipCodes/Streets Update' -company 'dat'
+ _SOP Job - SI
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name unblock_blocked_cpr_dat
+ service_description Job - Unblock blocked CPR DAT - SI
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 15
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'Unblock blocked CPR' -company 'dat'
+ _SOP Job - SI
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name accruals_and_provisions_export_dat
+ service_description Job - Accruals and Provisions Export DAT - SI
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 1440
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Accruals and Provisions Export' -company 'dat'
+ _SOP Job - SI
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name aotexport_dsb
+ service_description Job - AOTExport for PerfMonitor DSB - TD
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 1440
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'AOTExport' -company 'dsb'
+ _SOP Job - SI
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name cancel_not_activated_payment_agreements_dat
+ service_description Job - Cancel not activated payment agreements DAT - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 360
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Cancel not activated payment agreements' -company 'dat'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name creation_of_collection_letter_tsy
+ service_description Job - Creation of collection letter TSY - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Creation of collection letter' -company 'tsy'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name creation_of_collection_letter_tsm
+ service_description Job - Creation of collection letter TSM - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 360
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Creation of collection letter' -company 'tsm'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name creation_of_collection_letter_tsn
+ service_description Job - Creation of collection letter TSN - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 360
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Creation of collection letter' -company 'tsn'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name creation_of_collection_letter_ato
+ service_description Job - Creation of collection letter ATO - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 360
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Creation of collection letter' -company 'ato'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name creation_of_collection_letter_dsb
+ service_description Job - Creation of collection letter DSB - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 360
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Creation of collection letter' -company 'dsb'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name creation_of_collection_letter_oss
+ service_description Job - Creation of collection letter OSS - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 360
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Creation of collection letter' -company 'oss'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name creation_of_collection_letter_rej
+ service_description Job - Creation of collection letter REJ - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 360
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Creation of collection letter' -company 'rej'
+ _SOP Job - BO
+}
+
+
+define service {
+ hostgroup_name DAXJOBS
+ name creation_of_collection_letter_tsj
+ service_description Job - Creation of collection letter TSJ - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 360
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Creation of collection letter' -company 'tsj'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name creation_of_collection_letter_fyn
+ service_description Job - Creation of collection letter FYN - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 360
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Creation of collection letter' -company 'fyn'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name creation_of_collection_letter_rk
+ service_description Job - Creation of collection letter RK - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 360
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Creation of collection letter' -company 'rk'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name e_invoice_export_dat
+ service_description Job - E-Invoice export DAT - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 360
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'E-Invoice export' -company 'dat'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name entity_log_export_no_aif_dsb
+ service_description Job - Entity log export NO AIF DSB - SI
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 5
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 2 -job_name 'Entity log export (no AIF)' -company 'dsb'
+ _SOP Job - SI
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name expired_payment_agreements_updates_dsb
+ service_description Job - Expired Payment Agreements Updates DSB - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Expired Payment Agreements Updates' -company 'dsb'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netaxept_request_response_dat
+ service_description Job - Netaxept Request/Response DAT - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 90
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'Netaxept Request/Response' -company 'dat'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name nets_bs_update_request_m605_dat
+ service_description Job - Nets BS Update Request M605 DAT - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Nets BS Update Request (M605)' -company 'dat'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name nets_bs_update_response_m603_dat
+ service_description Job - Nets BS Update Response M603 DAT - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Nets BS Update Response (M603)' -company 'dat'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name nets_invoice_reminder_request_m601_dat
+ service_description Job - Nets Invoice/Reminder Request M601 DAT - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Nets Invoice/Reminder Request (M601)' -company 'dat'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name nets_invoice_reminder_response_m602_dat
+ service_description Job - Nets Invoice/Reminder Response M602 DAT - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Nets Invoice/Reminder Response (M602)' -company 'dat'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsacc_invoicing_dsb
+ service_description Job - NetsACC Invoicing DSB - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 30
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsACC Invoicing' -company 'dsb'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsacc_invoicing_ato
+ service_description Job - NetsACC Invoicing ATO - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 30
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsACC Invoicing' -company 'ato'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsacc_invoicing_tsm
+ service_description Job - NetsACC Invoicing TSM - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 30
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsACC Invoicing' -company 'tsm'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsacc_invoicing_tsj
+ service_description Job - NetsACC Invoicing TSJ - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 30
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsACC Invoicing' -company 'tsj'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsacc_invoicing_rej
+ service_description Job - NetsACC Invoicing REJ - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 30
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsACC Invoicing' -company 'rej'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsacc_invoicing_oss
+ service_description Job - NetsACC Invoicing OSS - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 30
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsACC Invoicing' -company 'oss'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsacc_invoicing_tsy
+ service_description Job - NetsACC Invoicing TSY - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 30
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsACC Invoicing' -company 'tsy'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsacc_invoicing_tsn
+ service_description Job - NetsACC Invoicing TSN - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 30
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsACC Invoicing' -company 'tsn'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsacc_invoicing_fyn
+ service_description Job - NetsACC Invoicing FYN - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 30
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsACC Invoicing' -company 'fyn'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsacc_invoicing_rk
+ service_description Job - NetsACC Invoicing RK - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 30
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsACC Invoicing' -company 'rk'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsacc_invoicing_rpto
+ service_description Job - NetsACC Invoicing RPTO - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 30
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsACC Invoicing' -company 'rpto'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsbs_invoicing_tsn
+ service_description Job - NetsBS Invoicing TSN - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 1440
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsBS Invoicing' -company 'tsn'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsbs_invoicing_tsy
+ service_description Job - NetsBS Invoicing TSY - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 1440
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsBS Invoicing' -company 'tsy'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsbs_invoicing_oss
+ service_description Job - NetsBS Invoicing OSS - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 1440
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsBS Invoicing' -company 'oss'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsbs_invoicing_rej
+ service_description Job - NetsBS Invoicing REJ - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 1440
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsBS Invoicing' -company 'rej'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsbs_invoicing_tsj
+ service_description Job - NetsBS Invoicing TSJ - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 1440
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsBS Invoicing' -company 'tsj'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsbs_invoicing_tsm
+ service_description Job - NetsBS Invoicing TSM - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 1440
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsBS Invoicing' -company 'tsm'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsbs_invoicing_ato
+ service_description Job - NetsBS Invoicing ATO - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 1440
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsBS Invoicing' -company 'ato'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsbs_invoicing_dsb
+ service_description Job - NetsBS Invoicing DSB - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 1440
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsBS Invoicing' -company 'dsb'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsbs_invoicing_fyn
+ service_description Job - NetsBS Invoicing FYN - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 1440
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsBS Invoicing' -company 'fyn'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsbs_invoicing_rpto
+ service_description Job - NetsBS Invoicing RPTO - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 1440
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsBS Invoicing' -company 'rpto'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsbs_invoicing_rk
+ service_description Job - NetsBS Invoicing RK - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 1440
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsBS Invoicing' -company 'rk'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsinv_e_invoicing_dsb
+ service_description Job - NetsINV E-Invoicing DSB - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV E-Invoicing' -company 'dsb'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsinv_e_invoicing_ato
+ service_description Job - NetsINV E-Invoicing ATO - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV E-Invoicing' -company 'ato'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsinv_e_invoicing_tsm
+ service_description Job - NetsINV E-Invoicing TSM - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV E-Invoicing' -company 'tsm'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsinv_e_invoicing_tsj
+ service_description Job - NetsINV E-Invoicing TSJ - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV E-Invoicing' -company 'tsj'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsinv_e_invoicing_rej
+ service_description Job - NetsINV E-Invoicing REJ - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV E-Invoicing' -company 'rej'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsinv_e_invoicing_oss
+ service_description Job - NetsINV E-Invoicing OSS - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV E-Invoicing' -company 'oss'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsinv_e_invoicing_tsy
+ service_description Job - NetsINV E-Invoicing TSY - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV E-Invoicing' -company 'tsy'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsinv_e_invoicing_tsn
+ service_description Job - NetsINV E-Invoicing TSN - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV E-Invoicing' -company 'tsn'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsinv_e_invoicing_fyn
+ service_description Job - NetsINV E-Invoicing FYN - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV E-Invoicing' -company 'fyn'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsinv_e_invoicing_rpto
+ service_description Job - NetsINV E-Invoicing RPTO - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV E-Invoicing' -company 'rpto'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsinv_e_invoicing_rk
+ service_description Job - NetsINV E-Invoicing RK - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV E-Invoicing' -company 'rk'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsinv_invoicing_tsn
+ service_description Job - NetsINV Invoicing TSN - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV Invoicing' -company 'tsn'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsinv_invoicing_tsy
+ service_description Job - NetsINV Invoicing TSY - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV Invoicing' -company 'tsy'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsinv_invoicing_oss
+ service_description Job - NetsINV Invoicing OSS - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV Invoicing' -company 'oss'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsinv_invoicing_rej
+ service_description Job - NetsINV Invoicing REJ - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV Invoicing' -company 'rej'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsinv_invoicing_tsj
+ service_description Job - NetsINV Invoicing TSJ - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV Invoicing' -company 'tsj'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsinv_invoicing_tsm
+ service_description Job - NetsINV Invoicing TSM - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV Invoicing' -company 'tsm'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsinv_invoicing_ato
+ service_description Job - NetsINV Invoicing ATO - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV Invoicing' -company 'ato'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsinv_invoicing_dsb
+ service_description Job - NetsINV Invoicing DSB - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV Invoicing' -company 'dsb'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsinv_invoicing_rk
+ service_description Job - NetsINV Invoicing RK - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV Invoicing' -company 'rk'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsinv_invoicing_rpto
+ service_description Job - NetsINV Invoicing RPTO - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV Invoicing' -company 'rpto'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsinv_invoicing_fyn
+ service_description Job - NetsINV Invoicing FYN - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'NetsINV Invoicing' -company 'fyn'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsos_invoicing_dsb
+ service_description Job - NetsOS Invoicing DSB - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 90
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsOS Invoicing' -company 'dsb'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsos_invoicing_ato
+ service_description Job - NetsOS Invoicing ATO - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 90
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsOS Invoicing' -company 'ato'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsos_invoicing_tsm
+ service_description Job - NetsOS Invoicing TSM - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 90
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsOS Invoicing' -company 'tsm'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsos_invoicing_tsj
+ service_description Job - NetsOS Invoicing TSJ - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 90
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsOS Invoicing' -company 'tsj'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsos_invoicing_rej
+ service_description Job - NetsOS Invoicing REJ - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 90
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsOS Invoicing' -company 'rej'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsos_invoicing_oss
+ service_description Job - NetsOS Invoicing OSS - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 90
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsOS Invoicing' -company 'oss'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsos_invoicing_tsy
+ service_description Job - NetsOS Invoicing TSY - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 90
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsOS Invoicing' -company 'tsy'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsos_invoicing_tsn
+ service_description Job - NetsOS Invoicing TSN - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 90
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsOS Invoicing' -company 'tsn'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsos_invoicing_fyn
+ service_description Job - NetsOS Invoicing FYN - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 90
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsOS Invoicing' -company 'fyn'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsos_invoicing_rpto
+ service_description Job - NetsOS Invoicing RPTO - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 90
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsOS Invoicing' -company 'rpto'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netsos_invoicing_rk
+ service_description Job - NetsOS Invoicing RK - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 90
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'NetsOS Invoicing' -company 'rk'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name non-persistent_entities_export_dat
+ service_description Job - Non-Persistent entities export DAT - SI
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'Non-Persistent entities export' -company 'dat'
+ _SOP Job - SI
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name nopa_invoicing_ato
+ service_description Job - NoPA Invoicing ATO - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 5
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoPA Invoicing' -company 'ato'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name nopa_invoicing_dsb
+ service_description Job - NoPA Invoicing DSB - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 5
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoPA Invoicing' -company 'dsb'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name nopa_invoicing_oss
+ service_description Job - NoPA Invoicing OSS - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 5
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoPA Invoicing' -company 'oss'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name nopa_invoicing_rej
+ service_description Job - NoPA Invoicing REJ - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 5
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoPA Invoicing' -company 'rej'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name nopa_invoicing_tsj
+ service_description Job - NoPA Invoicing TSJ - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 5
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoPA Invoicing' -company 'tsj'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name nopa_invoicing_tsm
+ service_description Job - NoPA Invoicing TSM - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 5
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoPA Invoicing' -company 'tsm'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name nopa_invoicing_tsn
+ service_description Job - NoPA Invoicing TSN - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 5
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoPA Invoicing' -company 'tsn'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name nopa_invoicing_tsy
+ service_description Job - NoPA Invoicing TSY - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 5
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoPA Invoicing' -company 'tsy'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name nopa_invoicing_rpto
+ service_description Job - NoPA Invoicing RPTO - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 5
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoPA Invoicing' -company 'rpto'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name nopa_invoicing_rk
+ service_description Job - NoPA Invoicing RK - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 5
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoPA Invoicing' -company 'rk'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name nopa_invoicing_fyn
+ service_description Job - NoPA Invoicing FYN - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 5
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoPA Invoicing' -company 'fyn'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name notransfer_invoicing_tsy
+ service_description Job - NoTransfer Invoicing TSY - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 5
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoTransfer Invoicing' -company 'tsy'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name notransfer_invoicing_tsn
+ service_description Job - NoTransfer Invoicing TSN - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 5
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoTransfer Invoicing' -company 'tsn'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name notransfer_invoicing_tsm
+ service_description Job - NoTransfer Invoicing TSM - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 5
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoTransfer Invoicing' -company 'tsm'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name notransfer_invoicing_tsj
+ service_description Job - NoTransfer Invoicing TSJ - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 5
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoTransfer Invoicing' -company 'tsj'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name notransfer_invoicing_rej
+ service_description Job - NoTransfer Invoicing REJ - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 5
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoTransfer Invoicing' -company 'rej'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name notransfer_invoicing_oss
+ service_description Job - NoTransfer Invoicing OSS - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 5
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoTransfer Invoicing' -company 'oss'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name notransfer_invoicing_dsb
+ service_description Job - NoTransfer Invoicing DSB - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 5
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoTransfer Invoicing' -company 'dsb'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name notransfer_invoicing_ato
+ service_description Job - NoTransfer Invoicing ATO - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 5
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoTransfer Invoicing' -company 'ato'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name notransfer_invoicing_rpto
+ service_description Job - NoTransfer Invoicing RPTO - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 5
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoTransfer Invoicing' -company 'rpto'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name notransfer_invoicing_rk
+ service_description Job - NoTransfer Invoicing RK - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 5
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoTransfer Invoicing' -company 'rk'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name notransfer_invoicing_fyn
+ service_description Job - NoTransfer Invoicing FYN - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 5
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'NoTransfer Invoicing' -company 'fyn'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name open_payments_export_dat
+ service_description Job - Open Payments Export DAT - SI
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Open Payments Export' -company 'dat'
+ _SOP Job - SI
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name payment_journal_posting_ato
+ service_description Job - Payment journal posting ATO - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 90
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 2 -job_name 'Payment journal posting' -company 'ato'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name payment_journal_posting_dsb
+ service_description Job - Payment journal posting DSB - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 90
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 2 -job_name 'Payment journal posting' -company 'dsb'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name payment_journal_posting_oss
+ service_description Job - Payment journal posting OSS - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 90
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 2 -job_name 'Payment journal posting' -company 'oss'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name payment_journal_posting_rej
+ service_description Job - Payment journal posting REJ - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 90
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 2 -job_name 'Payment journal posting' -company 'rej'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name payment_journal_posting_tsj
+ service_description Job - Payment journal posting TSJ - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 90
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 2 -job_name 'Payment journal posting' -company 'tsj'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name payment_journal_posting_tsm
+ service_description Job - Payment journal posting TSM - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 90
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 2 -job_name 'Payment journal posting' -company 'tsm'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name payment_journal_posting_tsn
+ service_description Job - Payment journal posting TSN - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 90
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 2 -job_name 'Payment journal posting' -company 'tsn'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name payment_journal_posting_tsy
+ service_description Job - Payment journal posting TSY - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 90
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 2 -job_name 'Payment journal posting' -company 'tsy'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name payment_journal_posting_rk
+ service_description Job - Payment journal posting RK - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 90
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 2 -job_name 'Payment journal posting' -company 'rk'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name payment_journal_posting_rpto
+ service_description Job - Payment journal posting RPTO - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 90
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 2 -job_name 'Payment journal posting' -company 'rpto'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name payment_journal_posting_fyn
+ service_description Job - Payment journal posting FYN - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 90
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 2 -job_name 'Payment journal posting' -company 'fyn'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name persistent_entities_export_dat
+ service_description Job - Persistent entities export DAT - SI
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Persistent entities export' -company 'dat'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name pom_transactions_creation_dat
+ service_description Job - POM transactions creation DAT - SI and BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 10
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'POM transactions creation' -company 'dat'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name purge_batchhistory_parameters_field_rk
+ service_description Job - Purge batchHistory parameters field RK - SI
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 90
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'Purge batchHistory parameters field' -company 'rk'
+ _SOP Job - SI
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name purge_purge_batchHistory_records_rk
+ service_description Job - Purge batchHistory records RK - SI
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Purge batchHistory records' -company 'rk'
+ _SOP Job - SI
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name update_performance_counters_dat
+ service_description Job - Update performance counters DAT - SI
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 10
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 10 -job_name 'Update performance counters' -company 'dat'
+ _SOP Job - SI
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name workflow_due_date_processing_dat
+ service_description Job - Workflow due date processing DAT - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 1
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 3 -job_name 'Workflow due date processing' -company 'dat'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name workflow_line_item_notifications_dat
+ service_description Job - Workflow line-item notifications DAT - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 30
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'Workflow line-item notifications' -company 'dat'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name workflow_message_processing_dat
+ service_description Job - Workflow message processing DAT - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 5
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'Workflow message processing' -company 'dat'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name cpr_customers_address_update_dat
+ service_description Job - CPR Customers Address Update DAT - SI
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'CPR Customers Address Update' -company 'dat'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name netaxept_bank_card_verification_dat
+ service_description Job - Netaxept bank card verification DAT - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Netaxept bank card verification' -company 'dat'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name nets_bs_message_0686_dat
+ service_description Job - Nets BS message 0686 DAT - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Nets BS message 0686' -company 'dat'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name nets_refund_request_dat
+ service_description Job - Nets Refund Request DAT - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 720
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 1 -warn 1 -recent_exe_count 1 -job_name 'Nets Refund Request' -company 'dat'
+ _SOP Job - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name pom_orders_creation_synchronization_dat
+ service_description Job - POM orders creation and synchronization DAT - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 15
+ check_command check_ax_batches_and_jobs
+ _ARGS -crit 2 -warn 1 -recent_exe_count 5 -job_name 'POM orders creation/synchronization' -company 'dat'
+ _SOP Job - BO
+}
+
+
+# START - SECTION TO CHECK AX JOB'S EXECUTION INTERVALS
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_pom_orders_creation_synchronization_dat
+ service_description Job Execution - POM orders creation and synchronization DAT - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dat' -job_name 'POM orders creation/synchronization' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_nets_refund_request_dat
+ service_description Job Execution - Nets Refund Request DAT - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dat' -job_name 'Nets Refund Request' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_nets_bs_message_0686_dat
+ service_description Job Execution - Nets BS message 0686 DAT DAT - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dat' -job_name 'Nets BS message 0686' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netaxept_bank_card_verification_dat
+ service_description Job Execution - Netaxept bank card verification DAT - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dat' -job_name 'Netaxept bank card verification' -hours_last_execution 170
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_cancel_not_activated_payment_agreements_dat
+ service_description Job Execution - Cancel not activated payment agreements DAT - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dat' -job_name 'Cancel not activated payment agreements' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_nets_invoice_reminder_request_m601_dat
+ service_description Job Execution - Nets Invoice Reminder Request M601 DAT - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dat' -job_name 'Nets Invoice/Reminder Request (M601)' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_nets_invoice_reminder_response_m602_dat
+ service_description Job Execution - Nets Invoice Reminder Response M602 DAT - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dat' -job_name 'Nets Invoice/Reminder Response (M602)' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_nets_bs_update_response_m603_dat
+ service_description Job Execution - Nets BS Update Response M603 DAT - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dat' -job_name 'Nets BS Update Response (M603)' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_nets_bs_update_request_m605_dat
+ service_description Job Execution - Nets BS Update Request M605 DAT - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dat' -job_name 'Nets BS Update Request (M605)' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name
+
+ service_description Job Execution - Netaxept Request Response DAT - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dat' -job_name 'Netaxept Request/Response' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_non_persistent_entities_export_dat
+ service_description Job Execution - Non-Persistent entities export DAT - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dat' -job_name 'Non-Persistent entities export' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_e_invoice_export_dat
+ service_description Job Execution - E-Invoice export DAT - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dat' -job_name 'E-Invoice export' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsacc_invoicing_ato
+ service_description Job Execution - NetsACC Invoicing ATO - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'ato' -job_name 'NetsACC Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsacc_invoicing_dsb
+ service_description Job Execution - NetsACC Invoicing DSB - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dsb' -job_name 'NetsACC Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsacc_invoicing_oss
+ service_description Job Execution - NetsACC Invoicing OSS - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'oss' -job_name 'NetsACC Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsacc_invoicing_rej
+ service_description Job Execution - NetsACC Invoicing REJ - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rej' -job_name 'NetsACC Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsacc_invoicing_tsj
+ service_description Job Execution - NetsACC Invoicing TSJ - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsj' -job_name 'NetsACC Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsacc_invoicing_tsm
+ service_description Job Execution - NetsACC Invoicing TSM - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsm' -job_name 'NetsACC Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsacc_invoicing_tsn
+ service_description Job Execution - NetsACC Invoicing TSN - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsn' -job_name 'NetsACC Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsacc_invoicing_tsy
+ service_description Job Execution - NetsACC Invoicing TSY - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsy' -job_name 'NetsACC Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsacc_invoicing_fyn
+ service_description Job Execution - NetsACC Invoicing FYN - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'fyn' -job_name 'NetsACC Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsacc_invoicing_rpto
+ service_description Job Execution - NetsACC Invoicing RPTO - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rpto' -job_name 'NetsACC Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsacc_invoicing_rk
+ service_description Job Execution - NetsACC Invoicing RK - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rk' -job_name 'NetsACC Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsinv_invoicing_ato
+ service_description Job Execution - NetsINV Invoicing ATO - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'ato' -job_name 'NetsINV Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsinv_invoicing_dsb
+ service_description Job Execution - NetsINV Invoicing DSB - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dsb' -job_name 'NetsINV Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsinv_invoicing_oss
+ service_description Job Execution - NetsINV Invoicing OSS - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'oss' -job_name 'NetsINV Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsinv_invoicing_rej
+ service_description Job Execution - NetsINV Invoicing REJ - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rej' -job_name 'NetsINV Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsinv_invoicing_tsj
+ service_description Job Execution - NetsINV Invoicing TSJ - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsj' -job_name 'NetsINV Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsinv_invoicing_tsm
+ service_description Job Execution - NetsINV Invoicing TSM - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsm' -job_name 'NetsINV Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsinv_invoicing_tsn
+ service_description Job Execution - NetsINV Invoicing TSN - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsn' -job_name 'NetsINV Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsinv_invoicing_tsy
+ service_description Job Execution - NetsINV Invoicing TSY - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsy' -job_name 'NetsINV Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsinv_invoicing_rpto
+ service_description Job Execution - NetsINV Invoicing RPTO - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rpto' -job_name 'NetsINV Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsinv_invoicing_fyn
+ service_description Job Execution - NetsINV Invoicing FYN - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'fyn' -job_name 'NetsINV Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsinv_invoicing_rk
+ service_description Job Execution - NetsINV Invoicing RK - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rk' -job_name 'NetsINV Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsinv_e_invoicing_ato
+ service_description Job Execution - NetsINV E-Invoicing ATO - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'ato' -job_name 'NetsINV E-Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsinv_e_invoicing_dsb
+ service_description Job Execution - NetsINV E-Invoicing DSB - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dsb' -job_name 'NetsINV E-Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsinv_e_invoicing_oss
+ service_description Job Execution - NetsINV E-Invoicing OSS - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'oss' -job_name 'NetsINV E-Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsinv_e_invoicing_rej
+ service_description Job Execution - NetsINV E-Invoicing REJ - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rej' -job_name 'NetsINV E-Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsinv_e_invoicing_tsj
+ service_description Job Execution - NetsINV E-Invoicing TSJ - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsj' -job_name 'NetsINV E-Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsinv_e_invoicing_tsm
+ service_description Job Execution - NetsINV E-Invoicing TSM - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsm' -job_name 'NetsINV E-Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsinv_e_invoicing_tsn
+ service_description Job Execution - NetsINV E-Invoicing TSN - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsn' -job_name 'NetsINV E-Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsinv_e_invoicing_tsy
+ service_description Job Execution - NetsINV E-Invoicing TSY - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsy' -job_name 'NetsINV E-Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsinv_e_invoicing_rpto
+ service_description Job Execution - NetsINV E-Invoicing RPTO - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rpto' -job_name 'NetsINV E-Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsinv_e_invoicing_fyn
+ service_description Job Execution - NetsINV E-Invoicing FYN - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'fyn' -job_name 'NetsINV E-Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsinv_e_invoicing_rk
+ service_description Job Execution - NetsINV E-Invoicing RK - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rk' -job_name 'NetsINV E-Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_nopa_invoicing_ato
+ service_description Job Execution - NoPA Invoicing ATO - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'ato' -job_name 'NoPA Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_nopa_invoicing_dsb
+ service_description Job Execution - NoPA Invoicing DSB - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dsb' -job_name 'NoPA Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_nopa_invoicing_oss
+ service_description Job Execution - NoPA Invoicing OSS - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'oss' -job_name 'NoPA Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_nopa_invoicing_rej
+ service_description Job Execution - NoPA Invoicing REJ - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rej' -job_name 'NoPA Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_nopa_invoicing_tsj
+ service_description Job Execution - NoPA Invoicing TSJ - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsj' -job_name 'NoPA Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_nopa_invoicing_tsm
+ service_description Job Execution - NoPA Invoicing TSM - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsm' -job_name 'NoPA Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_nopa_invoicing_tsn
+ service_description Job Execution - NoPA Invoicing TSN - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsn' -job_name 'NoPA Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_nopa_invoicing_tsy
+ service_description Job Execution - NoPA Invoicing TSY - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsy' -job_name 'NoPA Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_nopa_invoicing_rpto
+ service_description Job Execution - NoPA Invoicing RPTO - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rpto' -job_name 'NoPA Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_nopa_invoicing_rk
+ service_description Job Execution - NoPA Invoicing RK - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rk' -job_name 'NoPA Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_nopa_invoicing_fyn
+ service_description Job Execution - NoPA Invoicing FYN - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'fyn' -job_name 'NoPA Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsos_invoicing_ato
+ service_description Job Execution - NetsOS Invoicing ATO - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'ato' -job_name 'NetsOS Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsos_invoicing_dsb
+ service_description Job Execution - NetsOS Invoicing DSB - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dsb' -job_name 'NetsOS Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsos_invoicing_oss
+ service_description Job Execution - NetsOS Invoicing OSS - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'oss' -job_name 'NetsOS Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsos_invoicing_rej
+ service_description Job Execution - NetsOS Invoicing REJ - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rej' -job_name 'NetsOS Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsos_invoicing_tsj
+ service_description Job Execution - NetsOS Invoicing TSJ - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsj' -job_name 'NetsOS Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsos_invoicing_tsm
+ service_description Job Execution - NetsOS Invoicing TSM - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsm' -job_name 'NetsOS Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsos_invoicing_tsn
+ service_description Job Execution - NetsOS Invoicing TSN - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsn' -job_name 'NetsOS Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsos_invoicing_tsy
+ service_description Job Execution - NetsOS Invoicing TSY - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsy' -job_name 'NetsOS Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsos_invoicing_rpto
+ service_description Job Execution - NetsOS Invoicing RPTO - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rpto' -job_name 'NetsOS Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsos_invoicing_fyn
+ service_description Job Execution - NetsOS Invoicing FYN - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'fyn' -job_name 'NetsOS Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_netsos_invoicing_rk
+ service_description Job Execution - NetsOS Invoicing RK - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rk' -job_name 'NetsOS Invoicing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_payment_journal_posting_ato
+ service_description Job Execution - Payment journal posting ATO - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'ato' -job_name 'Payment journal posting' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_payment_journal_posting_dsb
+ service_description Job Execution - Payment journal posting DSB - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dsb' -job_name 'Payment journal posting' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_payment_journal_posting_oss
+ service_description Job Execution - Payment journal posting OSS - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'oss' -job_name 'Payment journal posting' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_payment_journal_posting_rej
+ service_description Job Execution - Payment journal posting REJ - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rej' -job_name 'Payment journal posting' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_payment_journal_posting_tsj
+ service_description Job Execution - Payment journal posting TSJ - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsj' -job_name 'Payment journal posting' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_payment_journal_posting_tsm
+ service_description Job Execution - Payment journal posting TSM - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsm' -job_name 'Payment journal posting' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_payment_journal_posting_tsn
+ service_description Job Execution - Payment journal posting TSN - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsn' -job_name 'Payment journal posting' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_payment_journal_posting_tsy
+ service_description Job Execution - Payment journal posting TSY - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsy' -job_name 'Payment journal posting' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_payment_journal_posting_rpto
+ service_description Job Execution - Payment journal posting RPTO - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rpto' -job_name 'Payment journal posting' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_payment_journal_posting_rk
+ service_description Job Execution - Payment journal posting RK - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rk' -job_name 'Payment journal posting' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_payment_journal_posting_fyn
+ service_description Job Execution - Payment journal posting FYN - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'fyn' -job_name 'Payment journal posting' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_creation_of_collection_letter_ato
+ service_description Job Execution - Creation of collection letter ATO - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'ato' -job_name 'Creation of collection letter' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_creation_of_collection_letter_dsb
+ service_description Job Execution - Creation of collection letter DSB - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dsb' -job_name 'Creation of collection letter' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_creation_of_collection_letter_oss
+ service_description Job Execution - Creation of collection letter OSS - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'oss' -job_name 'Creation of collection letter' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_creation_of_collection_letter_rej
+ service_description Job Execution - Creation of collection letter REJ - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rej' -job_name 'Creation of collection letter' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_creation_of_collection_letter_tsj
+ service_description Job Execution - Creation of collection letter TSJ - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsj' -job_name 'Creation of collection letter' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_creation_of_collection_letter_tsm
+ service_description Job Execution - Creation of collection letter TSM - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsm' -job_name 'Creation of collection letter' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_creation_of_collection_letter_tsn
+ service_description Job Execution - Creation of collection letter TSN - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsn' -job_name 'Creation of collection letter' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_creation_of_collection_letter_tsy
+ service_description Job Execution - Creation of collection letter TSY - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'tsy' -job_name 'Creation of collection letter' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+# Commented out by EW-777
+#define service {
+# hostgroup_name DAXJOBS
+# name execution_check_creation_of_collection_letter_rpto
+# service_description Job Execution - Creation of collection letter RPTO - BO
+# use thales-service
+# servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+# check_interval 60
+# check_command check_ax_jobs_execution_intervals
+# _ARGS -crit 1 -warn 0 -company 'rpto' -job_name 'Creation of collection letter' -hours_last_execution 25
+# _SOP Job Execution - BO
+#}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_creation_of_collection_letter_rk
+ service_description Job Execution - Creation of collection letter RK - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'rk' -job_name 'Creation of collection letter' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_creation_of_collection_letter_fyn
+ service_description Job Execution - Creation of collection letter FYN - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'fyn' -job_name 'Creation of collection letter' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_workflow_message_processing_dat
+ service_description Job Execution - Workflow message processing DAT - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dat' -job_name 'Workflow message processing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_workflow_due_date_processing_dat
+ service_description Job Execution - Workflow due date processing DAT - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dat' -job_name 'Workflow due date processing' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_workflow_line_item_notifications_dat
+ service_description Job Execution - Workflow line-item notifications DAT - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dat' -job_name 'Workflow line-item notifications' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_cpr_customers_address_update_dat
+ service_description Job Execution - CPR Customers Address Update - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 60
+ check_period cpr_address_update
+ check_command check_ax_jobs_execution_intervals
+ _ARGS -crit 1 -warn 0 -company 'dat' -job_name 'CPR Customers Address Update' -hours_last_execution 25
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name execution_check_ax_job_accruals_execution
+ service_description Job Execution - Accruals and Provisions Export DAT - BO
+ use thales-service
+ servicegroups ax_jobs_and_batches,servicegroup_boaxmon
+ check_interval 1440
+ check_command check_ax_job_accruals_execution
+ _SOP Job Execution - BO
+}
+
+define service {
+ hostgroup_name DAXJOBS
+ name check_ax_einvoice_received
+ service_description e-Invoice Received
+ use thales-service
+ check_interval 60
+ check_command check_ax_einvoice_received
+ _CHECKTYPE Day
+ _SOP e-Invoice Received
+}
+"@
+
+function Do-Stuff {
+ param($data)
+
+ $pattern = '^define (.*?) \{(.*?)\}$'
+
+ $options = [System.Text.RegularExpressions.RegexOptions]::Multiline -bor [System.Text.RegularExpressions.RegexOptions]::Singleline
+
+ $matches = [regex]::Matches($data, $pattern, $options)
+
+
+ foreach($entry in $matches) {
+
+ $type = $entry.Groups[1].Value
+ $content = $entry.Groups[2].Value.Split("`n")
+
+ $properties = foreach($l in $content) {
+ $line = $l.Trim()
+
+ if($line -eq '') { continue }
+
+ $lineSplit = $line.Split(' ', 2, [System.StringSplitOptions]::RemoveEmptyEntries)
+
+ @{ $lineSplit[0] = $lineSplit[1] }
+ }
+
+ [pscustomobject]@{
+ Type = $type
+ Properties = $properties
+ }
+ }
+}
+
+$resultOld = Do-Stuff -data $oldStuff | where type -eq 'service'
+$resultNew = Do-Stuff -data $newStuff | where type -eq 'service'
+
+$oldDesc = $resultOld | % { $_.properties.service_description }
+$newDesc = $resultNew | % { $_.properties.service_description }
+
+
+$result = foreach($line in $newDesc) {
+ $missing = $true
+
+ foreach($item in $oldDesc) {
+ if($line -match $item) {
+ Write-Host ("{0,-100} -match $item" -f $line)
+ $missing = $false
+ break
+ }
+
+ }
+
+ if($missing) {
+ $line
+ }
+}
+
+'SQL-AX - SQL - Job Execution - Creation of collection letter TSM - BO' -match 'Job Execution - Creation of collection letter TSM - BO'
\ No newline at end of file
diff --git a/Dennis_Scripts/RK/AnalyzeApiAppLogPerformance.ps1 b/Dennis_Scripts/RK/AnalyzeApiAppLogPerformance.ps1
new file mode 100644
index 0000000..f083418
--- /dev/null
+++ b/Dennis_Scripts/RK/AnalyzeApiAppLogPerformance.ps1
@@ -0,0 +1,49 @@
+$servers = 'REJK-P-API001','REJK-P-API002','REJK-P-APP001','REJK-P-APP002','REJK-P-APP003','REJK-P-APP004'
+$header = 'date time s-sitename s-computername s-ip cs-method cs-uri-stem cs-uri-query s-port cs-username c-ip cs-version cs(User-Agent) cs(Cookie) cs(Referer) cs-host sc-status sc-substatus sc-win32-status sc-bytes cs-bytes time-taken' -split ' '
+
+
+#$stats = @{}
+
+foreach($server in $servers) {
+
+ Write-Verbose -Verbose "Server: $server"
+
+ #$stats[$server] = @{}
+
+ foreach($item in (Get-Item "\\$server\d-drive\logfiles\w3svc*\u_ex*.log")) {
+
+ Write-Verbose -Verbose ". FileName: $($item.Name)"
+
+ #$stats[$server][$item.Name] = New-Object 'System.Collections.Generic.List[object]'
+
+ $fs = [System.IO.File]::OpenRead($item.FullName)
+ $sr = New-Object System.IO.StreamReader $fs
+
+ $csv = while(-not $sr.EndOfStream) {
+ $line = $sr.ReadLine()
+
+ if($line.StartsWith('#')) { continue }
+
+ $csv = $line | ConvertFrom-Csv -Delimiter " " -Header $header
+
+ $output = [pscustomobject]@{
+ DateTime = "{0} {1}" -f $csv.date, $csv.time
+ TimeTaken = $csv.'time-taken'
+ Service = $csv.'cs-uri-stem'
+ Method = $csv.'cs-method'
+ Status = $csv.'sc-status'
+ }
+
+ #$stats[$server][$item.Name].Add($output) | Out-Null
+
+ Write-Output $output
+ }
+
+ $csv | ConvertTo-Csv -Delimiter ';' -NoTypeInformation | Add-Content -Path $env:temp\csv.csv
+
+ #Write-Verbose -Verbose ".. Found $($stats[$server][$item.Name].Count) lines"
+
+ $sr.Close()
+ $fs.Close()
+ }
+}
\ No newline at end of file
diff --git a/Dennis_Scripts/RK/RKModule/RKModule.psm1 b/Dennis_Scripts/RK/RKModule/RKModule.psm1
new file mode 100644
index 0000000..3744828
--- /dev/null
+++ b/Dennis_Scripts/RK/RKModule/RKModule.psm1
@@ -0,0 +1,149 @@
+function New-RKSimpleQuery {
+ param( [string]$Key, [string]$Value )
+
+ $sql = . T:\m.nielsen\Scripts\RK\queries.ps1
+
+ $con = New-Object System.Data.SqlClient.SqlConnection
+ $con.ConnectionString = 'Server=REJK-P-SQL003\SQL01;Database=AfcCookedIFSv2;Trusted_Connection=True;'
+ $con.Open()
+}
+
+
+
+
+
+function Get-RKObjOrder {
+ param( [string]$OrderID )
+
+ Write-Verbose -Verbose -Message "Attempting Get-RKObjOrder on OrderID $OrderID"
+
+ Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope Process
+ $sql = . T:\m.nielsen\Scripts\RK\queries.ps1
+
+ $con = New-Object System.Data.SqlClient.SqlConnection
+ $con.ConnectionString = 'Server=REJK-P-SQL003\SQL01;Database=AfcCookedIFSv2;Trusted_Connection=True;'
+ $con.Open()
+
+ try {
+ $cmd = $con.CreateCommand()
+
+ $cmd.CommandText = $sql['RKObjOrder'].Query
+ $null = $cmd.Parameters.Add('@OrderID', $orderid)
+
+ $reader = $cmd.ExecuteReader()
+
+ while($reader.Read()) {
+
+ $obj = [pscustomobject]@{ }
+
+ $columns = $sql['RKObjOrder'].Columns
+
+ foreach($column in $columns) {
+ $obj = $obj | Add-Member -MemberType NoteProperty -Name $column -Value $reader[$column] -PassThru
+ }
+
+ Write-Output $obj
+ }
+ }
+ catch {
+ Write-Warning $_
+ }
+ finally {
+ $reader.Close()
+ $cmd.Dispose()
+ $con.Close()
+ }
+}
+
+
+
+function Get-RKObjOrderItem {
+ param( [string]$OrderID )
+
+ Write-Verbose -Verbose -Message "Attempting Get-RKObjOrderItem on OrderID $OrderID"
+
+ Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope Process
+ $sql = . T:\m.nielsen\Scripts\RK\queries.ps1
+
+ $con = New-Object System.Data.SqlClient.SqlConnection
+ $con.ConnectionString = 'Server=REJK-P-SQL003\SQL01;Database=AfcCookedIFSv2;Trusted_Connection=True;'
+ $con.Open()
+
+ try {
+ $cmd = $con.CreateCommand()
+
+ $cmd.CommandText = $sql['RKObjOrderItem'].Query
+ $null = $cmd.Parameters.Add('@OrderID', $orderid)
+
+ $reader = $cmd.ExecuteReader()
+
+ while($reader.Read()) {
+
+ $obj = [pscustomobject]@{ }
+
+ $columns = $sql['RKObjOrderItem'].Columns
+
+ foreach($column in $columns) {
+ $obj = $obj | Add-Member -MemberType NoteProperty -Name $column -Value $reader[$column] -PassThru
+ }
+
+ Write-Output $obj
+ }
+ }
+ catch {
+ Write-Warning $_
+ }
+ finally {
+ $reader.Close()
+ $cmd.Dispose()
+ $con.Close()
+ }
+}
+
+
+
+
+function Get-RKCustomerOrders {
+ param( [string]$CustomerRefNumber )
+
+ Write-Verbose -Verbose -Message "Attempting Get-RKCustomerOrders on RefNumber $CustomerRefNumber"
+
+ Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope Process
+ $sql = . T:\m.nielsen\Scripts\RK\queries.ps1
+
+ $con = New-Object System.Data.SqlClient.SqlConnection
+ $con.ConnectionString = 'Server=REJK-P-SQL003\SQL01;Database=AfcCookedIFSv2;Trusted_Connection=True;'
+ $con.Open()
+
+ try {
+ $cmd = $con.CreateCommand()
+
+ $cmd.CommandText = $sql['RKCustomerOrders'].Query
+ $null = $cmd.Parameters.Add('@RefNumber', $CustomerRefNumber)
+
+ $reader = $cmd.ExecuteReader()
+
+ while($reader.Read()) {
+
+ $obj = [pscustomobject]@{ }
+
+ $columns = $sql['RKCustomerOrders'].Columns
+
+ foreach($column in $columns) {
+ $obj = $obj | Add-Member -MemberType NoteProperty -Name $column -Value $reader[$column] -PassThru
+ }
+
+ Write-Output $obj
+ }
+ }
+ catch {
+ Write-Warning $_
+ }
+ finally {
+ $reader.Close()
+ $cmd.Dispose()
+ $con.Close()
+ }
+}
+
+Export-ModuleMember -Function *
\ No newline at end of file
diff --git a/Dennis_Scripts/RK/SearchTxFiles.ps1 b/Dennis_Scripts/RK/SearchTxFiles.ps1
new file mode 100644
index 0000000..5cd7d3c
--- /dev/null
+++ b/Dennis_Scripts/RK/SearchTxFiles.ps1
@@ -0,0 +1,29 @@
+$txFiles = @"
+1A60061N.066
+1A60161N.8F1
+1A60231N.0A1
+1A60061N.085
+1A60181N.94B
+1A60111N.065
+1A60141N.94A
+13F78F1N.6FF
+1A60071N.949
+1A60181N.0A2
+13CBDE1N.71C
+1A60211N.0A0
+13CBDE1N.6CB
+"@.Replace("`r","").Split("`n")
+
+$files = 1..2 | % { Get-Item "\\rejk-p-mdl00$_\d-drive\ifsbodata\FSV\Incoming_archi\DCP_ud\2019\03\*" } | Get-ChildItem -Recurse -File -Filter ($txFiles) | Where { $_.Name -in $txFiles }
+$files | Copy-Item -Destination "C:\users\ewpmni\desktop\Drop"
+
+Set-Location "C:\users\ewpmni\desktop\Drop"
+
+$items = Get-Item *
+
+foreach($item in $items) {
+ #$item.FullName
+ $newname = $item.Name.Replace('N.','M.')
+ Write-Verbose -Verbose "Renaming $($item.Name) to $newname"
+ Move-Item $item.FullName -Destination $newname
+}
\ No newline at end of file
diff --git a/Dennis_Scripts/RK/Untitled4.ps1 b/Dennis_Scripts/RK/Untitled4.ps1
new file mode 100644
index 0000000..b0fb009
--- /dev/null
+++ b/Dennis_Scripts/RK/Untitled4.ps1
@@ -0,0 +1,885 @@
+$ids = @"
+204293023
+204293020
+204293002
+204292945
+204293310
+204292937
+204293300
+204293301
+204292931
+204293043
+204293047
+204292927
+204292929
+204293056
+204291686
+204292977
+204292947
+204292950
+204290998
+204290754
+204290762
+204290771
+204290780
+204290797
+204290781
+204290995
+204290772
+204290760
+204290808
+204290811
+204290761
+204290765
+204290989
+204290991
+204290783
+204290794
+204290789
+204290994
+204290799
+204290805
+204290828
+204290996
+204290821
+204290806
+204291500
+204291610
+204291620
+204291680
+204291716
+204292987
+204292903
+204292894
+204292880
+204292973
+204291628
+204292998
+204291629
+204292975
+204292921
+204292901
+204291647
+204291575
+204292981
+204291540
+204292991
+204291590
+204291518
+204291630
+204291519
+204291530
+204291619
+204290823
+204291576
+204292922
+204291577
+204291583
+204291531
+204291532
+204291668
+204290812
+204292864
+204291548
+204291584
+204291621
+204291425
+204290782
+204291426
+204291427
+204291522
+204291631
+204291428
+204292982
+204291648
+204291649
+204290829
+204291507
+204291601
+204292778
+204292985
+204291586
+204291640
+204291430
+204291458
+204291524
+204291572
+204291665
+204291626
+204291573
+204292865
+204292765
+204291657
+204292824
+204291439
+204291453
+204292835
+204291436
+204291454
+204291455
+204291502
+204291265
+204292776
+204291399
+204291447
+204291504
+204292779
+204292902
+204291383
+204291367
+204291456
+204292812
+204291362
+204292839
+204292789
+204292784
+204291613
+204292816
+204291355
+204292794
+204291607
+204292832
+204291400
+204291473
+204292823
+204291563
+204291474
+204292836
+204291398
+204291448
+204291463
+204291302
+204291345
+204291364
+204670695
+204670757
+204670596
+204292826
+204291177
+204291331
+204291252
+204291229
+204291387
+204291238
+204291176
+204292851
+204291254
+204291332
+204292717
+204291293
+204291323
+204292677
+204291173
+204291178
+204291333
+204291308
+204292855
+204292712
+204291255
+204291080
+204291262
+204291081
+204292689
+204291201
+204291092
+204291337
+204291202
+204291343
+204292669
+204291270
+204292690
+204292670
+204291203
+204291338
+204292701
+204291185
+204670868
+204291190
+204670594
+204291219
+204291187
+204292696
+204292859
+204291290
+204670501
+204291220
+204291315
+204291090
+204670883
+204670609
+204292853
+204292858
+204292706
+204292854
+204291277
+204291324
+204292768
+204291304
+204292792
+204292673
+204291300
+204291327
+204291224
+204291282
+204292742
+204291193
+204291499
+204291117
+204291095
+204291105
+204291110
+204291111
+204291235
+204290752
+204290748
+204290721
+204290511
+204290516
+204290673
+204290686
+204290704
+204290512
+204670629
+204670633
+204290736
+204290505
+204670618
+204290514
+204290518
+204290722
+204670911
+204290520
+204670750
+204290519
+204290522
+204670634
+204670619
+204290696
+204670593
+204290523
+204670630
+204670907
+204290744
+204290524
+204670631
+204670885
+204670637
+204670617
+204670624
+204290515
+204290526
+204290708
+204290734
+204290674
+204670620
+204290527
+204290712
+204290525
+204290517
+204290703
+204670912
+204670645
+204291161
+204292760
+204291133
+204290521
+204290749
+204292713
+204292748
+204292749
+204292594
+204292590
+204292600
+204292601
+204291245
+204292969
+204290537
+204670621
+204291013
+204291002
+204670639
+204291271
+204291030
+204292598
+204291155
+204291031
+204291157
+204292595
+204670511
+204670640
+204291162
+204291014
+204291032
+204670632
+204670646
+204670622
+204291000
+204292596
+204292761
+204291033
+204292606
+204291001
+204670636
+204291018
+204291148
+204670653
+204291042
+204291149
+204291139
+204670654
+204670635
+204292588
+204292591
+204291056
+204291123
+204291167
+204291008
+204670647
+204290544
+204291131
+204292602
+204291044
+204291045
+204291040
+204292585
+204290509
+204290528
+204290546
+204670697
+204290532
+204670641
+204290556
+204670655
+204291124
+204292758
+204670648
+204291175
+204291063
+204291064
+204292618
+204291065
+204670649
+204292621
+204292626
+204670616
+204670658
+204670642
+204670656
+204670664
+204670657
+204670643
+204670659
+204670644
+204670665
+204670914
+204290552
+204670913
+204290580
+204290574
+204290581
+204290548
+204290575
+204290576
+204290550
+204290586
+204290587
+204670915
+204290577
+204290549
+204290582
+204290536
+204290568
+204670667
+204290583
+204290584
+204290585
+204290589
+204290561
+204670916
+204670650
+204290938
+204670917
+204290915
+204292660
+204290988
+204290984
+204290897
+204670668
+204670662
+204670651
+204670666
+204670663
+204292637
+204291028
+204670638
+204291307
+204670660
+204670652
+204670661
+204290401
+204670778
+204292223
+204290612
+204670945
+204292076
+204290390
+204292224
+204670967
+204292534
+204290403
+204290391
+204292208
+204292182
+204292178
+204290389
+204292226
+204290377
+204292187
+204292352
+204290613
+204292559
+204670976
+204292256
+204670923
+204670947
+204292345
+204292257
+204670957
+204292339
+204292557
+204670952
+204670953
+204670998
+204670919
+204670977
+204670948
+204670999
+204670951
+204670769
+204670968
+204670961
+204670991
+204670993
+204670768
+204670958
+204670970
+204670924
+204670944
+204290413
+204290415
+204670779
+204670785
+204670965
+204670928
+204670925
+204290428
+204670780
+204670975
+204292447
+204670926
+204290421
+204292449
+204290608
+204670966
+204292148
+204292459
+204290430
+204290426
+204292134
+204292144
+204292452
+204292451
+204292456
+204292353
+204670927
+204670971
+204292091
+204292129
+204292155
+204292152
+204670763
+204292149
+204670773
+204292141
+204292453
+204292244
+204292458
+204290431
+204670943
+204292157
+204292153
+204292553
+204290433
+204292462
+204290440
+204670781
+204670774
+204292004
+204670775
+204670782
+204670789
+204670783
+204670929
+204670973
+204292443
+204292249
+204292099
+204292092
+204292239
+204292470
+204670776
+204292158
+204292161
+204292110
+204670974
+204670770
+204670777
+204670921
+204290455
+204292130
+204292473
+204292484
+204292471
+204290442
+204670792
+204670959
+204670784
+204670978
+204670932
+204670931
+204670790
+204670922
+204670979
+204670796
+204670791
+204670793
+204291967
+204292038
+204292387
+204292363
+204291937
+204670797
+204670794
+204292468
+204292499
+204292391
+204292044
+204292378
+204291981
+204291955
+204292073
+204292382
+204670786
+204292385
+204292392
+204291984
+204292492
+204292395
+204291950
+204292065
+204292160
+204292070
+204292380
+204292388
+204291991
+204292400
+204670980
+204291940
+204670933
+204291992
+204291985
+204291994
+204292248
+204291995
+204292361
+204291996
+204292046
+204292407
+204670787
+204670799
+204670804
+204670795
+204670788
+204670802
+204670811
+204670918
+204291873
+204292267
+204292031
+204292479
+204292497
+204291868
+204292474
+204292404
+204291956
+204291999
+204292016
+204291855
+204670812
+204291989
+204670803
+204291939
+204292056
+204291979
+204670764
+204670800
+204670798
+204670801
+204291885
+204292273
+204292416
+204291862
+204292425
+204291908
+204292120
+204291878
+204291879
+204291909
+204291880
+204292274
+204291933
+204292420
+204291894
+204291902
+204292377
+204670818
+204291982
+204292430
+204292489
+204291748
+204291886
+204291887
+204291895
+204291912
+204670939
+204291911
+204291881
+204291884
+204670806
+204292434
+204292399
+204292272
+204291947
+204292276
+204292375
+204291972
+204670805
+204291751
+204292386
+204670938
+204291853
+204291752
+204291865
+204291866
+204292055
+204291890
+204292072
+204291900
+204670937
+204291896
+204291867
+204291921
+204291755
+204292424
+204291756
+204292059
+204291916
+204291917
+204291914
+204291897
+204292269
+204292060
+204291753
+204292368
+204291869
+204670981
+204291922
+204291765
+204291931
+204292283
+204291977
+204291964
+204670982
+204292433
+204670813
+204291766
+204292270
+204292408
+204291905
+204291932
+204292421
+204291928
+204292428
+204291930
+204292278
+204292286
+204291870
+204291767
+204670983
+204291948
+204291949
+204291757
+204292281
+204291768
+204291761
+204291872
+204292359
+204291903
+204291871
+204292296
+204291891
+204292271
+204292287
+204291924
+204291791
+204291762
+204291929
+204670821
+204291892
+204292376
+204670822
+204292293
+204291962
+204670825
+204291963
+204670814
+204292417
+204292280
+204291915
+204291975
+204291773
+204670819
+204291787
+204291792
+204670820
+204292282
+204292419
+204291920
+204292288
+204670936
+204291793
+204670815
+204291784
+204291763
+204291987
+204670984
+204291925
+204291926
+204291974
+204670828
+204292299
+204291893
+204292394
+204291764
+204292279
+204292422
+204291769
+204291798
+204670833
+204292284
+204291778
+204291799
+204292300
+204670985
+204291776
+204290321
+204290338
+204670986
+204291777
+204290332
+204291918
+204292162
+204291772
+204290250
+204670835
+204670823
+204290245
+204290348
+204290485
+204290488
+204290349
+204670808
+204670817
+204292384
+204291910
+204670816
+204292305
+204292423
+204292294
+204291802
+204291788
+204290360
+204290340
+204670826
+204292310
+204291804
+204291861
+204291759
+204290263
+204290342
+204290357
+204290361
+204290351
+204290352
+204290362
+204670832
+204291774
+204291808
+204290244
+204292308
+204290353
+204670827
+204670838
+204290265
+204670940
+204290333
+204290363
+204670807
+204670842
+204670934
+204670920
+204670930
+204670834
+204290599
+204670969
+204670824
+204290337
+204670809
+204290369
+204670839
+204670840
+204670810
+204290370
+204670771
+204290273
+204670841
+204670837
+204670941
+204670942
+204670836
+204290367
+204290325
+204290368
+204670772
+204290375
+204290354
+204290374
+204290381
+204670956
+204290609
+204290384
+204670765
+204670950
+204670994
+204290385
+204670990
+204670995
+204292341
+204292514
+204292516
+204292177
+204292351
+204282875
+"@.replace("`r","").split("`n")
+
+
diff --git a/Dennis_Scripts/RK/Untitled5.ps1 b/Dennis_Scripts/RK/Untitled5.ps1
new file mode 100644
index 0000000..55e4bd3
--- /dev/null
+++ b/Dennis_Scripts/RK/Untitled5.ps1
@@ -0,0 +1,133 @@
+$csv = @"
+TransmissionFileName TransmissionDate
+1A60071O.CC1 2019-08-13 18:11:18.877
+1A60161O.CE5 2019-08-13 18:14:07.467
+1A60141O.C67 2019-08-13 18:05:06.860
+1A60141O.C29 2019-08-13 18:01:06.810
+1A60091O.C7C 2019-08-13 18:06:14.697
+1A60141O.CE6 2019-08-13 18:14:06.970
+1A60081O.C83 2019-08-13 18:07:05.877
+1A60141O.CD6 2019-08-13 18:13:06.973
+1A60301O.C59 2019-08-13 18:04:10.113
+1A60231O.C3A 2019-08-13 18:02:08.957
+1A60061O.CDE 2019-08-13 18:13:16.427
+1A60071O.C51 2019-08-13 18:03:18.770
+1A60131O.CB7 2019-08-13 18:11:02.280
+1A60091O.CB2 2019-08-13 18:10:14.750
+1A60231O.C49 2019-08-13 18:03:09.000
+1A60151O.CC5 2019-08-13 18:12:03.230
+1A60081O.C37 2019-08-13 18:02:05.783
+1A60101O.C2F 2019-08-13 18:01:13.397
+1A60171O.C52 2019-08-13 18:03:22.877
+1A60151O.C8F 2019-08-13 18:08:03.317
+1A60151O.C64 2019-08-13 18:05:03.137
+1A60171O.CA5 2019-08-13 18:09:22.950
+1A60071O.CCF 2019-08-13 18:12:18.890
+1A60301O.C4A 2019-08-13 18:03:10.087
+1A60071O.CDF 2019-08-13 18:13:18.903
+1A60301O.CD8 2019-08-13 18:13:10.213
+1A60231O.C2A 2019-08-13 18:01:08.943
+1A60161O.C74 2019-08-13 18:06:07.350
+1A60091O.C4F 2019-08-13 18:03:14.657
+1A60091O.CDD 2019-08-13 18:13:14.993
+1A60151O.C55 2019-08-13 18:04:03.153
+1A60171O.CC2 2019-08-13 18:11:22.987
+1A60151O.CD3 2019-08-13 18:13:03.230
+1A60171O.C7F 2019-08-13 18:06:22.960
+1A60231O.CE7 2019-08-13 18:14:09.227
+1A60131O.C9A 2019-08-13 18:09:02.223
+1A60231O.C68 2019-08-13 18:05:08.997
+1A60301O.C2B 2019-08-13 18:01:10.060
+1A60231O.CAC 2019-08-13 18:10:09.063
+1A60231O.CD7 2019-08-13 18:13:09.103
+1A60071O.C7E 2019-08-13 18:06:19.980
+1A60151O.C82 2019-08-13 18:07:03.193
+1A60151O.C9B 2019-08-13 18:09:03.177
+1A60231O.C9F 2019-08-13 18:09:09.050
+1A60231O.C58 2019-08-13 18:04:08.983
+1A60151O.CA8 2019-08-13 18:10:03.203
+1A60301O.CE8 2019-08-13 18:14:10.227
+1A60091O.CA2 2019-08-13 18:09:14.737
+1A60171O.C61 2019-08-13 18:04:22.903
+1A60171O.CD0 2019-08-13 18:12:23.000
+1A60171O.C33 2019-08-13 18:01:22.853
+1A60231O.C76 2019-08-13 18:06:09.027
+1A60171O.CB5 2019-08-13 18:10:22.960
+1A60111O.C5A 2019-08-13 18:04:10.673
+1A60211O.C53 2019-08-13 18:04:01.697
+1A60111O.C78 2019-08-13 18:06:10.713
+1A60161O.C66 2019-08-13 18:05:07.320
+1A60301O.CAD 2019-08-13 18:10:10.173
+1A60061O.C50 2019-08-13 18:03:16.277
+1A60151O.CE3 2019-08-13 18:14:03.260
+1A60091O.C30 2019-08-13 18:01:14.783
+1A60151O.CB8 2019-08-13 18:11:03.217
+1A60091O.CCD 2019-08-13 18:12:14.793
+1A60171O.C43 2019-08-13 18:02:22.863
+1A60151O.C36 2019-08-13 18:02:03.080
+1A60141O.CAB 2019-08-13 18:10:06.920
+1A60161O.C9D 2019-08-13 18:09:07.370
+1A60301O.C77 2019-08-13 18:06:10.123
+1A60111O.C4B 2019-08-13 18:03:10.660
+1A60171O.CE0 2019-08-13 18:13:22.997
+1A60131O.C63 2019-08-13 18:05:02.173
+1A60141O.C75 2019-08-13 18:06:06.870
+1A60171O.C6F 2019-08-13 18:05:23.663
+1A60071O.C6E 2019-08-13 18:05:18.813
+1A60081O.CC6 2019-08-13 18:12:05.907
+1A60071O.C32 2019-08-13 18:01:18.743
+1A60161O.C91 2019-08-13 18:08:07.390
+1A60141O.CC8 2019-08-13 18:12:06.947
+1A60161O.CD5 2019-08-13 18:13:07.423
+1A60131O.CD2 2019-08-13 18:13:02.273
+1A60101O.C7B 2019-08-13 18:06:13.477
+1A60071O.CB4 2019-08-13 18:10:18.863
+1A60081O.C9C 2019-08-13 18:09:05.870
+1A60151O.C45 2019-08-13 18:03:07.227
+1A60141O.C9E 2019-08-13 18:09:06.910
+1A60101O.C8B 2019-08-13 18:07:15.127
+1A60231O.CC9 2019-08-13 18:12:09.090
+1A60231O.C93 2019-08-13 18:08:09.053
+1A60141O.C92 2019-08-13 18:08:06.913
+1A60151O.C72 2019-08-13 18:06:03.133
+1A60301O.CA0 2019-08-13 18:09:10.177
+1A60091O.C5E 2019-08-13 18:04:16.853
+1A60091O.CED 2019-08-13 18:14:14.803
+1A60141O.C57 2019-08-13 18:04:06.877
+1A60071O.CEF 2019-08-13 18:14:18.900
+1A60301O.C3B 2019-08-13 18:02:10.087
+1A60071O.C60 2019-08-13 18:04:18.767
+1A60091O.C88 2019-08-13 18:07:15.257
+1A60071O.CA4 2019-08-13 18:09:18.850
+"@ | ConvertFrom-Csv -Delimiter "`t"
+
+
+$files = Get-ChildItem -Recurse -File -Path '\\rejk-p-mdl001\d-drive\IFSBOData\FSV\Incoming_archi\DCP_ud\2019\08\13\','\\rejk-p-mdl002\d-drive\ifsbodata\fsv\incoming_archi\dcp_ud\2019\08\13\' | Select-Object -ExpandProperty FullName
+
+foreach($entry in $csv) {
+ Write-Verbose -Verbose ("Looking for {0} from {1}" -f $entry.TransmissionFileName, $entry.TransmissionDate)
+
+ $result = $files | where { $_ -match $entry.TransmissionFileName }
+}
+
+
+$i = 0
+$result = foreach($line in $files) {
+ Write-Progress -Activity "Line $i / $($files.Count)" -PercentComplete ($i++ / $files.Count * 100)
+ foreach($entry in $csv) {
+
+ if($line -match $entry.TransmissionFileName) {
+ Write-Verbose "Found $($entry.TransmissionFileName) in $line"
+ $line
+ }
+ }
+}
+
+
+$f1names = $f1.Name
+
+foreach($file in $f2) {
+ if($file.Name -in $f1names) {
+ Write-Verbose -Verbose "Ignore $($file.Name)"
+ }
+}
diff --git a/Dennis_Scripts/RK/pomOrder.ps1 b/Dennis_Scripts/RK/pomOrder.ps1
new file mode 100644
index 0000000..1b092a7
--- /dev/null
+++ b/Dennis_Scripts/RK/pomOrder.ps1
@@ -0,0 +1,12 @@
+Import-Module RKModule
+
+
+$orderids = Get-RKCustomerOrders -CustomerRefNumber 100184058
+
+$orders = foreach($entry in $orderids) {
+ [pscustomobject]@{
+ Order = Get-RKObjOrder -OrderID $entry.OrderID
+ OrderItems = Get-RKObjOrderItem -OrderID $entry.OrderID
+ }
+}
+
diff --git a/Dennis_Scripts/RK/queries.ps1 b/Dennis_Scripts/RK/queries.ps1
new file mode 100644
index 0000000..25ee922
--- /dev/null
+++ b/Dennis_Scripts/RK/queries.ps1
@@ -0,0 +1,108 @@
+@{
+ 'RKObjOrder' = @{
+ 'query' = "
+ SELECT
+ OrderID
+ ,OrderDate
+ ,OrderStatus = (select enumeratorwording from cmn.refconfiguration where enumeratordomain = 'POMOrderItemStatus' and enumeratorkey = orderstatus and languagecode = 'en-gb')
+ ,CustomerID
+ ,AchievementDate
+ ,PaymentAgreementID
+ ,PaymentAuthorizationID
+ ,PaymentMode
+ ,PaymentRecipientRefNumber
+ ,Currency = (select enumeratorwording from cmn.refconfiguration where enumeratordomain = 'CurrencyCode' and enumeratorkey = Currency and languagecode = 'en-gb')
+ ,BankCardFee
+ ,BankCardType
+ ,RefundMeans
+ ,RefundMeansDetails
+ ,Channel = (select enumeratorwording from cmn.refconfiguration where enumeratordomain = 'Channel' and enumeratorkey = ChannelID and languagecode = 'en-gb')
+ ,UserLogin
+ ,OrderStatusDate
+ ,Comment
+ ,RegistrationNumber
+ ,AccountNumber
+ ,BankDetails
+ ,CancellationUserID
+ ,CancellationChannelID
+ ,CancellationBusinessParticipantID
+ ,BusinessParticipant = (select LongName from cmn.ObjBusinessParticipant bp where bp.BusinessParticipantID = o.BusinessParticipantID)
+ FROM pom.ObjOrder o WITH(READUNCOMMITTED)
+ WHERE OrderID = @OrderID"
+ 'columns' = @(
+ 'OrderID'
+ 'OrderDate'
+ 'OrderStatus'
+ 'CustomerID'
+ 'AchievementDate'
+ 'PaymentAgreementID'
+ 'PaymentAuthorizationID'
+ 'PaymentMode'
+ 'PaymentRecipientRefNumber'
+ 'Currency'
+ 'BankCardFee'
+ 'BankCardType'
+ 'RefundMeans'
+ 'RefundMeansDetails'
+ 'Channel'
+ 'UserLogin'
+ 'OrderStatusDate'
+ 'Comment'
+ 'RegistrationNumber'
+ 'AccountNumber'
+ 'BankDetails'
+ 'CancellationUserID'
+ 'CancellationChannelID'
+ 'CancellationBusinessParticipantID'
+ 'BusinessParticipant'
+ )
+ }
+
+ 'RKObjOrderItem' = @{
+ 'query' = "
+ SELECT [OrderItemID]
+ ,[OrderID]
+ ,[OrderItemStatus] = (SELECT EnumeratorWording FROM cmn.refconfiguration WHERE EnumeratorDomain = 'POMOrderItemStatus' AND EnumeratorKey = OrderItemStatus AND LanguageCode = 'en-gb')
+ ,[OrderItemType] = (SELECT EnumeratorWording FROM cmn.refconfiguration WHERE EnumeratorDomain = 'POMOrderItemType' AND EnumeratorKey = OrderItemType AND LanguageCode = 'en-gb')
+ ,[FailureReasonCode]
+ ,[FeeAmount]
+ ,[DueFeeAmount]
+ ,[OrderItemAmount]
+ ,[ToBeInvoiced]
+ ,[VATAmount]
+ ,[ExpirationDate]
+ ,[StatusModificationDate]
+ ,[MediaInstanceID]
+ ,[ProductInstanceID]
+ FROM [AfcCookedIFSV2].[pom].[ObjOrderItem] oi
+ WHERE OrderID = @OrderID"
+
+ 'columns' = @(
+ 'OrderItemID'
+ 'OrderID'
+ 'OrderItemStatus'
+ 'OrderItemType'
+ 'FailureReasonCode'
+ 'FeeAmount'
+ 'DueFeeAmount'
+ 'OrderItemAmount'
+ 'ToBeInvoiced'
+ 'VATAmount'
+ 'ExpirationDate'
+ 'StatusModificationDate'
+ 'MediaInstanceID'
+ 'ProductInstanceID'
+ )
+ }
+
+ 'RKCustomerOrders' = @{
+ 'query' = "
+ SELECT [OrderID]
+ FROM [AfcCookedIFSV2].[pom].[ObjOrder] o
+ WHERE CustomerID = (
+ SELECT CustomerID FROM cmn.ObjCustomer WHERE CustomerRefNumber = @RefNumber
+ )"
+
+ 'columns' = @( 'OrderID' )
+ }
+}
\ No newline at end of file
diff --git a/Dennis_Scripts/Rejsekort.psm1 b/Dennis_Scripts/Rejsekort.psm1
new file mode 100644
index 0000000..363d039
--- /dev/null
+++ b/Dennis_Scripts/Rejsekort.psm1
@@ -0,0 +1,18 @@
+function Search-CardClosureLogs {
+ [cmdletbinding()]
+ param(
+ [string]$Pattern
+ )
+
+ 1..2 | % { Get-Item "\\rejk-p-bcm00$_\d-drive\ifsbosystem\log\cardclosure*" } | Select-String -Pattern $Pattern
+}
+
+
+function Get-CardClosureLogs {
+ [cmdletbinding()]
+ param(
+
+ )
+
+ 1..2 | % { Get-Item "\\rejk-p-bcm00$_\d-drive\ifsbosystem\log\cardclosure*" }
+}
\ No newline at end of file
diff --git a/Dennis_Scripts/SQL - Select from BlacklistBlockingReason by CardEngravedID in CSV.txt b/Dennis_Scripts/SQL - Select from BlacklistBlockingReason by CardEngravedID in CSV.txt
new file mode 100644
index 0000000..0a176da
--- /dev/null
+++ b/Dennis_Scripts/SQL - Select from BlacklistBlockingReason by CardEngravedID in CSV.txt
@@ -0,0 +1,19 @@
+$csv = 'C:\users\m.nielsen\documents\book1.csv'
+
+$csv = import-csv $csv -Header 'num'
+$output = foreach($item in $csv) {
+ $num = $item.num.substring('308430'.length).trimstart('0')
+ $num.substring(0, $num.length-1)
+}
+
+"USE AfcCookedIFSV2;
+SELECT AU.UserName,
+omi.CardEngravedID,
+rc.EnumeratorWording,
+BH.ActionDate AS Date
+ FROM [AfcCookedIFSV2].[lst].[ObjBlacklistHistory] AS BH
+ Inner JOIN cmn.RefConfiguration rc ON rc.EnumeratorKey = bh.BlacklistBlockingReasonID
+ Inner JOIN trk.ObjMediaInstance omi ON omi.MediaInstanceID = bh.MediaInstanceID
+ Inner JOIN dbo.aspnet_Users AU ON bh.AgentUserID = au.UserID
+ WHERE rc.enumeratordomain LIKE 'BlacklistBlockingReason' AND rc.LanguageCode = 'en-Gb'
+ AND omi.CardEngravedID IN ($($output -join ', '))"
diff --git a/Dennis_Scripts/Search AX log files.ps1 b/Dennis_Scripts/Search AX log files.ps1
new file mode 100644
index 0000000..2c9e5af
--- /dev/null
+++ b/Dennis_Scripts/Search AX log files.ps1
@@ -0,0 +1,11 @@
+$olderThan = Get-Date 'November 16, 2015'
+#$olderThan = (Get-Date).AddDays(-7)
+
+$searchPattern = 'BusinessEvents-NonPersistent-4910-20151119-H'
+
+
+$axFileshare = "\\rjkprod.local\axfileshare\AXFiles\BATCHES\log"
+$files = Get-Item "$axFileshare\*.log" | Where { $_.LastWriteTime -gt $olderThan }
+
+$result = Select-String -Path $files -Pattern $searchPattern
+
diff --git a/Dennis_Scripts/Search backwards in logfile(s) for first entry.ps1 b/Dennis_Scripts/Search backwards in logfile(s) for first entry.ps1
new file mode 100644
index 0000000..af49fbb
--- /dev/null
+++ b/Dennis_Scripts/Search backwards in logfile(s) for first entry.ps1
@@ -0,0 +1,41 @@
+& {
+ # go to these servers
+ $servers = 'REJK-P-APP001','REJK-P-APP002','REJK-P-APP003','REJK-P-APP004'
+
+ # look in these logfiles
+ $logfiles = @(
+ "\\$server\D-Drive\IFSBOSystem\Log\IndirectTravelCard.Service.log"
+ "\\$server\D-Drive\IFSBOSystem\Log\IndirectTravelCard.Service.log.1"
+ "\\$server\D-Drive\IFSBOSystem\Log\IndirectTravelCard.Service.log.2"
+ "\\$server\D-Drive\IFSBOSystem\Log\IndirectTravelCard.Service.log.3"
+ )
+
+ # First find this
+ $matchstring = 'Unexpected Exception in InsertLST.ListManagement.BusinessEntities.ActionReloadTPurseEntity.'
+
+ # then search backwards for this
+ $searchentry = 'InsertLST.ListManagement.BusinessEntities.ActionReloadTPurseEntity:'
+
+ foreach($server in $servers) {
+ foreach($logfile in $logfiles) {
+ Write-Host "-- $logfile"
+
+ $content = Get-Content $logfile
+
+ for($i = 0; $i -lt $content.Length; $i++) {
+ if($content[$i] -match $matchstring) {
+ for($y = $i-1; $y -ge 0; $y--) {
+ if($content[$y] -match $searchentry) {
+ Write-Host $content[$y]
+ break
+ }
+
+ if($y -eq 0) { Write-Host "Searchentry not found" }
+ }
+
+ break
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/Dennis_Scripts/SearchFSVHistory.ps1 b/Dennis_Scripts/SearchFSVHistory.ps1
new file mode 100644
index 0000000..e3cc5fa
--- /dev/null
+++ b/Dennis_Scripts/SearchFSVHistory.ps1
@@ -0,0 +1,6 @@
+1..2 | % { Get-ChildItem -Path "\\rejk-p-mdl00$_\d-drive\ifsbodata\fsv\incoming_histo" } | where { $_.name -match '201608' } | Get-ChildItem -Recurse | % {
+ foreach($pattern in ('1113973L.C23','1131212L.FCF','1131213L.0CA','1143823L.B8F')) {
+ Write-Host "Looking for '$pattern' in '$($_.fullname)'"
+ $_ | Select-String -Pattern $pattern
+ }
+}
\ No newline at end of file
diff --git a/Dennis_Scripts/Something finance nonpersistent.ps1 b/Dennis_Scripts/Something finance nonpersistent.ps1
new file mode 100644
index 0000000..f90c161
--- /dev/null
+++ b/Dennis_Scripts/Something finance nonpersistent.ps1
@@ -0,0 +1,46 @@
+$xml = [xml](get-content C:\Users\ewpmni\AppData\Local\Temp\28\Temp1_Finance-NonPersistent-AX-13184-20171030-N.zip\Finance-NonPersistent-AX-13184-20171030-N.xml)
+
+$invoices = $xml.DataExportFile.DataGroup.DataType.Finance.Invoice | where { $_.creationtype -eq 1 }
+
+$sqlConnection = new-object System.Data.SqlClient.SqlConnection
+$sqlConnection.ConnectionString = 'Server=rejk-p-sql006\sql01;Database=TravelCardDynamicsAX;Trusted_Connection=True;'
+$sqlConnection.Open()
+$sqlCommand = $sqlConnection.CreateCommand()
+
+$sqlCommand.CommandText = @"
+ SELECT
+ INVOICEID
+ , INVOICEDATE
+ , NAME
+ , SALESID
+ FROM [TravelCardDynamicsAX].[dbo].[CUSTINVOICETRANS]
+ where
+ invoiceid in ('$($invoices.documentuniqueid -join "','")') and invoicedate = '$($invoices[0].DocumentDate)'
+"@
+
+$reader = $sqlCommand.ExecuteReader()
+
+if(-not $reader.HasRows) { Write-Warning "No rows found for DocumentUniqueID: $($invoice.DocumentUniqueID)"; continue }
+
+$results = while($reader.Read()) {
+
+ $result = [pscustomobject]@{
+ invoiceId = $reader['INVOICEID']
+ invoiceDate = $reader['INVOICEDATE']
+ name = $reader['NAME']
+ salesid = $reader['SALESID']
+ }
+
+ Write-Verbose -Verbose "ID: $($result.invoiceid)"
+
+ Write-Output $result
+
+ if($result.name -match 'Manual|Manuel') {
+ Write-Warning "$($result.invoiceid) name: $($result.name)"
+ }
+}
+
+$reader.Close()
+
+$sqlCommand.Dispose()
+$sqlConnection.Close()
\ No newline at end of file
diff --git a/Dennis_Scripts/TestDCopyFilesToDWFTP.ps1 b/Dennis_Scripts/TestDCopyFilesToDWFTP.ps1
new file mode 100644
index 0000000..6c78e9a
--- /dev/null
+++ b/Dennis_Scripts/TestDCopyFilesToDWFTP.ps1
@@ -0,0 +1,11 @@
+$dateStr = ("API.LOG.{0}" -f (Get-Date -Format 'yyyy-MM-dd.HH-mm'))
+
+$path = Join-Path $env:TEMP $dateStr
+
+$null = mkdir $path
+
+Get-Item "D:\IFSBOSystem\Log\*.log*" | Copy-Item -Destination $path
+
+& 'C:\Program Files\7-Zip\7z.exe' a -tzip "\\btyidr52ftp\d$\IFSBODATA\DW\$dateStr.zip" "$path\*.log*"
+
+rmdir -Force $path -Recurse
\ No newline at end of file
diff --git a/Dennis_Scripts/TestDeploymentFunctions.ps1 b/Dennis_Scripts/TestDeploymentFunctions.ps1
new file mode 100644
index 0000000..f732ab8
--- /dev/null
+++ b/Dennis_Scripts/TestDeploymentFunctions.ps1
@@ -0,0 +1,41 @@
+$serverlist = ('rejk-c-app301',
+ 'rejk-c-dps301',
+ 'rejk-c-mdl301',
+ 'rejk-c-rep301',
+ 'rejk-c-sps301',
+ 'rejk-c-tcf301',
+ 'rejk-c-tcs301',
+ 'rejk-c-tcs302',
+ 'rejk-c-tcs303',
+ 'rejk-c-web301')
+
+function CopyLogs($servers) {
+ foreach($server in $servers) {
+ if(Test-Path "\\$server\d$\log_backup") {
+ Write-Host "$server - Removing log_backup"
+ Remove-Item "\\$server\d$\log_backup" -Recurse
+ }
+
+ if(Test-Path "\\$server\d$\ifsbosystem\log") {
+ Write-Host "$server - Copying log to log_backup"
+ Copy-Item "\\$server\d$\ifsbosystem\log" "\\$server\d$\log_backup" -Recurse
+ }
+ }
+}
+
+# run me:
+# CopyLogs -servers $serverlist
+
+
+
+
+
+function RestartComputers($servers) {
+ foreach($server in $servers) {
+ Write-Host "$server - Restarting"
+ Invoke-Command -ComputerName $server -ScriptBlock { Restart-Computer -Force }
+ }
+}
+
+# run me:
+# RestartComputers -servers $serverlist
\ No newline at end of file
diff --git a/Dennis_Scripts/Untitled1.ps1 b/Dennis_Scripts/Untitled1.ps1
new file mode 100644
index 0000000..3024219
--- /dev/null
+++ b/Dennis_Scripts/Untitled1.ps1
@@ -0,0 +1,113 @@
+$str = get-item '\\rejk-p-web005\d-drive\Logfiles\W3SVC1\u_ex161229.log','\\rejk-p-web006\d-drive\Logfiles\W3SVC1\u_ex161229.log','\\rejk-p-web007\d-drive\Logfiles\W3SVC1\u_ex161229.log','\\rejk-p-web008\d-drive\Logfiles\W3SVC1\u_ex161229.log' | Select-String -Pattern 'rejsekort/2015'
+$csv = $str | select -expand line | ConvertFrom-Csv -Delimiter ' ' -Header ('date time s-sitename s-computername s-ip cs-method cs-uri-stem cs-uri-query s-port cs-username c-ip cs-version cs(User-Agent) cs(Cookie) cs(Referer) cs-host sc-status sc-substatus sc-win32-status sc-bytes cs-bytes time-taken' -split ' ')
+$group = $csv | group 'cs-uri-stem'
+
+
+
+$csv = Import-Csv -Delimiter ' ' -Header ('date time s-sitename s-computername s-ip cs-method cs-uri-stem cs-uri-query s-port cs-username c-ip cs-version cs(User-Agent) cs(Cookie) cs(Referer) cs-host sc-status sc-substatus sc-win32-status sc-bytes cs-bytes time-taken' -split ' ') -Path '\\rejk-p-web005\d-drive\Logfiles\W3SVC1\u_ex161229.log','\\rejk-p-web006\d-drive\Logfiles\W3SVC1\u_ex161229.log','\\rejk-p-web007\d-drive\Logfiles\W3SVC1\u_ex161229.log','\\rejk-p-web008\d-drive\Logfiles\W3SVC1\u_ex161229.log'
+
+
+$content = Get-Content '\\rejk-p-web005\d-drive\Logfiles\W3SVC1\u_ex161229.log','\\rejk-p-web006\d-drive\Logfiles\W3SVC1\u_ex161229.log','\\rejk-p-web007\d-drive\Logfiles\W3SVC1\u_ex161229.log','\\rejk-p-web008\d-drive\Logfiles\W3SVC1\u_ex161229.log'
+
+
+
+
+$csv = foreach($file in '\\rejk-p-web005\d-drive\Logfiles\W3SVC1\u_ex161229.log','\\rejk-p-web006\d-drive\Logfiles\W3SVC1\u_ex161229.log','\\rejk-p-web007\d-drive\Logfiles\W3SVC1\u_ex161229.log','\\rejk-p-web008\d-drive\Logfiles\W3SVC1\u_ex161229.log') {
+
+ $stream = New-Object System.IO.StreamReader -ArgumentList $file
+
+ while($line = $stream.ReadLine()) {
+
+ if($line.StartsWith('#')) { continue }
+
+ if($line -match '/cws/Error/DefaultError') {
+ $line | ConvertFrom-Csv -Delimiter ' ' -Header ('date time s-sitename s-computername s-ip cs-method cs-uri-stem cs-uri-query s-port cs-username c-ip cs-version cs(User-Agent) cs(Cookie) cs(Referer) cs-host sc-status sc-substatus sc-win32-status sc-bytes cs-bytes time-taken' -split ' ')
+ }
+
+ }
+
+ $stream.Close()
+}
+
+
+$group[7].group | sort time | ft time, 'cs-uri-query' -AutoSize
+
+$group.group | foreach { $datetime = "$($_.date) $($_.time)"; $datetime = Get-Date $datetime; $datetime = $datetime.AddHours(1); $_ | Add-Member -MemberType NoteProperty -Name DateTime -Value $datetime.ToString('yyyy-MM-dd HH:mm:ss') }
+
+$group.group | sort datetime | where 'cs-uri-query' -notmatch '\.png' | ft 's-computername', 'time-taken', datetime, 'cs-method', 'cs-uri-query', @{ N='Agent'; E={
+ $os = $agent = $_.'cs(User-Agent)'
+
+ if($os -match 'Windows') { $os = 'Windows' }
+ if($os -match 'iPhone|Darwin') { $os = 'iPhone' }
+ if($os -match 'iPad') { $os = 'iPad' }
+ if($os -match 'Dalvik|Android') { $os = 'Android' }
+ if($os -match 'Mac\+OS\+X') { $os = 'Mac' }
+ if($os -match 'Ubuntu') { $os = 'Ubuntu' }
+ if($os -match 'Linux') { $os = 'Linux' }
+
+
+ if($agent -match 'chrome') { $agent = 'Chrome' }
+ if($agent -match 'Firefox') { $agent = 'Firefox' }
+ if($agent -match 'Safari') { $agent = 'Safari' }
+ if($agent -match 'Mit%20Rejsekort') { $agent = '"MitRejsekort" App' }
+ if($agent -match 'Rejs%20Nemt') { $agent = '"Rejs Nemt" App' }
+ if($agent -match 'Rejsekort/2015') { $agent = '"Rejsekort(??)" App' }
+ if($agent -match 'Mozilla\/5.0\+\(Windows\+NT\+[0-9]+.[0-9]+;\+WOW64;\+Trident\/7\.0;\+rv:11.0\)\+like\+Gecko') { $agent = 'Internet Explorer' }
+
+ "$os / $agent"
+}} -AutoSize
+
+
+
+
+
+
+
+
+
+
+$csvApp = foreach($file in '\\rejk-p-app004\d-drive\Logfiles\W3SVC3\u_ex161229.log','\\rejk-p-app003\d-drive\Logfiles\W3SVC3\u_ex161229.log','\\rejk-p-app002\d-drive\Logfiles\W3SVC3\u_ex161229.log','\\rejk-p-app001\d-drive\Logfiles\W3SVC3\u_ex161229.log') {
+ Write-Progress -Activity 'Csv APP' -Status "File: $($file)" -id 1
+ $stream = New-Object System.IO.StreamReader -ArgumentList $file
+
+ while($line = $stream.ReadLine()) {
+ Write-Progress -Activity 'Readline' -Status "Position $($stream.BaseStream.Position) / $($stream.BaseStream.Length)" -PercentComplete (100 / $stream.BaseStream.Length * $stream.BaseStream.Position) -parentid 1 -id 2
+
+ if($line.StartsWith('#')) { continue }
+
+ $c = $line | ConvertFrom-Csv -Delimiter ' ' -Header ('date time s-sitename s-computername s-ip cs-method cs-uri-stem cs-uri-query s-port cs-username c-ip cs-version cs(User-Agent) cs(Cookie) cs(Referer) cs-host sc-status sc-substatus sc-win32-status sc-bytes cs-bytes time-taken' -split ' ')
+ <#if([int]$c.'time-taken' -gt 5000) {
+ $c
+ }#>
+
+ $c
+ }
+
+ $stream.Close()
+
+}
+
+$csvApp | foreach { $datetime = "$($_.date) $($_.time)"; $datetime = Get-Date $datetime; $datetime = $datetime.AddHours(1); $_ | Add-Member -MemberType NoteProperty -Name DateTime -Value $datetime.ToString('yyyy-MM-dd HH:mm:ss') }
+
+$csvApp | sort datetime | ft 's-computername', 'time-taken', datetime, 'cs-method', 'cs-uri-query', @{ N='Agent'; E={
+ $os = $agent = $_.'cs(User-Agent)'
+
+ if($os -match 'Windows') { $os = 'Windows' }
+ if($os -match 'iPhone|Darwin') { $os = 'iPhone' }
+ if($os -match 'iPad') { $os = 'iPad' }
+ if($os -match 'Dalvik|Android') { $os = 'Android' }
+ if($os -match 'Mac\+OS\+X') { $os = 'Mac' }
+ if($os -match 'Ubuntu') { $os = 'Ubuntu' }
+ if($os -match 'Linux') { $os = 'Linux' }
+
+
+ if($agent -match 'chrome') { $agent = 'Chrome' }
+ if($agent -match 'Firefox') { $agent = 'Firefox' }
+ if($agent -match 'Safari') { $agent = 'Safari' }
+ if($agent -match 'Mit%20Rejsekort') { $agent = '"MitRejsekort" App' }
+ if($agent -match 'Rejs%20Nemt') { $agent = '"Rejs Nemt" App' }
+ if($agent -match 'Rejsekort/2015') { $agent = '"Rejsekort(??)" App' }
+ if($agent -match 'Mozilla\/5.0\+\(Windows\+NT\+[0-9]+.[0-9]+;\+WOW64;\+Trident\/7\.0;\+rv:11.0\)\+like\+Gecko') { $agent = 'Internet Explorer' }
+
+ "$os / $agent"
+}} -AutoSize
\ No newline at end of file
diff --git a/Dennis_Scripts/WebClientDigestAuthentication.ps1 b/Dennis_Scripts/WebClientDigestAuthentication.ps1
new file mode 100644
index 0000000..a184da5
--- /dev/null
+++ b/Dennis_Scripts/WebClientDigestAuthentication.ps1
@@ -0,0 +1,22 @@
+$urlHost = 'http://sysops-prod.east-west.dk'
+$urlPath = '/nagios/cgi-bin/status.cgi?host=Equipment'
+
+$uri = $urlHost + $urlPath
+
+$request = [System.Net.HttpWebRequest]::Create($uri)
+
+try {
+ [System.Net.HttpWebResponse]$request.GetResponse()
+}
+catch {
+
+ $ex = $_.Exception.InnerException
+
+ if($ex.Response -eq $null -or ([System.Net.HttpWebResponse]$ex.Response).StatusCode -ne [System.Net.HttpStatusCode]::Unauthorized) { throw $_ }
+
+
+ #$header = $_.Response.Headers['WWW-Authenticate']
+
+
+
+}
\ No newline at end of file
diff --git a/Dennis_Scripts/jumpscript.ps1 b/Dennis_Scripts/jumpscript.ps1
new file mode 100644
index 0000000..ddca692
--- /dev/null
+++ b/Dennis_Scripts/jumpscript.ps1
@@ -0,0 +1,36 @@
+ $jumps = 'rejk-a-tcs201','rejk-a-tcs202','rejk-a-mdl201'
+ $target = 'rejk-a-cac201'
+
+ $targetScript = {
+ return "$env:COMPUTERNAME was here"
+ }
+
+ $credentials = Get-Credential
+
+ $jumpScript = {
+ param($jumps, $target, $jumpScript, $targetScript, $credentials)
+
+ "Hello from $env:COMPUTERNAME - Jumps remaining: $($jumps.Count)"
+
+
+ if($jumps.Count -gt 0) {
+ $nextJump = $jumps | select -First 1
+ $remainingJumps = @($jumps | select -Skip 1) #v2 fix
+
+ Invoke-Command -ScriptBlock ([scriptblock]::Create($jumpScript)) -ComputerName $nextJump -Credential $credentials -ArgumentList $remainingJumps, $target, $jumpScript, $targetScript, $credentials
+ }
+ else {
+ Invoke-Command -ScriptBlock ([scriptblock]::Create($targetScript)) -ComputerName $target -Credential $credentials
+ }
+ }
+
+
+ if($jumps.Count -gt 0) {
+ $nextJump = $jumps | select -First 1
+ $remainingJumps = @($jumps | select -Skip 1)
+
+ Invoke-Command -ScriptBlock $jumpScript -ComputerName $nextJump -Credential $credentials -ArgumentList $remainingJumps, $target, $jumpScript, $targetScript, $credentials
+ }
+ else {
+ Invoke-Command -ScriptBlock $targetScript -ComputerName $target -Credential $credentials
+ }
\ No newline at end of file
diff --git a/Dennis_Scripts/nagios service extractor.ps1 b/Dennis_Scripts/nagios service extractor.ps1
new file mode 100644
index 0000000..164f032
--- /dev/null
+++ b/Dennis_Scripts/nagios service extractor.ps1
@@ -0,0 +1,37 @@
+Set-Location 'C:\Users\m.nielsen\desktop\Scripts\thales'
+
+$content = Get-Content -Raw -Path commands.cfg
+$matches = [regex]::Matches($content, 'define command *{.*?command_name *(?.*?)\n *command_line *(?.*?)\n}', [System.Text.RegularExpressions.RegexOptions]::Singleline)
+$commands = foreach($m in $matches) {
+ Write-Output ([pscustomobject]@{
+ CommandName = $m.Groups['command_name'].Value
+ CommandLine = $m.Groups['command_line'].Value
+ })
+}
+
+
+$services = foreach($file in (Get-Item .\hostgroup_*.cfg, .\serviceTemplates.cfg)) {
+ $content = Get-Content -Raw $file
+
+ $matches = [regex]::Matches($content, '{(?.*?)}', [System.Text.RegularExpressions.RegexOptions]::Singleline)
+
+ foreach($m in $matches) {
+ $hostgroup = [regex]::Match($m.Groups['content'].Value, 'hostgroup_name *(.*)').Groups[1].Value
+ $hostname = [regex]::Match($m.Groups['content'].Value, 'host_name *(.*)').Groups[1].Value
+ $servicedescription = [regex]::Match($m.Groups['content'].Value, 'service_description *(.*)').Groups[1].Value
+ $servicename = [regex]::Match($m.Groups['content'].Value, 'service_name *(.*)').Groups[1].Value
+ $checkcommand = [regex]::Match($m.Groups['content'].Value, 'check_command *(.*)').Groups[1].Value
+ $use = [regex]::Match($m.Groups['content'].Value, 'use *(.*)').Groups[1].Value
+
+ Write-Output ([pscustomobject]@{
+ Hostgroup = $hostgroup
+ Hostname = $hostname
+ CheckCommand = $checkcommand
+ Use = $use
+ ServiceName = $servicename
+ ServiceDescription = $servicedescription
+ File = $file.Name
+ Content = $m.Groups['content'].Value
+ })
+ }
+}
\ No newline at end of file
diff --git a/EFT-LOG-Download.ps1 b/EFT-LOG-Download.ps1
new file mode 100644
index 0000000..5671adc
--- /dev/null
+++ b/EFT-LOG-Download.ps1
@@ -0,0 +1,88 @@
+<#
+EFT-Log-Download.ps1
+Author: Emil Holgersen, Thales Danmark
+Date: 15-04-2020
+Version: 1.0
+Description: Tool for copying EFT module logfiles from archive to user desktop
+NOTE: This script has to be run on Citrix!
+
+Input: logfile date, EFT SAM ID
+Output: Logfile in folder on user dekstop, if logfile exists
+#>
+
+# Input Date and validate it, and then validate that we have files from that date. Outer while-loop is so we keep asking until we get a valid date with data in archive
+While (1) {
+ # Input date and validate that the date exists (inner while-loop is so we keep asking until we get a valid date)
+ While (1) {
+ $Input = (Read-Host -Prompt 'Please input target logfile date')
+ Try {
+ #Check if valid date
+ $Date = [DateTime]$Input
+ Write-Host "$($Date.ToString("yyyy-MM-dd")) is a valid date" -fore Green
+ Break # Date is valid, break the inner while-loop
+ }
+ Catch {
+ Write-Host "$Input does not appear to be a valid date" -Fore Red
+ }
+ }
+
+ # Validate that we have logfiles from that date
+ # Format is strange around change of month. If the logfiles are from the last of the month, they we be copied and named as if they are the 0th of the following month. The same logic applies at new year.
+ # I suspect the reason for that is the code that copies the logfiles does it after midnight, and stores it as "currentday-1"
+ [String]$Year = $Date.AddDays(1).ToString("yyyy")
+ [String]$Month = $Date.AddDays(1).ToString("MM")
+ [String]$Day = ([Int32]$Date.AddDays(1).ToString("dd") -1).ToString("00") # This is a trick/hack: subtract 1, and always show 2 digits (leading 0 if necesary)
+
+ # Check if we have a folder from that date (Format: \\rejk-p-int003\EW\EFTLogs\YYYY\MM\DD)
+ If (Test-Path "\\rejk-p-int003\EW\EFTLogs\$Year\$Month\$Day" -PathType Container) {
+ Write-Host 'We have logfiles from that date' -Fore Green
+ Break # we have logfiles from this date, break the outer while-loop
+ }
+ Else {
+ Write-Host 'We have no logfiles from that date, is it the correct one?' -Fore Red
+ }
+}
+
+# Input and validate EFT module SAM. Outer while-loop is so we keep asking until user gets it right.
+While (1) {
+ $Input = (Read-Host -Prompt 'Please input target EFT module SAM')
+ Try {
+ #Check if valid date
+ $EFTSAM = [Int32]$Input #convert to integer
+ If ($EFTSAM -ge 41000 -and $EFTSAM -le 49999) {
+ $EFTSAM = $($EFTSAM.ToString("000000"))
+ Write-Host "$EFTSAM within expected EFT SAM range" -Fore Green
+ Break # SAM appears valid, break the while-loop
+ }
+ Else {
+ Throw # Not within range, we therefore return error for the catch to handle
+ }
+ }
+ Catch {
+ Write-Host "$Input does not appear to be a valid EFT SAM" -Fore Red
+ }
+}
+# Check if file exists, and copy if it does
+$Filepath = "\\rejk-p-int003\EW\EFTLogs\$Year\$Month\$Day\EFTLog-$EFTSAM-$Year$Month$Day.log.gz"
+$CurrentUserDesktop = [Environment]::GetFolderPath("Desktop")
+If (Test-Path $Filepath -PathType Leaf) {
+ Write-Host 'It appears we have logfiles from that EFT on that date' -Fore Green
+ If (!(Test-Path "$CurrentUserDesktop\EFTLOGS")) {
+ New-Item -ItemType Directory -Force -Path "$CurrentUserDesktop\EFTLOGS" | Out-Null
+ }
+ If (Test-Path "$CurrentUserDesktop\EFTLOGS\EFTLog-$EFTSAM-$Year$Month$Day.log.gz") {
+ Write-Host "File already exists on desktop: $CurrentUserDesktop\EFTLOGS\EFTLog-$EFTSAM-$Year$Month$Day.log.gz" -Fore Red
+ }
+ Else {
+ Try {
+ Copy-Item $Filepath -Destination "$CurrentUserDesktop\EFTLOGS\EFTLog-$EFTSAM-$Year$Month$Day.log.gz"
+ Write-Host "EFTLog-$EFTSAM-$Year$Month$Day.log.gz copied to EFTLOGS on user desktop" -Fore Green
+ }
+ Catch {
+ Write-Host "File copy failed, unknown error" -Fore Red
+ }
+ }
+}
+Else {
+ Write-Host "No logfile found for $EFTSAM on that date, check date and SAM. Please note that sometimes logfiles are not archived on server" -Fore Red
+}
\ No newline at end of file
diff --git a/GenerateCert.ps1 b/GenerateCert.ps1
new file mode 100644
index 0000000..8b18f04
--- /dev/null
+++ b/GenerateCert.ps1
@@ -0,0 +1,3955 @@
+<#
+
+ .SYNOPSIS
+ This script/function requests and receives a New Certificate from your Windows-based Issuing Certificate Authority.
+
+ When used in conjunction with the Generate-CertTemplate.ps1 script/function, all needs can be satisfied.
+ (See: https://github.com/pldmgg/misc-powershell/blob/master/Generate-CertTemplate.ps1)
+
+ This can be run as a script by uncommenting the very last line calling the Generate-Certificate function, or by
+ simply loading the entire function into your current PowerShell shell and then calling it.
+
+ IMPORTANT NOTE 1: By running the function without any parameters, the user will be walked through several prompts.
+ This is the recommended way to use this function until the user feels comfortable with parameters mentioned below.
+
+ .DESCRIPTION
+ This function/script is split into the following sections (ctl-f to jump to each of these sections)
+ - Libraries and Helper Functions (~Lines 298-1395)
+ - Initial Variable Definition and Validation (~Lines 1397-1760)
+ - Writing the Certificate Request Config File (~Lines 1762-2169)
+ - Generate Certificate Request and Submit to Issuing Certificate Authority (~Lines 2172-2284)
+
+ .DEPENDENCIES
+ OPTIONAL DEPENDENCIES (One of the two will be required depending on if you use the ADCS Website)
+ 1) RSAT (Windows Server Feature) - If you're not using the ADCS Website, then the Get-ADObject cmdlet is used for various purposes. This cmdlet
+ is available only if RSAT is installed on the Windows Server.
+
+ 2) Win32 OpenSSL - If $UseOpenSSL = "Yes", the script/function depends on the latest Win32 OpenSSL binary that can be found here:
+ https://indy.fulgan.com/SSL/
+ Simply extract the (32-bit) zip and place the directory on your filesystem in a location to be referenced by the parameter $PathToWin32OpenSSL.
+
+ IMPORTANT NOTE 2: The above third-party Win32 OpenSSL binary is referenced by OpenSSL.org here:
+ https://wiki.openssl.org/index.php/Binaries
+
+ .PARAMETER CertGenWorking
+ This parameter is MANDATORY.
+
+ There is NO DEFAULT VALUE supplied. If the user does not explicitly provide a value from the command line, then
+ the user will receive a prompt asking for a value to be provided.
+
+ This parameter takes a string that represents a valid file path. All output files will be written to this location.
+
+ .PARAMETER BasisTemplate
+ This parameter is MANDATORY.
+
+ There is NO DEFAULT VALUE supplied. If the user does not explicitly provide a value from the command line, then
+ the user will receive a prompt asking for a value to be provided.
+
+ This parameter takes a string that represents either the CN or the displayName of the Certificate Template that you are
+ basing this New Certificate on. IMPORTANT NOTE: If you are requesting the new certificate via the ADCS Web Enrollment
+ Website the Certificate Template will ONLY appear in the Certificate Template
+ drop-down on the ADCS Web Enrollment website (which makes it a valid option for this parameter) if
+ msPKITemplateSchemaVersion is "2" or "1" AND pKIExpirationPeriod is 1 year or LESS. See the Generate-CertTemplate.ps1
+ script/function for more details here:
+ https://github.com/pldmgg/misc-powershell/blob/master/Generate-CertTemplate.ps1
+
+ .PARAMETER CertificateCN
+ This parameter is MANDATORY.
+
+ There is NO DEFAULT VALUE supplied. If the user does not explicitly provide a value from the command line, then
+ the user will receive a prompt asking for a value to be provided.
+
+ This parameter takes a string that represents the name that you would like to give the New Certificate. This name will
+ appear in the following locations:
+ - "FriendlyName" field of the Certificate Request
+ - "Friendly name" field the New Certificate itself
+ - "Friendly Name" field when viewing the New Certificate in the Local Certificate Store
+ - "Subject" field of the Certificate Request
+ - "Subject" field on the New Certificate itself
+ - "Issued To" field when viewing the New Certificate in the Local Certificate Store
+
+ .PARAMETER CertificateRequestConfigFile
+ This parameter is MANDATORY.
+
+ There IS A DEFAULT VALUE supplied. If the user does not explicitly provide a value from the command line, then
+ the default value will be used.
+
+ This parameter takes a string that represents a file name to be used for the Certificate Request Configuration file
+ to be submitted to the Issuing Certificate Authority. File extension should be .inf.
+
+ IMPORTANT NOTE: Default values for some parameters are already provided, and running the Generate-Certificate script/
+ function will generate a New Certificate using these default values, however, the resulting Certificate
+ may not satisfy all of your needs depending on your circumstances. Please review the explanation for each of the
+ variables/parameters that can/should be changed.
+
+ .PARAMETER CertificateRequestFile
+ This parameter is MANDATORY.
+
+ There IS A DEFAULT VALUE supplied. If the user does not explicitly provide a value from the command line, then
+ the default value will be used.
+
+ This parameter takes a string that represents a file name to be used for the Certificate Request file to be submitted
+ to the Issuing Certificate Authority. File extension should be .csr.
+
+ IMPORTANT NOTE: Default values for some parameters are already provided, and running the Generate-Certificate script/
+ function will generate a New Certificate using these default values, however, the resulting Certificate
+ may not satisfy all of your needs depending on your circumstances. Please review the explanation for each of the
+ variables/parameters that can/should be changed.
+
+ .PARAMETER CertFileOut
+ This parameter is MANDATORY.
+
+ There IS A DEFAULT VALUE supplied. If the user does not explicitly provide a value from the command line, then
+ the default value will be used.
+
+ This parameter takes a string that represents a file name to be used for the New Public Certificate received from the
+ Issuing Certificate Authority. The file extension should be .cer.
+
+ IMPORTANT NOTE: Default values for some parameters are already provided, and running the Generate-Certificate script/
+ function will generate a New Certificate using these default values, however, the resulting Certificate
+ may not satisfy all of your needs depending on your circumstances. Please review the explanation for each of the
+ variables/parameters that can/should be changed.
+
+ .PARAMETER CertificateChainOut
+ This parameter is MANDATORY.
+
+ There IS A DEFAULT VALUE supplied. If the user does not explicitly provide a value from the command line, then
+ the default value will be used.
+
+ This parameter takes a string that represents a file name to be used for the Chain of Public Certificates from
+ the New Public Certificate up to the Root Certificate Authority. File extension should be .p7b.
+
+ IMPORTANT NOTE: File extension will be .p7b even if format is actually PKCS10 (which should have extension .p10).
+ This is to ensure that Microsoft Crypto Shell Extensions recognizes the file. (Some systems do not have .p10 associated
+ with Crypto Shell Extensions by default, leading to confusion).
+
+ IMPORTANT NOTE: Default values for some parameters are already provided, and running the Generate-Certificate script/
+ function will generate a New Certificate using these default values, however, the resulting Certificate
+ may not satisfy all of your needs depending on your circumstances. Please review the explanation for each of the
+ variables/parameters that can/should be changed.
+
+ .PARAMETER PFXFileOut
+ This parameter is MANDATORY.
+
+ There IS A DEFAULT VALUE supplied. If the user does not explicitly provide a value from the command line, then
+ the default value will be used.
+
+ This parameter takes a string that represents a file name to be used for the file containing both Public AND
+ Private Keys for the New Certificate. File extension should be .pfx.
+
+ IMPORTANT NOTE: Default values for some parameters are already provided, and running the Generate-Certificate script/
+ function will generate a New Certificate using these default values, however, the resulting Certificate
+ may not satisfy all of your needs depending on your circumstances. Please review the explanation for each of the
+ variables/parameters that can/should be changed.
+
+ .PARAMETER PFXPwdAsSecureString
+ This parameter is OPTIONAL.
+
+ This parameter takes a securestring.
+
+ In order to export a .pfx file from the Local Certificate Store, a password must be supplied (or permissions based on user accounts
+ must be configured beforehand, but this is outside the scope of this script).
+
+ ***IMPORTANT*** This same password is applied to $ProtectedPrivateKeyOut if $UseOpenSSL = "Yes"
+
+ .PARAMETER RequestViaWebEnrollment
+ This parameter is MANDATORY.
+
+ There IS A DEFAULT VALUE supplied. The default value is "No". If the user does not explicitly provide a value from
+ the command line, then the default value will be used.
+
+ This parameter takes one of two inputs:
+ 1) The string "No"; OR
+ 2) The string "Yes"
+
+ If this parameter is set to "No", then PowerShell cmdlets will be used that assume that the workstation
+ running this script is also joined to the same domain as the Issuing Certificate Authority. If this parameter is
+ set to "Yes", then the Invoke-WebRequest cmdlet will be used to POST data to the ADCS Web Enrollment website specified
+ by $ADCSWebEnrollmentUrl.
+
+ IMPORTANT NOTE: Default values for some parameters are already provided, and running the Generate-Certificate script/
+ function will generate a New Certificate using these default values, however, the resulting Certificate
+ may not satisfy all of your needs depending on your circumstances. Please review the explanation for each of the
+ variables/parameters that can/should be changed.
+
+ .PARAMETER ADCSWebEnrollmentURL
+ This parameter is OPTIONAL.
+
+ This parameter takes a string that represents a valid URL for the ADCS Web Enrollment website.
+ Example: https://pki.test.lab/certsrv
+
+ .PARAMETER ADCSWebAuthType
+ This parameter is OPTIONAL.
+
+ This parameter takes one of two inputs:
+ 1) The string "Windows"; OR
+ 2) The string "Basic"
+
+ The IIS Web Server hosting the ADCS Web Enrollment site can be configured to use Windows Authentication, Basic
+ Authentication, or both. Use this parameter to specify either "Windows" or "Basic" authentication.
+
+ .PARAMETER ADCSWebAuthUserName
+ This parameter is OPTIONAL.
+
+ This parameter takes a string that represents a username with permission to access the ADCS Web Enrollment site.
+ If $ADCSWebAuthType = "Basic", then INCLUDE the domain prefix as part of the username.
+ Example: test2\testadmin .
+
+ If $ADCSWebAuthType = "Windows", then DO NOT INCLUDE the domain prefix as part of the username.
+ Example: testadmin
+
+ (NOTE: If you mix up the above username formatting, then the script will figure it out. This is more of an FYI.)
+
+ .PARAMETER ADCSWebAuthPass
+ This parameter is OPTIONAL.
+
+ This parameter takes a securestring.
+
+ If $ADCSWebEnrollmentUrl is used, then this parameter becomes MANDATORY. Under this circumstance, if
+ this parameter is left blank, the user will be prompted for secure input. If using this script as part of a larger
+ automated process, use a wrapper function to pass this parameter securely (this is outside the scope of this script).
+
+ .PARAMETER CertADCSWebResponseOutFile
+ This parameter is MANDATORY.
+
+ There IS A DEFAULT VALUE supplied. If the user does not explicitly provide a value from the command line, then
+ the default value will be used.
+
+ This parameter takes a string that represents a valid file path that contains the HTTP response after submitting
+ the Certificate Request via the ADCS Web Enrollment site.
+
+ IMPORTANT NOTE: Default values for some parameters are already provided, and running the Generate-Certificate script/
+ function will generate a New Certificate using these default values, however, the resulting Certificate
+ may not satisfy all of your needs depending on your circumstances. Please review the explanation for each of the
+ variables/parameters that can/should be changed.
+
+ .PARAMETER Organization
+ This parameter is MANDATORY.
+
+ There is NO DEFAULT VALUE supplied. If the user does not explicitly provide a value from the command line, then
+ the user will receive a prompt asking for a value to be provided.
+
+ This parameter takes a string that represents an Organization name. This will be added to "Subject" field in the
+ Certificate.
+
+ .PARAMETER OriginationalUnit
+ This parameter is MANDATORY.
+
+ There is NO DEFAULT VALUE supplied. If the user does not explicitly provide a value from the command line, then
+ the user will receive a prompt asking for a value to be provided.
+
+ This parameter takes a string that represents an Organization's Department. This will be added to the "Subject" field
+ in the Certificate.
+
+ .PARAMETER Locality
+ This parameter is MANDATORY.
+
+ There is NO DEFAULT VALUE supplied. If the user does not explicitly provide a value from the command line, then
+ the user will receive a prompt asking for a value to be provided.
+
+ This parameter takes a string that represents a City. This will be added to the "Subject" field in the Certificate.
+
+ .PARAMETER State
+ This parameter is MANDATORY.
+
+ There is NO DEFAULT VALUE supplied. If the user does not explicitly provide a value from the command line, then
+ the user will receive a prompt asking for a value to be provided.
+
+ This parameter takes a string that represents a State. This will be added to the "Subject" field in the Certificate.
+
+ .PARAMETER Country
+ This parameter is MANDATORY.
+
+ There is NO DEFAULT VALUE supplied. If the user does not explicitly provide a value from the command line, then
+ the user will receive a prompt asking for a value to be provided.
+
+ This parameter takes a string that represents a Country. This will be added to the "Subject" field in the Certificate.
+
+ .PARAMETER KeyLength
+ This parameter is MANDATORY.
+
+ There IS A DEFAULT VALUE supplied (i.e. "2048"). If the user does not explicitly provide a value from the command line,
+ then the default value will be used.
+
+ This parameter takes a string representing a valid key length. See:
+ https://technet.microsoft.com/en-us/library/hh831574(v=ws.11).aspx
+
+ IMPORTANT NOTE: Default values for some parameters are already provided, and running the Generate-Certificate script/
+ function will generate a New Certificate using these default values, however, the resulting Certificate
+ may not satisfy all of your needs depending on your circumstances. Please review the explanation for each of the
+ variables/parameters that can/should be changed.
+
+ .PARAMETER HashAlgorithmValue
+ This parameter is MANDATORY.
+
+ There IS A DEFAULT VALUE supplied (i.e. "sha256"). If the user does not explicitly provide a value from the command line,
+ then the default value will be used.
+
+ This parameter takes a string. For a list of possible values, see:
+ https://technet.microsoft.com/en-us/library/hh831574(v=ws.11).aspx
+
+ IMPORTANT NOTE: Default values for some parameters are already provided, and running the Generate-Certificate script/
+ function will generate a New Certificate using these default values, however, the resulting Certificate
+ may not satisfy all of your needs depending on your circumstances. Please review the explanation for each of the
+ variables/parameters that can/should be changed.
+
+ .PARAMETER EncryptionAlgorithmValue
+ This parameter is MANDATORY.
+
+ There IS A DEFAULT VALUE supplied (i.e. "AES"). If the user does not explicitly provide a value from the command line,
+ then the default value will be used.
+
+ This parameter takes a string representing an available encryption algorithm. Valid values are:
+ AES, DES, RC2, and RC4
+
+ IMPORTANT NOTE: Default values for some parameters are already provided, and running the Generate-Certificate script/
+ function will generate a New Certificate using these default values, however, the resulting Certificate
+ may not satisfy all of your needs depending on your circumstances. Please review the explanation for each of the
+ variables/parameters that can/should be changed.
+
+ .PARAMETER PrivateKeyExportableValue
+ This parameter is MANDATORY.
+
+ There IS A DEFAULT VALUE supplied (i.e. "TRUE"). If the user does not explicitly provide a value from the command line,
+ then the default value will be used.
+
+ The parameter takes one of two inputs:
+ 1) The string "TRUE"; OR
+ 2) The string "FALSE"
+
+ Setting the value to TRUE means that the Private Key will be exportable.
+
+ IMPORTANT NOTE: Default values for some parameters are already provided, and running the Generate-Certificate script/
+ function will generate a New Certificate using these default values, however, the resulting Certificate
+ may not satisfy all of your needs depending on your circumstances. Please review the explanation for each of the
+ variables/parameters that can/should be changed.
+
+ .PARAMETER KeySpecValue
+ This parameter is MANDATORY.
+
+ There IS A DEFAULT VALUE supplied (i.e. "1"). If the user does not explicitly provide a value from the command line,
+ then the default value will be used.
+
+ The parameter takes one of two inputs:
+ 1) The string "1"; OR
+ 2) The string "2"
+
+ For details about Key Spec Values, see: https://technet.microsoft.com/en-us/library/hh831574(v=ws.11).aspx
+
+ IMPORTANT NOTE: Default values for some parameters are already provided, and running the Generate-Certificate script/
+ function will generate a New Certificate using these default values, however, the resulting Certificate
+ may not satisfy all of your needs depending on your circumstances. Please review the explanation for each of the
+ variables/parameters that can/should be changed.
+
+ .PARAMETER KeyUsageValue
+ This parameter is MANDATORY.
+
+ There IS A DEFAULT VALUE supplied (i.e. "0x80"). If the user does not explicitly provide a value from the command line,
+ then the default value will be used.
+
+ This parameter takes a string that represents a hexadecimal value. For a list of valid hexadecimal values,
+ see: https://technet.microsoft.com/en-us/library/hh831574(v=ws.11).aspx
+
+ IMPORTANT NOTE: Default values for some parameters are already provided, and running the Generate-Certificate script/
+ function will generate a New Certificate using these default values, however, the resulting Certificate
+ may not satisfy all of your needs depending on your circumstances. Please review the explanation for each of the
+ variables/parameters that can/should be changed.
+
+ .PARAMETER MachineKeySet
+ This parameter is MANDATORY.
+
+ There is NO DEFAULT VALUE supplied. If the user does not explicitly provide a value from the command line, then
+ the user will receive a prompt asking for a value to be provided.
+
+ This parameter takes one of two inputs:
+ 1) The string "TRUE"; OR
+ 2) The string "FALSE"
+
+ If you would like the private key exported, use "FALSE".
+ If you are creating this certificate to be used in the User's security context (like for a developer to sign their code),
+ enter "FALSE". If you are using this certificate for a service that runs in the Computer's security context (such as
+ a Web Server, Domain Controller, etc) and DO NOT need the Private Key exported use "TRUE".
+ See: https://technet.microsoft.com/en-us/library/hh831574(v=ws.11).aspx
+
+ .PARAMETER SecureEmail
+ This parameter is MANDATORY.
+
+ There is NO DEFAULT VALUE supplied. If the user does not explicitly provide a value from the command line, then
+ the user will receive a prompt asking for a value to be provided.
+
+ This parameter takes one of two inputs:
+ 1) The string "No"; OR
+ 2) The string "Yes"
+
+ If the New Certificate is going to be used to digitally sign and/or encrypt emails, this parameter should be set to "Yes"
+
+ .PARAMETER UserProtected
+ This parameter is MANDATORY.
+
+ There is NO DEFAULT VALUE supplied. If the user does not explicitly provide a value from the command line, then
+ the user will receive a prompt asking for a value to be provided.
+
+ This parameter takes one of two inputs:
+ 1) The string "No"; OR
+ 2) The string "Yes"
+
+ If $MachineKeySet is set to "TRUE", then $UserProtected MUST be set to "No". If $MachineKeySet is set to "FALSE",
+ then $UserProtected can be set to "Yes" or "No".
+
+ If set to "Yes", a CryptoAPI password window is displayed when the key is generated during the certificate request
+ build process. You can optionally protect the key with a password in the window or choose to display only a window when the
+ key is used within an application. Once the key is protected with a password, you must enter this password every time the key
+ is accessed.
+
+ IMPORTANT NOTE: Do not set this parameter to "Yes" if you want this script/function to run unattended.
+
+ .PARAMETER ProviderNameValue
+ This parameter is MANDATORY.
+
+ There IS A DEFAULT VALUE supplied (i.e. "Microsoft RSA SChannel Cryptographic Provider"). If the user does not explicitly provide a value from the command line,
+ then the default value will be used.
+
+ This parameter takes a string that represents the name of the Cryptographic Provider you would like to use for the
+ New Certificate. For more details and a list of valid values, see:
+ https://technet.microsoft.com/en-us/library/hh831574(v=ws.11).aspx
+
+ WARNING: The Certificate Template that this New Certificate is based on (i.e. the value provided for the parameter
+ $BasisTemplate) COULD POTENTIALLY limit the availble Crypographic Provders for the Certificate Request. Make sure
+ the Cryptographic Provider you use is allowed by the Basis Certificate Template.
+
+ IMPORTANT NOTE: Default values for some parameters are already provided, and running the Generate-Certificate script/
+ function will generate a New Certificate using these default values, however, the resulting Certificate
+ may not satisfy all of your needs depending on your circumstances. Please review the explanation for each of the
+ variables/parameters that can/should be changed.
+
+ .PARAMETER RequestTypeValue
+ This parameter is MANDATORY.
+
+ There IS A DEFAULT VALUE supplied (i.e. "PKCS10"). If the user does not explicitly provide a value from the command line,
+ then the default value will be used.
+
+ This parameter takes a string that indicates the format of the Certificate Request. Valid values are
+ CMC, PKCS10, PKCS10-, and PKCS7.
+ For more details, see: https://technet.microsoft.com/en-us/library/hh831574(v=ws.11).aspx
+
+ IMPORTANT NOTE: Default values for some parameters are already provided, and running the Generate-Certificate script/
+ function will generate a New Certificate using these default values, however, the resulting Certificate
+ may not satisfy all of your needs depending on your circumstances. Please review the explanation for each of the
+ variables/parameters that can/should be changed.
+
+ .PARAMETER IntendedPurposeValues
+ This parameter is OPTIONAL.
+
+ There is NO DEFAULT VALUE supplied. If the user does not explicitly provide a value from the command line, then
+ the user will receive a prompt asking for a value to be provided.
+
+ This parameter takes
+
+ This parameter takes a string of values separated by commas, or an array. Valid values are as follows:
+
+ "Code Signing","Document Signing","Client Authentication","Server Authentication",
+ "Remote Desktop","Private Key Archival","Directory Service Email Replication","Key Recovery Agent",
+ "OCSP Signing","Microsoft Trust List Signing","EFS","Secure E-mail","Enrollment Agent","Smart Card Logon",
+ "File Recovery","IPSec IKE Intermediate","KDC Authentication","Windows Update",
+ "Windows Third Party Application Component","Windows TCB Component","Windows Store",
+ "Windows Software Extension Verification","Windows RT Verification","Windows Kits Component",
+ "No OCSP Failover to CRL","Auto Update End Revocation","Auto Update CA Revocation","Revoked List Signer",
+ "Protected Process Verification","Protected Process Light Verification","Platform Certificate",
+ "Microsoft Publisher","Kernel Mode Code Signing","HAL Extension","Endorsement Key Certificate",
+ "Early Launch Antimalware Driver","Dynamic Code Generator","DNS Server Trust","Document Encryption",
+ "Disallowed List","Attestation Identity Key Certificate","System Health Authentication","CTL Usage",
+ "IP Security End System","IP Security Tunnel Termination","IP Security User","Time Stamping",
+ "Microsoft Time Stamping","Windows Hardware Driver Verification","Windows System Component Verification",
+ "OEM Windows System Component Verification","Embedded Windows System Component Verification","Root List Signer",
+ "Qualified Subordination","Key Recovery","Lifetime Signing","Key Pack Licenses","License Server Verification"
+
+ ***IMPORTANT NOTE:*** If this parameter is not set by user, the Intended Purpose Value(s) of the Basis Certificate Template
+ (i.e. $BasisTemplate) will be used.
+
+ .PARAMETER UseOpenSSL
+ This parameter is MANDATORY.
+
+ There IS A DEFAULT VALUE supplied (i.e. "No"). If the user does not explicitly provide a value from the command line,
+ then the default value will be used.
+
+ The parameter takes one of two inputs:
+ 1) The string "No"; OR
+ 2) The string "Yes"
+
+ This parameter indicates whether the Win32 OpenSSL binary should be used to extract
+ certificates/keys in a format readily used in Linux environments.
+
+ IMPORTANT NOTE: Default values for some parameters are already provided, and running the Generate-Certificate script/
+ function will generate a New Certificate using these default values, however, the resulting Certificate
+ may not satisfy all of your needs depending on your circumstances. Please review the explanation for each of the
+ variables/parameters that can/should be changed.
+
+ .PARAMETER PathToWin32OpenSSL
+ This parameter is OPTIONAL.
+
+ There IS A DEFAULT VALUE supplied (i.e. "C:\openssl-0.9.8r-i386-win32-rev2"). If the user does not explicitly provide
+ a value from the command line, then the default value will be used.
+
+ This parameter takes a string that represents a file path to the Win32 OpenSSL binaries on your filesystem.
+ (Recommend using latest version from https://indy.fulgan.com/SSL/)
+
+ This parameter becomes MANDATORY if the parameter $UseOpenSSL = "Yes"
+
+ IMPORTANT NOTE: Default values for some parameters are already provided, and running the Generate-Certificate script/
+ function will generate a New Certificate using these default values, however, the resulting Certificate
+ may not satisfy all of your needs depending on your circumstances. Please review the explanation for each of the
+ variables/parameters that can/should be changed.
+
+ .PARAMETER AllPublicKeysInChainOut
+ This parameter is OPTIONAL.
+
+ There IS A DEFAULT VALUE supplied (i.e. "NewCertificate_$CertificateCN"+"_all_public_keys_in_chain_"+".pem"). If the
+ user does not explicitly provide a value from the command line, then the default value will be used.
+
+ This parameter takes a string that represents a file name. This file will contain all public certificates in the chain,
+ rom the New Certificate up to the Root Certificate Authority. File extension should be .pem
+
+ This parameter becomes MANDATORY if the parameter $UseOpenSSL = "Yes"
+
+ IMPORTANT NOTE: Default values for some parameters are already provided, and running the Generate-Certificate script/
+ function will generate a New Certificate using these default values, however, the resulting Certificate
+ may not satisfy all of your needs depending on your circumstances. Please review the explanation for each of the
+ variables/parameters that can/should be changed.
+
+ .PARAMETER ProtectedPrivateKeyOut
+ This parameter is OPTIONAL.
+
+ There IS A DEFAULT VALUE supplied (i.e. "NewCertificate_$CertificateCN"+"_protected_private_key_"+".pem"). If the
+ user does not explicitly provide a value from the command line, then the default value will be used.
+
+ This parameter takes a string that represents a file name. This file will contain the password-protected private key
+ for the New Certificate. File extension should be .pem
+
+ This parameter becomes MANDATORY if the parameter $UseOpenSSL = "Yes"
+
+ IMPORTANT NOTE: Default values for some parameters are already provided, and running the Generate-Certificate script/
+ function will generate a New Certificate using these default values, however, the resulting Certificate
+ may not satisfy all of your needs depending on your circumstances. Please review the explanation for each of the
+ variables/parameters that can/should be changed.
+
+ .PARAMETER UnProtectedPrivateKeyOut
+ This parameter is OPTIONAL.
+
+ There IS A DEFAULT VALUE supplied (i.e. "NewCertificate_$CertificateCN"+"_unprotected_private_key_"+".key"). If the
+ user does not explicitly provide a value from the command line, then the default value will be used.
+
+ This parameter takes a string that represents a file name. This file will contain the raw private key for the New
+ Certificate. File extension should be .key
+
+ This parameter becomes MANDATORY if the parameter $UseOpenSSL = "Yes"
+
+ IMPORTANT NOTE: Default values for some parameters are already provided, and running the Generate-Certificate script/
+ function will generate a New Certificate using these default values, however, the resulting Certificate
+ may not satisfy all of your needs depending on your circumstances. Please review the explanation for each of the
+ variables/parameters that can/should be changed.
+
+ .PARAMETER StripPrivateKeyOfPassword
+ This parameter is OPTIONAL.
+
+ There IS A DEFAULT VALUE supplied (i.e. "No"). If the user does not explicitly provide a value from the command line,
+ then the default value will be used.
+
+ The parameter takes one of two inputs:
+ 1) The string "No"; OR
+ 2) The string "Yes"
+
+ This parameter removes the password from $ProtectedPrivateKeyOut.
+
+ This parameter becomes MANDATORY if the parameter $UseOpenSSL = "Yes"
+
+ IMPORTANT NOTE: Default values for some parameters are already provided, and running the Generate-Certificate script/
+ function will generate a New Certificate using these default values, however, the resulting Certificate
+ may not satisfy all of your needs depending on your circumstances. Please review the explanation for each of the
+ variables/parameters that can/should be changed.
+
+ .PARAMETER SANObjectsToAdd
+ This parameter is OPTIONAL.
+
+ This parameter takes a comma separated list of SAN Object Types. All possible values are:
+ DNS, Distinguished Name, URL, IP Address, Email, UPN, or GUID.
+ Example: DNS, IP Address, Email
+
+ This parameter becomes MANDATORY if $AddSAN = "Yes"
+
+ .PARAMETER DNSSANObjects
+ This parameter is OPTIONAL.
+
+ This parameter takes a comma separated list of DNS addresses.
+ Example: www.fabrikam.com, www.contoso.com
+
+ This parameter becomes MANDATORY if $SANObjectsToAdd includes "DNS"
+
+ .PARAMETER DistinguishedNameSANObjects
+ This parameter is OPTIONAL.
+
+ This parameter takes a SEMI-COLON separated list of Distinguished Name objects.
+ Example: CN=www01,OU=Web Servers,DC=fabrikam,DC=com; CN=www01,OU=Load Balancers,DC=fabrikam,DC=com
+
+ This parameter becomes MANDATORY if $SANObjectsToAdd includes "Distinguished Name"
+
+ .PARAMETER URLSANObjects
+ This parameter is OPTIONAL.
+
+ This parameter takes a comma separated list of URLs.
+ Example: http://www.fabrikam.com, http://www.contoso.com
+
+ This parameter becomes MANDATORY if $SANObjectsToAdd includes "URL"
+
+ .PARAMETER IPAddressSANObjects
+ This parameter is OPTIONAL.
+
+ This parameter takes a comma separated list of IP Addresses.
+ Example: 172.31.10.13, 192.168.2.125
+
+ This parameter becomes MANDATORY if $SANObjectsToAdd includes "IP Address"
+
+ .PARAMETER EmailSANObjects
+ This parameter is OPTIONAL.
+
+ This paramter takes a comma separated list of Email Addresses.
+ Example: mike@fabrikam.com, hazem@fabrikam.com
+
+ This parameter becomes MANDATORY if $SANObjectsToAdd includes "Email"
+
+ .PARAMETER UPNSANObjects
+ This parameter is OPTIONAL.
+
+ This parameter takes a comma separated list of Principal Name objects.
+ Example: mike@fabrikam.com, hazem@fabrikam.com
+
+ This parameter becomes MANDATORY if $SANObjectsToAdd includes "UPN"
+
+ .PARAMETER GUIDSANObjects
+ This parameter is OPTIONAL.
+
+ This parameter takes a comma separated list of GUIDs.
+ Example: f7c3ac41-b8ce-4fb4-aa58-3d1dc0e36b39, g8D4ac41-b8ce-4fb4-aa58-3d1dc0e47c48
+
+ This parameter becomes MANDATORY if $SANObjectsToAdd includes "GUID"
+
+ .EXAMPLE
+ EXAMPLE 1: No Parameters Provided
+ Generate-Certificate
+
+ NOTE: Executing the script/function without any parameters will ask for input on de facto mandatory parameters.
+ All other parameters will use default values which should be fine under the vast majority of circumstances.
+ De facto mandatory parameters are as follows:
+ -CertGenWorking
+ -BasisTemplate
+ -CertificateCN
+ -Organization
+ -OrganizationalUnit
+ -Locality
+ -State
+ -Country
+ -MachineKeySet
+ -SecureEmail
+ -UserProtected
+
+ .EXAMPLE
+ EXAMPLE 2: Minimal Parameters Provided
+ Generate-Certificate `
+ -CertGenWorking "C:\Users\zeroadmin\Desktop\CertGenWorking\test8" `
+ -BasisTemplate "CertTempl166" `
+ -CertificateCN "TigerSigningCert" `
+ -Organization "Contoso Inc" `
+ -OrganizationalUnit "DevOps Department" `
+ -Locality "Portland" `
+ -State "OR" `
+ -Country "US" `
+ -MachineKeySet "TRUE" `
+ -SecureEmail "No" `
+ -UserProtected "No" `
+
+ .EXAMPLE
+ EXAMPLE 3: Minimal Parameters Provided with Win32 OpenSSL
+ Generate-Certificate `
+ -CertGenWorking "C:\Users\zeroadmin\Desktop\CertGenWorking\test8" `
+ -BasisTemplate "CertTempl166" `
+ -CertificateCN "TigerSigningCert" `
+ -PFXFileOut "TigerSigningCert.pfx" `
+ -PFXPwdAsSecureString "ThisIsNotSecure987!" `
+ -Organization "Contoso Inc" `
+ -OrganizationalUnit "DevOps Department" `
+ -Locality "Portland" `
+ -State "OR" `
+ -Country "US" `
+ -MachineKeySet "FALSE" `
+ -SecureEmail "No" `
+ -UserProtected "No" `
+ -UseOpenSSL "Yes" `
+ -PathToWin32OpenSSL "C:\openssl-0.9.8r-i386-win32-rev2" `
+ -AllPublicKeysInChainOut "TigerSigningCert_all_public_keys_in_chain.pem" `
+ -PublicKeySansChainOutFile "TigerSigningCert_public_key_sans_chain.pem" `
+ -ProtectedPrivateKeyOut "TigerSigningCert_protected_private_key.pem" `
+ -UnProtectedPrivateKeyOut "TigerSigningCert_unprotected_private_key.key" `
+ -StripPrivateKeyOfPassword "Yes"
+
+ .EXAMPLE
+ EXAMPLE 4: All Possible Parameters
+ Generate-Certificate `
+ -CertGenWorking "C:\Users\zeroadmin\Desktop\CertGenWorking\test8" `
+ -BasisTemplate "CertTempl166" `
+ -CertificateCN "TigerSigningCert" `
+ -CertificateRequestConfigFile "TigerSigningCert.inf" `
+ -CertificateRequestFile "TigerSigningCert.csr" `
+ -CertFileOut "TigerSigningCert.cer" `
+ -CertificateChainOut "TigerSigningCert.p7b" `
+ -PFXFileOut "TigerSigningCert.pfx" `
+ -PFXPwdAsSecureString "ThisIsNotSecure987!" `
+ -RequestViaWebEnrollment "Yes" `
+ -ADCSWebEnrollmentURL "https://pki.test2.lab/certsrv" `
+ -ADCSWebAuthType "Windows" `
+ -ADCSWebAuthUserName "testadmin" `
+ -ADCSWebAuthPass "SecurityIsHard321!" `
+ -CertADCSWebResponseOutFile "C:\Users\zeroadmin\Desktop\CertGenWorking\test8\ADCSWebResponse.txt"
+ -Organization "Contoso Inc" `
+ -OrganizationalUnit "DevOps Department" `
+ -Locality "Portland" `
+ -State "OR" `
+ -Country "US" `
+ -KeyLengthOverride "No" `
+ -KeyLength "2048" `
+ -HashAlgorithmOverride "No" `
+ -HashAlgorithmValue "sha256" `
+ -EncryptionAlgorithmOverride "No" `
+ -EncryptionAlgorithmValue "AES" `
+ -PrivateKeyExportableOverride "No" `
+ -PrivateKeyExportableValue "TRUE" `
+ -KeySpecOverride "No" `
+ -KeySpecValue "1" `
+ -KeyUsageOverride "No" `
+ -KeyUsageValue "0x80" `
+ -MachineKeySet "FALSE" `
+ -SecureEmail "No" `
+ -UserProtected "No" `
+ -ProviderNameOverride "No" `
+ -ProviderNameValue "Microsoft Enhanced Cryptographic Provider v1.0" `
+ -RequestTypeOverride "No" `
+ -RequestTypeValue "PKCS10" `
+ -IntendedPurposeOverride "No" `
+ -IntendedPurposeValues "Code Signing, Document Signing" `
+ -UseOpenSSL "Yes" `
+ -PathToWin32OpenSSL "C:\openssl-0.9.8r-i386-win32-rev2" `
+ -AllPublicKeysInChainOut "TigerSigningCert_all_public_keys_in_chain.pem" `
+ -PublicKeySansChainOutFile "TigerSigningCert_public_key_sans_chain.pem" `
+ -ProtectedPrivateKeyOut "TigerSigningCert_protected_private_key.pem" `
+ -UnProtectedPrivateKeyOut "TigerSigningCert_unprotected_private_key.key" `
+ -StripPrivateKeyOfPassword "Yes" `
+ -AddSAN "Yes"
+ -TypesofSANObjectsToAdd "DNS, Distinguished Name, URL, IP Address, UPN, GUID"
+ -DNSSANObjects "www.fabrikam.com, www.contoso.org"
+ -DistinguishedNameSANObjects "CN=www01,OU=Web Servers,DC=fabrikam,DC=com; CN=www01,OU=Load Balancers,DC=fabrikam,DC=com"
+ -URLSANObjects "http://www.fabrikam.com, http://www.contoso.com"
+ -IPAddressSANObjects "172.31.10.13, 192.168.2.125"
+ -EmailSANObjects "mike@fabrikam.com, hazem@fabrikam.com"
+ -UPNSANObjects "mike@fabrikam.com, hazem@fabrikam.com"
+ -GUIDSANObjects "f7c3ac41-b8ce-4fb4-aa58-3d1dc0e36b39, g8D4ac41-b8ce-4fb4-aa58-3d1dc0e47c48"
+
+ .OUTPUTS
+ All outputs are written to the $CertGenWorking directory specified by the user.
+
+ ALWAYS GENERATED
+ The following outputs are ALWAYS generated by this function/script, regardless of optional parameters:
+ - A Certificate Request Configuration File (with .inf file extension) -
+ RELEVANT PARAMETER: $CertificateRequestConfigFile
+ - A Certificate Request File (with .csr file extenstion) -
+ RELEVANT PARAMETER: $CertificateRequestFile
+ - A Public Certificate with the New Certificate Name (NewCertificate_$CertificateCN_[Timestamp].cer) -
+ RELEVANT PARAMETER: $CertFileOut
+ NOTE: This file is not explicitly generated by the script. Rather, it is received from the Issuing Certificate Authority after
+ the Certificate Request is submitted and accepted by the Issuing Certificate Authority.
+ NOTE: If you choose to use Win32 OpenSSL to extract certs/keys from the .pfx file (see below), this file should have SIMILAR CONTENT
+ to the file $PublicKeySansChainOutFile. To clarify, $PublicKeySansChainOutFile does NOT have what appear to be extraneous newlines,
+ but $CertFileOut DOES. Even though $CertFileOut has what appear to be extraneous newlines, Microsoft Crypto Shell Extensions will
+ be able to read both files as if they were the same. However, Linux machines will need to use $PublicKeySansChainOutFile (Also, the
+ file extension for $PublicKeySansChainOutFile can safely be changed from .cer to .pem without issue)
+ - A Global HashTable called $GenerateCertificateFileOutputHash that can help the user quickly and easily reference output
+ files in $CertGenWorking. Example content of $GenerateCertificateFileOutputHash:
+
+ Key : CertificateRequestFile
+ Value : NewCertRequest_aws-coreos3-client-server-cert04-Sep-2016_2127.csr
+ Name : CertificateRequestFile
+
+ Key : IntermediateCAPublicCertFile
+ Value : ZeroSCA_Public_Cert.pem
+ Name : IntermediateCAPublicCertFile
+
+ Key : EndPointPublicCertFile
+ Value : aws-coreos3-client-server-cert_Public_Cert.pem
+ Name : EndPointPublicCertFile
+
+ Key : AllPublicKeysInChainOut
+ Value : NewCertificate_aws-coreos3-client-server-cert_all_public_keys_in_chain_.pem
+ Name : AllPublicKeysInChainOut
+
+ Key : CertificateRequestConfigFile
+ Value : NewCertRequestConfig_aws-coreos3-client-server-cert04-Sep-2016_2127.inf
+ Name : CertificateRequestConfigFile
+
+ Key : EndPointUnProtectedPrivateKey
+ Value : NewCertificate_aws-coreos3-client-server-cert_unprotected_private_key_.key
+ Name : EndPointUnProtectedPrivateKey
+
+ Key : RootCAPublicCertFile
+ Value : ZeroDC01_Public_Cert.pem
+ Name : RootCAPublicCertFile
+
+ Key : CertADCSWebResponseOutFile
+ Value : NewCertificate_aws-coreos3-client-server-cert_ADCSWebResponse04-Sep-2016_2127.txt
+ Name : CertADCSWebResponseOutFile
+
+ Key : CertFileOut
+ Value : NewCertificate_aws-coreos3-client-server-cert04-Sep-2016_2127.cer
+ Name : CertFileOut
+
+ Key : PFXFileOut
+ Value : NewCertificate_aws-coreos3-client-server-cert04-Sep-2016_2127.pfx
+ Name : PFXFileOut
+
+ Key : EndPointProtectedPrivateKey
+ Value : NewCertificate_aws-coreos3-client-server-cert_protected_private_key_.pem
+ Name : EndPointProtectedPrivateKey
+
+ - A Global HashTable called $CertNamevsContentsHash that contains the actual content of certain Certificates.
+ Example content of $CertNamevsContentsHash is as follows:
+
+ Key : EndPointUnProtectedPrivateKey
+ Value : -----BEGIN RSA PRIVATE KEY-----
+ ...
+ -----END RSA PRIVATE KEY-----
+ Name : EndPointUnProtectedPrivateKey
+
+ Key : aws-coreos3-client-server-cert
+ Value : -----BEGIN CERTIFICATE-----
+ ...
+ -----END CERTIFICATE-----
+ Name : aws-coreos3-client-server-cert
+
+ Key : ZeroSCA
+ Value : -----BEGIN CERTIFICATE-----
+ ...
+ -----END CERTIFICATE-----
+ Name : ZeroSCA
+
+ Key : ZeroDC01
+ Value : -----BEGIN CERTIFICATE-----
+ ...
+ -----END CERTIFICATE-----
+ Name : ZeroDC01
+
+ GENERATED WHEN $MachineKeySet = "FALSE"
+ The following outputs are ONLY generated by this function/script when $MachineKeySet = "FALSE" (this is its default setting)
+ - A .pfx File Containing the Entire Public Certificate Chain AS WELL AS the Private Key of your New Certificate (with .pfx file extension) -
+ RELEVANT PARAMETER: $PFXFileOut
+ NOTE: The Private Key must be marked as exportable in your Certificate Request Configuration File in order for the .pfx file to
+ contain the private key. This is controlled by the parameter $PrivateKeyExportableValue = "TRUE". The Private Key is marked as
+ exportable by default.
+
+ GENERATED WHEN $ADCSWebEnrollmentUrl is NOT provided
+ The following outputs are ONLY generated by this function/script when $ADCSWebEnrollmentUrl is NOT provided (this is its default setting)
+ (NOTE: Under this scenario, the workstation running the script must be part of the same domain as the Issuing Certificate Authority):
+ - A Certificate Request Response File (with .rsp file extension)
+ NOTE: This file is not explicitly generated by the script. Rather, it is received from the Issuing Certificate Authority after
+ the Certificate Request is submitted
+ - A Certificate Chain File (with .p7b file extension) -
+ RELEVANT PARAMETER: $CertificateChainOut
+ NOTE: This file is not explicitly generated by the script. Rather, it is received from the Issuing Certificate Authority after
+ the Certificate Request is submitted and accepted by the Issuing Certificate Authority
+ NOTE: This file contains the entire chain of public certificates, from the requested certificate, up to the Root CA
+ WARNING: In order to parse the public certificates for each entity up the chain, you MUST use the Crypto Shell Extensions GUI,
+ otherwise, if you look at this content with a text editor, it appears as only one (1) public certificate. Use the OpenSSL
+ Certificate Chain File ($AllPublicKeysInChainOut) optional output in order to view a text file that parses each entity's public certificate.
+
+ GENERATED WHEN $ADCSWebEnrollmentUrl IS provided
+ The following outputs are ONLY generated by this function/script when $ADCSWebEnrollmentUrl IS provided
+ (NOTE: Under this scenario, the workstation running the script is sending a web request to the ADCS Web Enrollment website):
+ - An File Containing the HTTP Response From the ADCS Web Enrollment Site (with .txt file extension) -
+ RELEVANT PARAMETER: $CertADCSWebResponseOutFile
+
+ GENERATED WHEN $UseOpenSSL = "Yes"
+ The following outputs are ONLY generated by this function/script when $UseOpenSSL = "Yes"
+ (WARNING: This creates a Dependency on a third party Win32 OpenSSL binary that can be found here: https://indy.fulgan.com/SSL/
+ For more information, see the DEPENDENCIES Section below)
+ - A Certificate Chain File (ending with "all_public_keys_in_chain.pem") -
+ RELEVANT PARAMETER: $AllPublicKeysInChainOut
+ NOTE: This optional parameter differs from the aforementioned .p7b certificate chain output in that it actually parses
+ each entity's public certificate in a way that is viewable in a text editor.
+ - EACH Public Certificate in the Certificate Chain File (file name like [Certificate CN]_Public_Cert.cer)
+ - A Public Certificate with the New Certificate Name ($CertificateCN_Public_Cert.cer) -
+ RELEVANT PARAMETER: $PublicKeySansChainOutFile
+ NOTE: This file should have SIMILAR CONTENT to $CertFileOut referenced earlier. To clarify, $PublicKeySansChainOutFile does NOT have
+ what appear to be extraneous newlines, but $CertFileOut DOES. Even though $CertFileOut has what appear to be extraneous newlines, Microsoft Crypto Shell Extensions will
+ be able to read both files as if they were the same. However, Linux machines will need to use $PublicKeySansChainOutFile (Also, the
+ file extension for $PublicKeySansChainOutFile can safely be changed from .cer to .pem without issue)
+ - Additional Public Certificates in Chain including [Subordinate CA CN]_Public_Cert.cer and [Root CA CN]_Public_Cert.cer
+ - A Password Protected Private Key file (ending with "protected_private_key.pem") -
+ RELEVANT PARAMETER: $ProtectedPrivateKeyOut
+ NOTE: This is the New Certificate's Private Key that is protected by a password defined by the $PFXPwdAsSecureString parameter.
+
+ GENERATED WHEN $UseOpenSSL = "Yes" AND $StripPrivateKeyOfPassword = "Yes"
+ - An Unprotected Private Key File (ends with unprotected_private_key.key) -
+ RELEVANT PARAMETER: $UnProtectedPrivateKeyOut
+
+#>
+function Generate-Certificate {
+ [CmdletBinding()]
+ Param(
+ [Parameter(Mandatory=$False)]
+ [string]$CertGenWorking = "$HOME\Downloads\CertGenWorking",
+
+ [Parameter(Mandatory=$False)]
+ [string]$BasisTemplate,
+
+ [Parameter(Mandatory=$False)]
+ [string]$CertificateCN = $(Read-Host -Prompt "Please enter the Name that you would like your Certificate to have
+ For a Computer/Client/Server Certificate, recommend using host FQDN)"),
+
+ # This function creates the $CertificateRequestConfigFile. It should NOT exist prior to running this function
+ [Parameter(Mandatory=$False)]
+ [string]$CertificateRequestConfigFile = "NewCertRequestConfig_$CertificateCN"+$(Get-Date -format 'dd-MMM-yyyy_HHmm')+".inf",
+
+ # This function creates the $CertificateRequestFile. It should NOT exist prior to running this function
+ [Parameter(Mandatory=$False)]
+ [string]$CertificateRequestFile = "NewCertRequest_$CertificateCN"+$(Get-Date -format 'dd-MMM-yyyy_HHmm')+".csr",
+
+ # This function creates $CertFileOut. It should NOT exist prior to running this function
+ [Parameter(Mandatory=$False)]
+ [string]$CertFileOut = "NewCertificate_$CertificateCN"+$(Get-Date -format 'dd-MMM-yyyy_HHmm')+".cer",
+
+ # This function creates the $CertificateChainOut. It should NOT exist prior to running this function
+ [Parameter(Mandatory=$False)]
+ [string]$CertificateChainOut = "NewCertificateChain_$CertificateCN"+$(Get-Date -format 'dd-MMM-yyyy_HHmm')+".p7b",
+
+ # This function creates the $PFXFileOut. It should NOT exist prior to running this function
+ [Parameter(Mandatory=$False)]
+ [string]$PFXFileOut = "NewCertificate_$CertificateCN"+$(Get-Date -format 'dd-MMM-yyyy_HHmm')+".pfx",
+
+ [Parameter(Mandatory=$False)]
+ [securestring]$PFXPwdAsSecureString,
+
+ # If the workstation being used to request the certificate is part of the same domain as the Issuing Certificate Authority, we can identify
+ # the Issuing Certificate Authority with certutil, so there is no need to set an $IssuingCertificateAuth Parameter
+ #[Parameter(Mandatory=$False)]
+ #$IssuingCertAuth = $(Read-Host -Prompt "Please enter the FQDN the server responsible for Issuing New Certificates."),
+
+ [Parameter(Mandatory=$False)]
+ [ValidatePattern("certsrv$")]
+ [string]$ADCSWebEnrollmentUrl, # Example: https://pki.zero.lab/certsrv"
+
+ [Parameter(Mandatory=$False)]
+ [ValidateSet("Windows","Basic")]
+ [string]$ADCSWebAuthType,
+
+ [Parameter(Mandatory=$False)]
+ [string]$ADCSWebAuthUserName,
+
+ [Parameter(Mandatory=$False)]
+ [securestring]$ADCSWebAuthPass,
+
+ [Parameter(Mandatory=$False)]
+ [System.Management.Automation.PSCredential]$ADCSWebCreds,
+
+ # This function creates the $CertADCSWebResponseOutFile file. It should NOT exist prior to running this function
+ [Parameter(Mandatory=$False)]
+ [string]$CertADCSWebResponseOutFile = "NewCertificate_$CertificateCN"+"_ADCSWebResponse"+$(Get-Date -format 'dd-MMM-yyyy_HHmm')+".txt",
+
+ [Parameter(Mandatory=$False)]
+ $Organization = $(Read-Host -Prompt "Please enter the name of the the Company that will appear on the New Certificate"),
+
+ [Parameter(Mandatory=$False)]
+ $OrganizationalUnit = $(Read-Host -Prompt "Please enter the name of the Department that you work for within your Company"),
+
+ [Parameter(Mandatory=$False)]
+ $Locality = $(Read-Host -Prompt "Please enter the City where your Company is located"),
+
+ [Parameter(Mandatory=$False)]
+ $State = $(Read-Host -Prompt "Please enter the State where your Company is located"),
+
+ [Parameter(Mandatory=$False)]
+ $Country = $(Read-Host -Prompt "Please enter the Country where your Company is located"),
+
+ <#
+ # ValidityPeriod is controlled by the Certificate Template and cannot be modified at the time of certificate request
+ # (Unless it is a special circumstance where "RequestType = Cert" resulting in a self-signed cert where no request
+ # is actually submitted)
+ [Parameter(Mandatory=$False)]
+ $ValidityPeriodValue = $(Read-Host -Prompt "Please enter the length of time that the certificate will be valid for.
+ NOTE: Values must be in Months or Years. For example '6 months' or '2 years'"),
+ #>
+
+ [Parameter(Mandatory=$False)]
+ [ValidateSet("2048","4096")]
+ $KeyLength = "2048",
+
+ [Parameter(Mandatory=$False)]
+ [ValidateSet("SHA1","SHA256","SHA384","SHA512","MD5","MD4","MD2")]
+ $HashAlgorithmValue = "SHA256",
+
+ <#
+ # KeyAlgorithm should be determined by ProviderName. Run "certutil -csplist" to see which Providers use which Key Algorithms
+ [Parameter(Mandatory=$False)]
+ [ValidateSet("RSA","DH","DSA","ECDH_P256","ECDH_P521","ECDSA_P256","ECDSA_P384","ECDSA_P521")]
+ $KeyAlgorithmValue,
+ #>
+
+ [Parameter(Mandatory=$False)]
+ [ValidateSet("AES","DES","3DES","RC2","RC4")]
+ $EncryptionAlgorithmValue = "AES",
+
+ [Parameter(Mandatory=$False)]
+ [ValidateSet("True","False")]
+ $PrivateKeyExportableValue = "True",
+
+ # Valid values are '1' for AT_KEYEXCHANGE and '2' for AT_SIGNATURE [1,2]"
+ [Parameter(Mandatory=$False)]
+ [ValidateSet("1","2")]
+ $KeySpecValue = "1",
+
+ <#
+ The below $KeyUsageValue is the HEXADECIMAL SUM of the KeyUsage hexadecimal values you would like to use.
+
+ A valid value is the hex sum of one or more of following:
+ CERT_DIGITAL_SIGNATURE_KEY_USAGE = 80
+ CERT_NON_REPUDIATION_KEY_USAGE = 40
+ CERT_KEY_ENCIPHERMENT_KEY_USAGE = 20
+ CERT_DATA_ENCIPHERMENT_KEY_USAGE = 10
+ CERT_KEY_AGREEMENT_KEY_USAGE = 8
+ CERT_KEY_CERT_SIGN_KEY_USAGE = 4
+ CERT_OFFLINE_CRL_SIGN_KEY_USAGE = 2
+ CERT_CRL_SIGN_KEY_USAGE = 2
+ CERT_ENCIPHER_ONLY_KEY_USAGE = 1
+
+ Commonly Used Values:
+ 'c0' (i.e. 80+40)
+ 'a0' (i.e. 80+20)
+ 'f0' (i.e. 80+40+20+10)
+ '30' (i.e. 20+10)
+ '80'
+ #>
+ [Parameter(Mandatory=$False)]
+ [ValidateSet("1","10","11","12","13","14","15","16","17","18","2","20","21","22","23","24","25","26","27","28","3","30","38","4","40",
+ "41","42","43","44","45","46","47","48","5","50","58","6","60","68","7","70","78","8","80","81","82","83","84","85","86","87","88","9","90",
+ "98","a","a0","a8","b","b0","b8","c","c0","c","8","d","d0","d8","e","e0","e8","f","f0","f8")]
+ $KeyUsageValue = "80",
+
+ [Parameter(Mandatory=$False)]
+ [ValidateSet("True","False")]
+ $MachineKeySet = "False",
+
+ [Parameter(Mandatory=$False)]
+ [ValidateSet("Yes","No")]
+ $SecureEmail = "No",
+
+ [Parameter(Mandatory=$False)]
+ [ValidateSet("True","False")]
+ $UserProtected = "False",
+
+ [Parameter(Mandatory=$False)]
+ [ValidateSet("Microsoft Base Cryptographic Provider v1.0","Microsoft Base DSS and Diffie-Hellman Cryptographic Provider",
+ "Microsoft Base DSS Cryptographic Provider","Microsoft Base Smart Card Crypto Provider",
+ "Microsoft DH SChannel Cryptographic Provider","Microsoft Enhanced Cryptographic Provider v1.0",
+ "Microsoft Enhanced DSS and Diffie-Hellman Cryptographic Provider",
+ "Microsoft Enhanced RSA and AES Cryptographic Provider","Microsoft RSA SChannel Cryptographic Provider",
+ "Microsoft Strong Cryptographic Provider","Microsoft Software Key Storage Provider",
+ "Microsoft Passport Key Storage Provider")]
+ [string]$ProviderNameValue = "Microsoft RSA SChannel Cryptographic Provider",
+
+ [Parameter(Mandatory=$False)]
+ [ValidateSet("CMC", "PKCS10", "PKCS10-", "PKCS7")]
+ $RequestTypeValue = "PKCS10",
+
+ [Parameter(Mandatory=$False)]
+ [ValidateSet("Code Signing","Document Signing","Client Authentication","Server Authentication",
+ "Remote Desktop","Private Key Archival","Directory Service Email Replication","Key Recovery Agent",
+ "OCSP Signing","Microsoft Trust List Signing","EFS","Secure E-mail","Enrollment Agent","Smart Card Logon",
+ "File Recovery","IPSec IKE Intermediate","KDC Authentication","Windows Update",
+ "Windows Third Party Application Component","Windows TCB Component","Windows Store",
+ "Windows Software Extension Verification","Windows RT Verification","Windows Kits Component",
+ "No OCSP Failover to CRL","Auto Update End Revocation","Auto Update CA Revocation","Revoked List Signer",
+ "Protected Process Verification","Protected Process Light Verification","Platform Certificate",
+ "Microsoft Publisher","Kernel Mode Code Signing","HAL Extension","Endorsement Key Certificate",
+ "Early Launch Antimalware Driver","Dynamic Code Generator","DNS Server Trust","Document Encryption",
+ "Disallowed List","Attestation Identity Key Certificate","System Health Authentication","CTL Usage",
+ "IP Security End System","IP Security Tunnel Termination","IP Security User","Time Stamping",
+ "Microsoft Time Stamping","Windows Hardware Driver Verification","Windows System Component Verification",
+ "OEM Windows System Component Verification","Embedded Windows System Component Verification","Root List Signer",
+ "Qualified Subordination","Key Recovery","Lifetime Signing","Key Pack Licenses","License Server Verification")]
+ [string[]]$IntendedPurposeValues,
+
+ [Parameter(Mandatory=$False)]
+ [ValidateSet("Yes","No")]
+ $UseOpenSSL = "Yes",
+
+ [Parameter(Mandatory=$False)]
+ [string]$AllPublicKeysInChainOut = "NewCertificate_$CertificateCN"+"_all_public_keys_in_chain"+".pem",
+
+ [Parameter(Mandatory=$False)]
+ [string]$ProtectedPrivateKeyOut = "NewCertificate_$CertificateCN"+"_protected_private_key"+".pem",
+
+ [Parameter(Mandatory=$False)]
+ [string]$UnProtectedPrivateKeyOut = "NewCertificate_$CertificateCN"+"_unprotected_private_key"+".key",
+
+ [Parameter(Mandatory=$False)]
+ [ValidateSet("Yes","No")]
+ $StripPrivateKeyOfPassword = "Yes",
+
+ [Parameter(Mandatory=$False)]
+ [ValidateSet("DNS","Distinguished Name","URL","IP Address","Email","UPN","GUID")]
+ [string[]]$SANObjectsToAdd,
+
+ [Parameter(Mandatory=$False)]
+ [string[]]$DNSSANObjects, # Example: www.fabrikam.com, www.contoso.org
+
+ [Parameter(Mandatory=$False)]
+ [string[]]$DistinguishedNameSANObjects, # Example: CN=www01,OU=Web Servers,DC=fabrikam,DC=com; CN=www01,OU=Load Balancers,DC=fabrikam,DC=com"
+
+ [Parameter(Mandatory=$False)]
+ [string[]]$URLSANObjects, # Example: http://www.fabrikam.com, http://www.contoso.com
+
+ [Parameter(Mandatory=$False)]
+ [string[]]$IPAddressSANObjects, # Example: 192.168.2.12, 10.10.1.15
+
+ [Parameter(Mandatory=$False)]
+ [string[]]$EmailSANObjects, # Example: mike@fabrikam.com, hazem@fabrikam.com
+
+ [Parameter(Mandatory=$False)]
+ [string[]]$UPNSANObjects, # Example: mike@fabrikam.com, hazem@fabrikam.com
+
+ [Parameter(Mandatory=$False)]
+ [string[]]$GUIDSANObjects,
+
+ [Parameter(Mandatory=$False)]
+ [switch]$CSRGenOnly
+ )
+
+ ##### BEGIN Helper Functions #####
+
+ function Test-IsValidIPAddress([string]$IPAddress) {
+ [boolean]$Octets = (($IPAddress.Split(".")).Count -eq 4)
+ [boolean]$Valid = ($IPAddress -as [ipaddress]) -as [boolean]
+ Return ($Valid -and $Octets)
+ }
+
+ function Compare-Arrays {
+ [CmdletBinding()]
+ Param(
+ [Parameter(Mandatory=$False)]
+ [array]$LargerArray,
+
+ [Parameter(Mandatory=$False)]
+ [array]$SmallerArray
+ )
+
+ -not @($SmallerArray | where {$LargerArray -notcontains $_}).Count
+ }
+
+ $OIDHashTable = @{
+ # Remote Desktop
+ "Remote Desktop" = "1.3.6.1.4.1.311.54.1.2"
+ # Windows Update
+ "Windows Update" = "1.3.6.1.4.1.311.76.6.1"
+ # Windows Third Party Applicaiton Component
+ "Windows Third Party Application Component" = "1.3.6.1.4.1.311.10.3.25"
+ # Windows TCB Component
+ "Windows TCB Component" = "1.3.6.1.4.1.311.10.3.23"
+ # Windows Store
+ "Windows Store" = "1.3.6.1.4.1.311.76.3.1"
+ # Windows Software Extension verification
+ " Windows Software Extension Verification" = "1.3.6.1.4.1.311.10.3.26"
+ # Windows RT Verification
+ "Windows RT Verification" = "1.3.6.1.4.1.311.10.3.21"
+ # Windows Kits Component
+ "Windows Kits Component" = "1.3.6.1.4.1.311.10.3.20"
+ # ROOT_PROGRAM_NO_OCSP_FAILOVER_TO_CRL
+ "No OCSP Failover to CRL" = "1.3.6.1.4.1.311.60.3.3"
+ # ROOT_PROGRAM_AUTO_UPDATE_END_REVOCATION
+ "Auto Update End Revocation" = "1.3.6.1.4.1.311.60.3.2"
+ # ROOT_PROGRAM_AUTO_UPDATE_CA_REVOCATION
+ "Auto Update CA Revocation" = "1.3.6.1.4.1.311.60.3.1"
+ # Revoked List Signer
+ "Revoked List Signer" = "1.3.6.1.4.1.311.10.3.19"
+ # Protected Process Verification
+ "Protected Process Verification" = "1.3.6.1.4.1.311.10.3.24"
+ # Protected Process Light Verification
+ "Protected Process Light Verification" = "1.3.6.1.4.1.311.10.3.22"
+ # Platform Certificate
+ "Platform Certificate" = "2.23.133.8.2"
+ # Microsoft Publisher
+ "Microsoft Publisher" = "1.3.6.1.4.1.311.76.8.1"
+ # Kernel Mode Code Signing
+ "Kernel Mode Code Signing" = "1.3.6.1.4.1.311.6.1.1"
+ # HAL Extension
+ "HAL Extension" = "1.3.6.1.4.1.311.61.5.1"
+ # Endorsement Key Certificate
+ "Endorsement Key Certificate" = "2.23.133.8.1"
+ # Early Launch Antimalware Driver
+ "Early Launch Antimalware Driver" = "1.3.6.1.4.1.311.61.4.1"
+ # Dynamic Code Generator
+ "Dynamic Code Generator" = "1.3.6.1.4.1.311.76.5.1"
+ # Domain Name System (DNS) Server Trust
+ "DNS Server Trust" = "1.3.6.1.4.1.311.64.1.1"
+ # Document Encryption
+ "Document Encryption" = "1.3.6.1.4.1.311.80.1"
+ # Disallowed List
+ "Disallowed List" = "1.3.6.1.4.1.10.3.30"
+ # Attestation Identity Key Certificate
+ "Attestation Identity Key Certificate" = "2.23.133.8.3"
+ "Generic Conference Contro" = "0.0.20.124.0.1"
+ "X509Extensions" = "1.3.6.1.4.1.311.2.1.14"
+ "EnrollmentCspProvider" = "1.3.6.1.4.1.311.13.2.2"
+ # System Health Authentication
+ "System Health Authentication" = "1.3.6.1.4.1.311.47.1.1"
+ "OsVersion" = "1.3.6.1.4.1.311.13.2.3"
+ "RenewalCertificate" = "1.3.6.1.4.1.311.13.1"
+ "Certificate Template" = "1.3.6.1.4.1.311.20.2"
+ "RequestClientInfo" = "1.3.6.1.4.1.311.21.20"
+ "ArchivedKeyAttr" = "1.3.6.1.4.1.311.21.13"
+ "EncryptedKeyHash" = "1.3.6.1.4.1.311.21.21"
+ "EnrollmentNameValuePair" = "1.3.6.1.4.1.311.13.2.1"
+ "IdAtName" = "2.5.4.41"
+ "IdAtCommonName" = "2.5.4.3"
+ "IdAtLocalityName" = "2.5.4.7"
+ "IdAtStateOrProvinceName" = "2.5.4.8"
+ "IdAtOrganizationName" = "2.5.4.10"
+ "IdAtOrganizationalUnitName" = "2.5.4.11"
+ "IdAtTitle" = "2.5.4.12"
+ "IdAtDnQualifier" = "2.5.4.46"
+ "IdAtCountryName" = "2.5.4.6"
+ "IdAtSerialNumber" = "2.5.4.5"
+ "IdAtPseudonym" = "2.5.4.65"
+ "IdDomainComponent" = "0.9.2342.19200300.100.1.25"
+ "IdEmailAddress" = "1.2.840.113549.1.9.1"
+ "IdCeAuthorityKeyIdentifier" = "2.5.29.35"
+ "IdCeSubjectKeyIdentifier" = "2.5.29.14"
+ "IdCeKeyUsage" = "2.5.29.15"
+ "IdCePrivateKeyUsagePeriod" = "2.5.29.16"
+ "IdCeCertificatePolicies" = "2.5.29.32"
+ "IdCePolicyMappings" = "2.5.29.33"
+ "IdCeSubjectAltName" = "2.5.29.17"
+ "IdCeIssuerAltName" = "2.5.29.18"
+ "IdCeBasicConstraints" = "2.5.29.19"
+ "IdCeNameConstraints" = "2.5.29.30"
+ "idCdPolicyConstraints" = "2.5.29.36"
+ "IdCeExtKeyUsage" = "2.5.29.37"
+ "IdCeCRLDistributionPoints" = "2.5.29.31"
+ "IdCeInhibitAnyPolicy" = "2.5.29.54"
+ "IdPeAuthorityInfoAccess" = "1.3.6.1.5.5.7.1.1"
+ "IdPeSubjectInfoAccess" = "1.3.6.1.5.5.7.1.11"
+ "IdCeCRLNumber" = "2.5.29.20"
+ "IdCeDeltaCRLIndicator" = "2.5.29.27"
+ "IdCeIssuingDistributionPoint" = "2.5.29.28"
+ "IdCeFreshestCRL" = "2.5.29.46"
+ "IdCeCRLReason" = "2.5.29.21"
+ "IdCeHoldInstructionCode" = "2.5.29.23"
+ "IdCeInvalidityDate" = "2.5.29.24"
+ "IdCeCertificateIssuer" = "2.5.29.29"
+ "IdModAttributeCert" = "1.3.6.1.5.5.7.0.12"
+ "IdPeAcAuditIdentity" = "1.3.6.1.5.5.7.1.4"
+ "IdCeTargetInformation" = "2.5.29.55"
+ "IdCeNoRevAvail" = "2.5.29.56"
+ "IdAcaAuthenticationInfo" = "1.3.6.1.5.5.7.10.1"
+ "IdAcaAccessIdentity" = "1.3.6.1.5.5.7.10.2"
+ "IdAcaChargingIdentity" = "1.3.6.1.5.5.7.10.3"
+ "IdAcaGroup" = "1.3.6.1.5.5.7.10.4"
+ "IdAtRole" = "2.5.4.72"
+ "IdAtClearance" = "2.5.1.5.55"
+ "IdAcaEncAttrs" = "1.3.6.1.5.5.7.10.6"
+ "IdPeAcProxying" = "1.3.6.1.5.5.7.1.10"
+ "IdPeAaControls" = "1.3.6.1.5.5.7.1.6"
+ "IdCtContentInfo" = "1.2.840.113549.1.9.16.1.6"
+ "IdDataAuthpack" = "1.2.840.113549.1.7.1"
+ "IdSignedData" = "1.2.840.113549.1.7.2"
+ "IdEnvelopedData" = "1.2.840.113549.1.7.3"
+ "IdDigestedData" = "1.2.840.113549.1.7.5"
+ "IdEncryptedData" = "1.2.840.113549.1.7.6"
+ "IdCtAuthData" = "1.2.840.113549.1.9.16.1.2"
+ "IdContentType" = "1.2.840.113549.1.9.3"
+ "IdMessageDigest" = "1.2.840.113549.1.9.4"
+ "IdSigningTime" = "1.2.840.113549.1.9.5"
+ "IdCounterSignature" = "1.2.840.113549.1.9.6"
+ "RsaEncryption" = "1.2.840.113549.1.1.1"
+ "IdRsaesOaep" = "1.2.840.113549.1.1.7"
+ "IdPSpecified" = "1.2.840.113549.1.1.9"
+ "IdRsassaPss" = "1.2.840.113549.1.1.10"
+ "Md2WithRSAEncryption" = "1.2.840.113549.1.1.2"
+ "Md5WithRSAEncryption" = "1.2.840.113549.1.1.4"
+ "Sha1WithRSAEncryption" = "1.2.840.113549.1.1.5"
+ "Sha256WithRSAEncryption" = "1.2.840.113549.1.1.11"
+ "Sha384WithRSAEncryption" = "1.2.840.113549.1.1.12"
+ "Sha512WithRSAEncryption" = "1.2.840.113549.1.1.13"
+ "IdMd2" = "1.2.840.113549.2.2"
+ "IdMd5" = "1.2.840.113549.2.5"
+ "IdSha1" = "1.3.14.3.2.26"
+ "IdSha256" = "2.16.840.1.101.3.4.2.1"
+ "IdSha384" = "2.16.840.1.101.3.4.2.2"
+ "IdSha512" = "2.16.840.1.101.3.4.2.3"
+ "IdMgf1" = "1.2.840.113549.1.1.8"
+ "IdDsaWithSha1" = "1.2.840.10040.4.3"
+ "EcdsaWithSHA1" = "1.2.840.10045.4.1"
+ "IdDsa" = "1.2.840.10040.4.1"
+ "DhPublicNumber" = "1.2.840.10046.2.1"
+ "IdKeyExchangeAlgorithm" = "2.16.840.1.101.2.1.1.22"
+ "IdEcPublicKey" = "1.2.840.10045.2.1"
+ "PrimeField" = "1.2.840.10045.1.1"
+ "CharacteristicTwoField" = "1.2.840.10045.1.2"
+ "GnBasis" = "1.2.840.10045.1.2.1.1"
+ "TpBasis" = "1.2.840.10045.1.2.1.2"
+ "PpBasis" = "1.2.840.10045.1.2.1.3"
+ "IdAlgEsdh" = "1.2.840.113549.1.9.16.3.5"
+ "IdAlgSsdh" = "1.2.840.113549.1.9.16.3.10"
+ "IdAlgCms3DesWrap" = "1.2.840.113549.1.9.16.3.6"
+ "IdAlgCmsRc2Wrap" = "1.2.840.113549.1.9.16.3.7"
+ "IdPbkDf2" = "1.2.840.113549.1.5.12"
+ "DesEde3Cbc" = "1.2.840.113549.3.7"
+ "Rc2Cbc" = "1.2.840.113549.3.2"
+ "HmacSha1" = "1.3.6.1.5.5.8.1.2"
+ "IdAes128Cbc" = "2.16.840.1.101.3.4.1.2"
+ "IdAes192Cbc" = "2.16.840.1.101.3.4.1.22"
+ "IdAes256Cbc" = "2.16.840.1.101.3.4.1.42"
+ "IdAes128Wrap" = "2.16.840.1.101.3.4.1.5"
+ "IdAes192Wrap" = "2.16.840.1.101.3.4.1.25"
+ "IdAes256Wrap" = "2.16.840.1.101.3.4.1.45"
+ "IdCmcIdentification" = "1.3.6.1.5.5.7.7.2"
+ "IdCmcIdentityProof" = "1.3.6.1.5.5.7.7.3"
+ "IdCmcDataReturn" = "1.3.6.1.5.5.7.7.4"
+ "IdCmcTransactionId" = "1.3.6.1.5.5.7.7.5"
+ "IdCmcSenderNonce" = "1.3.6.1.5.5.7.7.6"
+ "IdCmcRecipientNonce" = "1.3.6.1.5.5.7.7.7"
+ "IdCmcRegInfo" = "1.3.6.1.5.5.7.7.18"
+ "IdCmcResponseInfo" = "1.3.6.1.5.5.7.7.19"
+ "IdCmcQueryPending" = "1.3.6.1.5.5.7.7.21"
+ "IdCmcPopLinkRandom" = "1.3.6.1.5.5.7.7.22"
+ "IdCmcPopLinkWitness" = "1.3.6.1.5.5.7.7.23"
+ "IdCctPKIData" = "1.3.6.1.5.5.7.12.2"
+ "IdCctPKIResponse" = "1.3.6.1.5.5.7.12.3"
+ "IdCmccMCStatusInfo" = "1.3.6.1.5.5.7.7.1"
+ "IdCmcAddExtensions" = "1.3.6.1.5.5.7.7.8"
+ "IdCmcEncryptedPop" = "1.3.6.1.5.5.7.7.9"
+ "IdCmcDecryptedPop" = "1.3.6.1.5.5.7.7.10"
+ "IdCmcLraPopWitness" = "1.3.6.1.5.5.7.7.11"
+ "IdCmcGetCert" = "1.3.6.1.5.5.7.7.15"
+ "IdCmcGetCRL" = "1.3.6.1.5.5.7.7.16"
+ "IdCmcRevokeRequest" = "1.3.6.1.5.5.7.7.17"
+ "IdCmcConfirmCertAcceptance" = "1.3.6.1.5.5.7.7.24"
+ "IdExtensionReq" = "1.2.840.113549.1.9.14"
+ "IdAlgNoSignature" = "1.3.6.1.5.5.7.6.2"
+ "PasswordBasedMac" = "1.2.840.113533.7.66.13"
+ "IdRegCtrlRegToken" = "1.3.6.1.5.5.7.5.1.1"
+ "IdRegCtrlAuthenticator" = "1.3.6.1.5.5.7.5.1.2"
+ "IdRegCtrlPkiPublicationInfo" = "1.3.6.1.5.5.7.5.1.3"
+ "IdRegCtrlPkiArchiveOptions" = "1.3.6.1.5.5.7.5.1.4"
+ "IdRegCtrlOldCertID" = "1.3.6.1.5.5.7.5.1.5"
+ "IdRegCtrlProtocolEncrKey" = "1.3.6.1.5.5.7.5.1.6"
+ "IdRegInfoUtf8Pairs" = "1.3.6.1.5.5.7.5.2.1"
+ "IdRegInfoCertReq" = "1.3.6.1.5.5.7.5.2.2"
+ "SpnegoToken" = "1.3.6.1.5.5.2"
+ "SpnegoNegTok" = "1.3.6.1.5.5.2.4.2"
+ "GSS_KRB5_NT_USER_NAME" = "1.2.840.113554.1.2.1.1"
+ "GSS_KRB5_NT_MACHINE_UID_NAME" = "1.2.840.113554.1.2.1.2"
+ "GSS_KRB5_NT_STRING_UID_NAME" = "1.2.840.113554.1.2.1.3"
+ "GSS_C_NT_HOSTBASED_SERVICE" = "1.2.840.113554.1.2.1.4"
+ "KerberosToken" = "1.2.840.113554.1.2.2"
+ "Negoex" = "1.3.6.1.4.1.311.2.2.30"
+ "GSS_KRB5_NT_PRINCIPAL_NAME" = "1.2.840.113554.1.2.2.1"
+ "GSS_KRB5_NT_PRINCIPAL" = "1.2.840.113554.1.2.2.2"
+ "UserToUserMechanism" = "1.2.840.113554.1.2.2.3"
+ "MsKerberosToken" = "1.2.840.48018.1.2.2"
+ "NLMP" = "1.3.6.1.4.1.311.2.2.10"
+ "IdPkixOcspBasic" = "1.3.6.1.5.5.7.48.1.1"
+ "IdPkixOcspNonce" = "1.3.6.1.5.5.7.48.1.2"
+ "IdPkixOcspCrl" = "1.3.6.1.5.5.7.48.1.3"
+ "IdPkixOcspResponse" = "1.3.6.1.5.5.7.48.1.4"
+ "IdPkixOcspNocheck" = "1.3.6.1.5.5.7.48.1.5"
+ "IdPkixOcspArchiveCutoff" = "1.3.6.1.5.5.7.48.1.6"
+ "IdPkixOcspServiceLocator" = "1.3.6.1.5.5.7.48.1.7"
+ # Smartcard Logon
+ "IdMsKpScLogon" = "1.3.6.1.4.1.311.20.2.2"
+ "IdPkinitSan" = "1.3.6.1.5.2.2"
+ "IdPkinitAuthData" = "1.3.6.1.5.2.3.1"
+ "IdPkinitDHKeyData" = "1.3.6.1.5.2.3.2"
+ "IdPkinitRkeyData" = "1.3.6.1.5.2.3.3"
+ "IdPkinitKPClientAuth" = "1.3.6.1.5.2.3.4"
+ "IdPkinitKPKdc" = "1.3.6.1.5.2.3.5"
+ "SHA1 with RSA signature" = "1.3.14.3.2.29"
+ "AUTHORITY_KEY_IDENTIFIER" = "2.5.29.1"
+ "KEY_ATTRIBUTES" = "2.5.29.2"
+ "CERT_POLICIES_95" = "2.5.29.3"
+ "KEY_USAGE_RESTRICTION" = "2.5.29.4"
+ "SUBJECT_ALT_NAME" = "2.5.29.7"
+ "ISSUER_ALT_NAME" = "2.5.29.8"
+ "Subject_Directory_Attributes" = "2.5.29.9"
+ "BASIC_CONSTRAINTS" = "2.5.29.10"
+ "ANY_CERT_POLICY" = "2.5.29.32.0"
+ "LEGACY_POLICY_MAPPINGS" = "2.5.29.5"
+ # Certificate Request Agent
+ "ENROLLMENT_AGENT" = "1.3.6.1.4.1.311.20.2.1"
+ "PKIX" = "1.3.6.1.5.5.7"
+ "PKIX_PE" = "1.3.6.1.5.5.7.1"
+ "NEXT_UPDATE_LOCATION" = "1.3.6.1.4.1.311.10.2"
+ "REMOVE_CERTIFICATE" = "1.3.6.1.4.1.311.10.8.1"
+ "CROSS_CERT_DIST_POINTS" = "1.3.6.1.4.1.311.10.9.1"
+ "CTL" = "1.3.6.1.4.1.311.10.1"
+ "SORTED_CTL" = "1.3.6.1.4.1.311.10.1.1"
+ "SERIALIZED" = "1.3.6.1.4.1.311.10.3.3.1"
+ "NT_PRINCIPAL_NAME" = "1.3.6.1.4.1.311.20.2.3"
+ "PRODUCT_UPDATE" = "1.3.6.1.4.1.311.31.1"
+ "ANY_APPLICATION_POLICY" = "1.3.6.1.4.1.311.10.12.1"
+ # CTL Usage
+ "AUTO_ENROLL_CTL_USAGE" = "1.3.6.1.4.1.311.20.1"
+ "CERT_MANIFOLD" = "1.3.6.1.4.1.311.20.3"
+ "CERTSRV_CA_VERSION" = "1.3.6.1.4.1.311.21.1"
+ "CERTSRV_PREVIOUS_CERT_HASH" = "1.3.6.1.4.1.311.21.2"
+ "CRL_VIRTUAL_BASE" = "1.3.6.1.4.1.311.21.3"
+ "CRL_NEXT_PUBLISH" = "1.3.6.1.4.1.311.21.4"
+ # Private Key Archival
+ "KP_CA_EXCHANGE" = "1.3.6.1.4.1.311.21.5"
+ # Key Recovery Agent
+ "KP_KEY_RECOVERY_AGENT" = "1.3.6.1.4.1.311.21.6"
+ "CERTIFICATE_TEMPLATE" = "1.3.6.1.4.1.311.21.7"
+ "ENTERPRISE_OID_ROOT" = "1.3.6.1.4.1.311.21.8"
+ "RDN_DUMMY_SIGNER" = "1.3.6.1.4.1.311.21.9"
+ "APPLICATION_CERT_POLICIES" = "1.3.6.1.4.1.311.21.10"
+ "APPLICATION_POLICY_MAPPINGS" = "1.3.6.1.4.1.311.21.11"
+ "APPLICATION_POLICY_CONSTRAINTS" = "1.3.6.1.4.1.311.21.12"
+ "CRL_SELF_CDP" = "1.3.6.1.4.1.311.21.14"
+ "REQUIRE_CERT_CHAIN_POLICY" = "1.3.6.1.4.1.311.21.15"
+ "ARCHIVED_KEY_CERT_HASH" = "1.3.6.1.4.1.311.21.16"
+ "ISSUED_CERT_HASH" = "1.3.6.1.4.1.311.21.17"
+ "DS_EMAIL_REPLICATION" = "1.3.6.1.4.1.311.21.19"
+ "CERTSRV_CROSSCA_VERSION" = "1.3.6.1.4.1.311.21.22"
+ "NTDS_REPLICATION" = "1.3.6.1.4.1.311.25.1"
+ "PKIX_KP" = "1.3.6.1.5.5.7.3"
+ "PKIX_KP_SERVER_AUTH" = "1.3.6.1.5.5.7.3.1"
+ "PKIX_KP_CLIENT_AUTH" = "1.3.6.1.5.5.7.3.2"
+ "PKIX_KP_CODE_SIGNING" = "1.3.6.1.5.5.7.3.3"
+ # Secure Email
+ "PKIX_KP_EMAIL_PROTECTION" = "1.3.6.1.5.5.7.3.4"
+ # IP Security End System
+ "PKIX_KP_IPSEC_END_SYSTEM" = "1.3.6.1.5.5.7.3.5"
+ # IP Security Tunnel Termination
+ "PKIX_KP_IPSEC_TUNNEL" = "1.3.6.1.5.5.7.3.6"
+ # IP Security User
+ "PKIX_KP_IPSEC_USER" = "1.3.6.1.5.5.7.3.7"
+ # Time Stamping
+ "PKIX_KP_TIMESTAMP_SIGNING" = "1.3.6.1.5.5.7.3.8"
+ "KP_OCSP_SIGNING" = "1.3.6.1.5.5.7.3.9"
+ # IP security IKE intermediate
+ "IPSEC_KP_IKE_INTERMEDIATE" = "1.3.6.1.5.5.8.2.2"
+ # Microsoft Trust List Signing
+ "KP_CTL_USAGE_SIGNING" = "1.3.6.1.4.1.311.10.3.1"
+ # Microsoft Time Stamping
+ "KP_TIME_STAMP_SIGNING" = "1.3.6.1.4.1.311.10.3.2"
+ "SERVER_GATED_CRYPTO" = "1.3.6.1.4.1.311.10.3.3"
+ "SGC_NETSCAPE" = "2.16.840.1.113730.4.1"
+ "KP_EFS" = "1.3.6.1.4.1.311.10.3.4"
+ "EFS_RECOVERY" = "1.3.6.1.4.1.311.10.3.4.1"
+ # Windows Hardware Driver Verification
+ "WHQL_CRYPTO" = "1.3.6.1.4.1.311.10.3.5"
+ # Windows System Component Verification
+ "NT5_CRYPTO" = "1.3.6.1.4.1.311.10.3.6"
+ # OEM Windows System Component Verification
+ "OEM_WHQL_CRYPTO" = "1.3.6.1.4.1.311.10.3.7"
+ # Embedded Windows System Component Verification
+ "EMBEDDED_NT_CRYPTO" = "1.3.6.1.4.1.311.10.3.8"
+ # Root List Signer
+ "ROOT_LIST_SIGNER" = "1.3.6.1.4.1.311.10.3.9"
+ # Qualified Subordination
+ "KP_QUALIFIED_SUBORDINATION" = "1.3.6.1.4.1.311.10.3.10"
+ # Key Recovery
+ "KP_KEY_RECOVERY" = "1.3.6.1.4.1.311.10.3.11"
+ "KP_DOCUMENT_SIGNING" = "1.3.6.1.4.1.311.10.3.12"
+ # Lifetime Signing
+ "KP_LIFETIME_SIGNING" = "1.3.6.1.4.1.311.10.3.13"
+ "KP_MOBILE_DEVICE_SOFTWARE" = "1.3.6.1.4.1.311.10.3.14"
+ # Digital Rights
+ "DRM" = "1.3.6.1.4.1.311.10.5.1"
+ "DRM_INDIVIDUALIZATION" = "1.3.6.1.4.1.311.10.5.2"
+ # Key Pack Licenses
+ "LICENSES" = "1.3.6.1.4.1.311.10.6.1"
+ # License Server Verification
+ "LICENSE_SERVER" = "1.3.6.1.4.1.311.10.6.2"
+ "YESNO_TRUST_ATTR" = "1.3.6.1.4.1.311.10.4.1"
+ "PKIX_POLICY_QUALIFIER_CPS" = "1.3.6.1.5.5.7.2.1"
+ "PKIX_POLICY_QUALIFIER_USERNOTICE" = "1.3.6.1.5.5.7.2.2"
+ "CERT_POLICIES_95_QUALIFIER1" = "2.16.840.1.113733.1.7.1.1"
+ "RSA" = "1.2.840.113549"
+ "PKCS" = "1.2.840.113549.1"
+ "RSA_HASH" = "1.2.840.113549.2"
+ "RSA_ENCRYPT" = "1.2.840.113549.3"
+ "PKCS_1" = "1.2.840.113549.1.1"
+ "PKCS_2" = "1.2.840.113549.1.2"
+ "PKCS_3" = "1.2.840.113549.1.3"
+ "PKCS_4" = "1.2.840.113549.1.4"
+ "PKCS_5" = "1.2.840.113549.1.5"
+ "PKCS_6" = "1.2.840.113549.1.6"
+ "PKCS_7" = "1.2.840.113549.1.7"
+ "PKCS_8" = "1.2.840.113549.1.8"
+ "PKCS_9" = "1.2.840.113549.1.9"
+ "PKCS_10" = "1.2.840.113549.1.10"
+ "PKCS_12" = "1.2.840.113549.1.12"
+ "RSA_MD4RSA" = "1.2.840.113549.1.1.3"
+ "RSA_SETOAEP_RSA" = "1.2.840.113549.1.1.6"
+ "RSA_DH" = "1.2.840.113549.1.3.1"
+ "RSA_signEnvData" = "1.2.840.113549.1.7.4"
+ "RSA_unstructName" = "1.2.840.113549.1.9.2"
+ "RSA_challengePwd" = "1.2.840.113549.1.9.7"
+ "RSA_unstructAddr" = "1.2.840.113549.1.9.8"
+ "RSA_extCertAttrs" = "1.2.840.113549.1.9.9"
+ "RSA_SMIMECapabilities" = "1.2.840.113549.1.9.15"
+ "RSA_preferSignedData" = "1.2.840.113549.1.9.15.1"
+ "RSA_SMIMEalg" = "1.2.840.113549.1.9.16.3"
+ "RSA_MD4" = "1.2.840.113549.2.4"
+ "RSA_RC4" = "1.2.840.113549.3.4"
+ "RSA_RC5_CBCPad" = "1.2.840.113549.3.9"
+ "ANSI_X942" = "1.2.840.10046"
+ "X957" = "1.2.840.10040"
+ "DS" = "2.5"
+ "DSALG" = "2.5.8"
+ "DSALG_CRPT" = "2.5.8.1"
+ "DSALG_HASH" = "2.5.8.2"
+ "DSALG_SIGN" = "2.5.8.3"
+ "DSALG_RSA" = "2.5.8.1.1"
+ "OIW" = "1.3.14"
+ "OIWSEC" = "1.3.14.3.2"
+ "OIWSEC_md4RSA" = "1.3.14.3.2.2"
+ "OIWSEC_md5RSA" = "1.3.14.3.2.3"
+ "OIWSEC_md4RSA2" = "1.3.14.3.2.4"
+ "OIWSEC_desECB" = "1.3.14.3.2.6"
+ "OIWSEC_desCBC" = "1.3.14.3.2.7"
+ "OIWSEC_desOFB" = "1.3.14.3.2.8"
+ "OIWSEC_desCFB" = "1.3.14.3.2.9"
+ "OIWSEC_desMAC" = "1.3.14.3.2.10"
+ "OIWSEC_rsaSign" = "1.3.14.3.2.11"
+ "OIWSEC_dsa" = "1.3.14.3.2.12"
+ "OIWSEC_shaDSA" = "1.3.14.3.2.13"
+ "OIWSEC_mdc2RSA" = "1.3.14.3.2.14"
+ "OIWSEC_shaRSA" = "1.3.14.3.2.15"
+ "OIWSEC_dhCommMod" = "1.3.14.3.2.16"
+ "OIWSEC_desEDE" = "1.3.14.3.2.17"
+ "OIWSEC_sha" = "1.3.14.3.2.18"
+ "OIWSEC_mdc2" = "1.3.14.3.2.19"
+ "OIWSEC_dsaComm" = "1.3.14.3.2.20"
+ "OIWSEC_dsaCommSHA" = "1.3.14.3.2.21"
+ "OIWSEC_rsaXchg" = "1.3.14.3.2.22"
+ "OIWSEC_keyHashSeal" = "1.3.14.3.2.23"
+ "OIWSEC_md2RSASign" = "1.3.14.3.2.24"
+ "OIWSEC_md5RSASign" = "1.3.14.3.2.25"
+ "OIWSEC_dsaSHA1" = "1.3.14.3.2.27"
+ "OIWSEC_dsaCommSHA1" = "1.3.14.3.2.28"
+ "OIWDIR" = "1.3.14.7.2"
+ "OIWDIR_CRPT" = "1.3.14.7.2.1"
+ "OIWDIR_HASH" = "1.3.14.7.2.2"
+ "OIWDIR_SIGN" = "1.3.14.7.2.3"
+ "OIWDIR_md2" = "1.3.14.7.2.2.1"
+ "OIWDIR_md2RSA" = "1.3.14.7.2.3.1"
+ "INFOSEC" = "2.16.840.1.101.2.1"
+ "INFOSEC_sdnsSignature" = "2.16.840.1.101.2.1.1.1"
+ "INFOSEC_mosaicSignature" = "2.16.840.1.101.2.1.1.2"
+ "INFOSEC_sdnsConfidentiality" = "2.16.840.1.101.2.1.1.3"
+ "INFOSEC_mosaicConfidentiality" = "2.16.840.1.101.2.1.1.4"
+ "INFOSEC_sdnsIntegrity" = "2.16.840.1.101.2.1.1.5"
+ "INFOSEC_mosaicIntegrity" = "2.16.840.1.101.2.1.1.6"
+ "INFOSEC_sdnsTokenProtection" = "2.16.840.1.101.2.1.1.7"
+ "INFOSEC_mosaicTokenProtection" = "2.16.840.1.101.2.1.1.8"
+ "INFOSEC_sdnsKeyManagement" = "2.16.840.1.101.2.1.1.9"
+ "INFOSEC_mosaicKeyManagement" = "2.16.840.1.101.2.1.1.10"
+ "INFOSEC_sdnsKMandSig" = "2.16.840.1.101.2.1.1.11"
+ "INFOSEC_mosaicKMandSig" = "2.16.840.1.101.2.1.1.12"
+ "INFOSEC_SuiteASignature" = "2.16.840.1.101.2.1.1.13"
+ "INFOSEC_SuiteAConfidentiality" = "2.16.840.1.101.2.1.1.14"
+ "INFOSEC_SuiteAIntegrity" = "2.16.840.1.101.2.1.1.15"
+ "INFOSEC_SuiteATokenProtection" = "2.16.840.1.101.2.1.1.16"
+ "INFOSEC_SuiteAKeyManagement" = "2.16.840.1.101.2.1.1.17"
+ "INFOSEC_SuiteAKMandSig" = "2.16.840.1.101.2.1.1.18"
+ "INFOSEC_mosaicUpdatedSig" = "2.16.840.1.101.2.1.1.19"
+ "INFOSEC_mosaicKMandUpdSig" = "2.16.840.1.101.2.1.1.20"
+ "INFOSEC_mosaicUpdatedInteg" = "2.16.840.1.101.2.1.1.21"
+ "SUR_NAME" = "2.5.4.4"
+ "STREET_ADDRESS" = "2.5.4.9"
+ "DESCRIPTION" = "2.5.4.13"
+ "SEARCH_GUIDE" = "2.5.4.14"
+ "BUSINESS_CATEGORY" = "2.5.4.15"
+ "POSTAL_ADDRESS" = "2.5.4.16"
+ "POSTAL_CODE" = "2.5.4.17"
+ "POST_OFFICE_BOX" = "2.5.4.18"
+ "PHYSICAL_DELIVERY_OFFICE_NAME" = "2.5.4.19"
+ "TELEPHONE_NUMBER" = "2.5.4.20"
+ "TELEX_NUMBER" = "2.5.4.21"
+ "TELETEXT_TERMINAL_IDENTIFIER" = "2.5.4.22"
+ "FACSIMILE_TELEPHONE_NUMBER" = "2.5.4.23"
+ "X21_ADDRESS" = "2.5.4.24"
+ "INTERNATIONAL_ISDN_NUMBER" = "2.5.4.25"
+ "REGISTERED_ADDRESS" = "2.5.4.26"
+ "DESTINATION_INDICATOR" = "2.5.4.27"
+ "PREFERRED_DELIVERY_METHOD" = "2.5.4.28"
+ "PRESENTATION_ADDRESS" = "2.5.4.29"
+ "SUPPORTED_APPLICATION_CONTEXT" = "2.5.4.30"
+ "MEMBER" = "2.5.4.31"
+ "OWNER" = "2.5.4.32"
+ "ROLE_OCCUPANT" = "2.5.4.33"
+ "SEE_ALSO" = "2.5.4.34"
+ "USER_PASSWORD" = "2.5.4.35"
+ "USER_CERTIFICATE" = "2.5.4.36"
+ "CA_CERTIFICATE" = "2.5.4.37"
+ "AUTHORITY_REVOCATION_LIST" = "2.5.4.38"
+ "CERTIFICATE_REVOCATION_LIST" = "2.5.4.39"
+ "CROSS_CERTIFICATE_PAIR" = "2.5.4.40"
+ "GIVEN_NAME" = "2.5.4.42"
+ "INITIALS" = "2.5.4.43"
+ "PKCS_12_FRIENDLY_NAME_ATTR" = "1.2.840.113549.1.9.20"
+ "PKCS_12_LOCAL_KEY_ID" = "1.2.840.113549.1.9.21"
+ "PKCS_12_KEY_PROVIDER_NAME_ATTR" = "1.3.6.1.4.1.311.17.1"
+ "LOCAL_MACHINE_KEYSET" = "1.3.6.1.4.1.311.17.2"
+ "KEYID_RDN" = "1.3.6.1.4.1.311.10.7.1"
+ "PKIX_ACC_DESCR" = "1.3.6.1.5.5.7.48"
+ "PKIX_OCSP" = "1.3.6.1.5.5.7.48.1"
+ "PKIX_CA_ISSUERS" = "1.3.6.1.5.5.7.48.2"
+ "VERISIGN_PRIVATE_6_9" = "2.16.840.1.113733.1.6.9"
+ "VERISIGN_ONSITE_JURISDICTION_HASH" = "2.16.840.1.113733.1.6.11"
+ "VERISIGN_BITSTRING_6_13" = "2.16.840.1.113733.1.6.13"
+ "VERISIGN_ISS_STRONG_CRYPTO" = "2.16.840.1.113733.1.8.1"
+ "NETSCAPE" = "2.16.840.1.113730"
+ "NETSCAPE_CERT_EXTENSION" = "2.16.840.1.113730.1"
+ "NETSCAPE_CERT_TYPE" = "2.16.840.1.113730.1.1"
+ "NETSCAPE_BASE_URL" = "2.16.840.1.113730.1.2"
+ "NETSCAPE_REVOCATION_URL" = "2.16.840.1.113730.1.3"
+ "NETSCAPE_CA_REVOCATION_URL" = "2.16.840.1.113730.1.4"
+ "NETSCAPE_CERT_RENEWAL_URL" = "2.16.840.1.113730.1.7"
+ "NETSCAPE_CA_POLICY_URL" = "2.16.840.1.113730.1.8"
+ "NETSCAPE_SSL_SERVER_NAME" = "2.16.840.1.113730.1.12"
+ "NETSCAPE_COMMENT" = "2.16.840.1.113730.1.13"
+ "NETSCAPE_DATA_TYPE" = "2.16.840.1.113730.2"
+ "NETSCAPE_CERT_SEQUENCE" = "2.16.840.1.113730.2.5"
+ "CMC" = "1.3.6.1.5.5.7.7"
+ "CMC_ADD_ATTRIBUTES" = "1.3.6.1.4.1.311.10.10.1"
+ "PKCS_7_SIGNEDANDENVELOPED" = "1.2.840.113549.1.7.4"
+ "CERT_PROP_ID_PREFIX" = "1.3.6.1.4.1.311.10.11."
+ "CERT_KEY_IDENTIFIER_PROP_ID" = "1.3.6.1.4.1.311.10.11.20"
+ "CERT_ISSUER_SERIAL_NUMBER_MD5_HASH_PROP_ID" = "1.3.6.1.4.1.311.10.11.28"
+ "CERT_SUBJECT_NAME_MD5_HASH_PROP_ID" = "1.3.6.1.4.1.311.10.11.29"
+ }
+
+ function Get-IntendedPurposePSObjects {
+ [CmdletBinding()]
+ Param(
+ [Parameter(Mandatory=$False)]
+ [System.Collections.Hashtable]$OIDHashTable
+ )
+
+ $IntendedPurpose = "Code Signing"
+ $OfficialName = "PKIX_KP_CODE_SIGNING"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Document Signing"
+ $OfficialName = "KP_DOCUMENT_SIGNING"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Client Authentication"
+ $OfficialName = "PKIX_KP_CLIENT_AUTH"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Private Key Archival"
+ $OfficialName = "KP_CA_EXCHANGE"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Directory Service Email Replication"
+ $OfficialName = "DS_EMAIL_REPLICATION"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Key Recovery Agent"
+ $OfficialName = "KP_KEY_RECOVERY_AGENT"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "OCSP Signing"
+ $OfficialName = "KP_OCSP_SIGNING"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Server Authentication"
+ $OfficialName = "PKIX_KP_SERVER_AUTH"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ ##### Below this point, Intended Purposes will be set but WILL NOT show up in the Certificate Templates Console under Intended Purpose column #####
+
+ $IntendedPurpose = "EFS"
+ $OfficialName = "KP_EFS"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Secure E-Mail"
+ $OfficialName = "PKIX_KP_EMAIL_PROTECTION"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Enrollment Agent"
+ $OfficialName = "ENROLLMENT_AGENT"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Microsoft Trust List Signing"
+ $OfficialName = "KP_CTL_USAGE_SIGNING"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Smartcard Logon"
+ $OfficialName = "IdMsKpScLogon"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "File Recovery"
+ $OfficialName = "EFS_RECOVERY"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "IPSec IKE Intermediate"
+ $OfficialName = "IPSEC_KP_IKE_INTERMEDIATE"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "KDC Authentication"
+ $OfficialName = "IdPkinitKPKdc"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ ##### Begin Newly Added #####
+ $IntendedPurpose = "Remote Desktop"
+ $OfficialName = "Remote Desktop"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ # Cannot be overridden in Certificate Request
+ $IntendedPurpose = "Windows Update"
+ $OfficialName = "Windows Update"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Windows Third Party Application Component"
+ $OfficialName = "Windows Third Party Application Component"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Windows TCB Component"
+ $OfficialName = "Windows TCB Component"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Windows Store"
+ $OfficialName = "Windows Store"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Windows Software Extension Verification"
+ $OfficialName = "Windows Software Extension Verification"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Windows RT Verification"
+ $OfficialName = "Windows RT Verification"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Windows Kits Component"
+ $OfficialName = "Windows Kits Component"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "No OCSP Failover to CRL"
+ $OfficialName = "No OCSP Failover to CRL"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Auto Update End Revocation"
+ $OfficialName = "Auto Update End Revocation"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Auto Update CA Revocation"
+ $OfficialName = "Auto Update CA Revocation"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Revoked List Signer"
+ $OfficialName = "Revoked List Signer"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Protected Process Verification"
+ $OfficialName = "Protected Process Verification"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Protected Process Light Verification"
+ $OfficialName = "Protected Process Light Verification"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Platform Certificate"
+ $OfficialName = "Platform Certificate"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Microsoft Publisher"
+ $OfficialName = "Microsoft Publisher"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Kernel Mode Code Signing"
+ $OfficialName = "Kernel Mode Code Signing"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "HAL Extension"
+ $OfficialName = "HAL Extension"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Endorsement Key Certificate"
+ $OfficialName = "Endorsement Key Certificate"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Early Launch Antimalware Driver"
+ $OfficialName = "Early Launch Antimalware Driver"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Dynamic Code Generator"
+ $OfficialName = "Dynamic Code Generator"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "DNS Server Trust"
+ $OfficialName = "DNS Server Trust"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Document Encryption"
+ $OfficialName = "Document Encryption"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Disallowed List"
+ $OfficialName = "Disallowed List"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Attestation Identity Key Certificate"
+ $OfficialName = "Attestation Identity Key Certificate"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "System Health Authentication"
+ $OfficialName = "System Health Authentication"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "CTL Usage"
+ $OfficialName = "AUTO_ENROLL_CTL_USAGE"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "IP Security End System"
+ $OfficialName = "PKIX_KP_IPSEC_END_SYSTEM"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "IP Security Tunnel Termination"
+ $OfficialName = "PKIX_KP_IPSEC_TUNNEL"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "IP Security User"
+ $OfficialName = "PKIX_KP_IPSEC_USER"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Time Stamping"
+ $OfficialName = "PKIX_KP_TIMESTAMP_SIGNING"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Microsoft Time Stamping"
+ $OfficialName = "KP_TIME_STAMP_SIGNING"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Windows Hardware Driver Verification"
+ $OfficialName = "WHQL_CRYPTO"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Windows System Component Verification"
+ $OfficialName = "NT5_CRYPTO"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "OEM Windows System Component Verification"
+ $OfficialName = "OEM_WHQL_CRYPTO"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Embedded Windows System Component Verification"
+ $OfficialName = "EMBEDDED_NT_CRYPTO"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Root List Signer"
+ $OfficialName = "ROOT_LIST_SIGNER"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Qualified Subordination"
+ $OfficialName = "KP_QUALIFIED_SUBORDINATION"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Key Recovery"
+ $OfficialName = "KP_KEY_RECOVERY"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Lifetime Signing"
+ $OfficialName = "KP_LIFETIME_SIGNING"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "Key Pack Licenses"
+ $OfficialName = "LICENSES"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+
+ $IntendedPurpose = "License Server Verification"
+ $OfficialName = "LICENSE_SERVER"
+ $OfficialOID = $OIDHashTable.$OfficialName
+ $szOIDString = "szOID_$OfficialName"
+ $CertRequestConfigFileLine = "szOID_$OfficialName = `"$OfficialOID`""
+ $ExtKeyUse = $AppPol = $OfficialOID
+
+ [pscustomobject]@{
+ IntendedPurpose = $IntendedPurpose
+ OfficialName = $OfficialName
+ OfficialOID = $OfficialOID
+ szOIDString = $szOIDString
+ CertRequestConfigFileLine = $CertRequestConfigFileLine
+ ExtKeyUse = $OfficialOID
+ AppPol = $OfficialOID
+ }
+ }
+
+ function New-UniqueString {
+ [CmdletBinding()]
+ Param(
+ [Parameter(Mandatory=$False)]
+ [string[]]$ArrayOfStrings,
+
+ [Parameter(Mandatory=$True)]
+ [string]$PossibleNewUniqueString
+ )
+
+ if (!$ArrayOfStrings -or $ArrayOfStrings.Count -eq 0 -or ![bool]$($ArrayOfStrings -match "[\w]")) {
+ $PossibleNewUniqueString
+ }
+ else {
+ $OriginalString = $PossibleNewUniqueString
+ $Iteration = 1
+ while ($ArrayOfStrings -contains $PossibleNewUniqueString) {
+ $AppendedValue = "_$Iteration"
+ $PossibleNewUniqueString = $OriginalString + $AppendedValue
+ $Iteration++
+ }
+
+ $PossibleNewUniqueString
+ }
+ }
+
+ function Install-RSAT {
+ [CmdletBinding()]
+ Param(
+ [Parameter(Mandatory=$False)]
+ [string]$DownloadDirectory = "$HOME\Downloads",
+
+ [Parameter(Mandatory=$False)]
+ [switch]$AllowRestart,
+
+ [Parameter(Mandatory=$False)]
+ [switch]$Force
+ )
+
+ Write-Host "Please wait..."
+
+ if (!$(Get-Module -ListAvailable -Name ActiveDirectory) -or $Force) {
+ $OSInfo = Get-ItemProperty 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion'
+ $OSCimInfo = Get-CimInstance Win32_OperatingSystem
+ $OSArchitecture = $OSCimInfo.OSArchitecture
+
+ if ([version]$OSCimInfo.Version -lt [version]"6.3") {
+ Write-Error "This function only handles RSAT Installation for Windows 8.1 and higher! Halting!"
+ $global:FunctionResult = "1"
+ return
+ }
+
+ if ($OSInfo.ProductName -notlike "*Server*") {
+ $KBCheck = [bool]$(Get-WmiObject -query 'select * from win32_quickfixengineering' | Where-Object {
+ $_.HotFixID -eq 'KB958830' -or $_.HotFixID -eq 'KB2693643'
+ })
+
+ if (!$KBCheck -or $Force) {
+ if ($([version]$OSCimInfo.Version).Major -lt 10 -and [version]$OSCimInfo.Version -ge [version]"6.3") {
+ if ($OSArchitecture -eq "64-bit") {
+ $OutFileName = "Windows8.1-KB2693643-x64.msu"
+ }
+ if ($OSArchitecture -eq "32-bit") {
+ $OutFileName = "Windows8.1-KB2693643-x86.msu"
+ }
+
+ $DownloadUrl = "https://download.microsoft.com/download/1/8/E/18EA4843-C596-4542-9236-DE46F780806E/$OutFileName"
+ }
+ if ($([version]$OSCimInfo.Version).Major -ge 10) {
+ if ([int]$OSInfo.ReleaseId -ge 1803) {
+ if ($OSArchitecture -eq "64-bit") {
+ $OutFileName = "WindowsTH-RSAT_WS_1803-x64.msu"
+ }
+ if ($OSArchitecture -eq "32-bit") {
+ $OutFileName = "WindowsTH-RSAT_WS_1803-x86.msu"
+ }
+ }
+ if ([int]$OSInfo.ReleaseId -ge 1709 -and [int]$OSInfo.ReleaseId -lt 1803) {
+ if ($OSArchitecture -eq "64-bit") {
+ $OutFileName = "WindowsTH-RSAT_WS_1709-x64.msu"
+ }
+ if ($OSArchitecture -eq "32-bit") {
+ $OutFileName = "WindowsTH-RSAT_WS_1709-x86.msu"
+ }
+ }
+ if ([int]$OSInfo.ReleaseId -lt 1709) {
+ if ($OSArchitecture -eq "64-bit") {
+ $OutFileName = "WindowsTH-RSAT_WS2016-x64.msu"
+ }
+ if ($OSArchitecture -eq "32-bit") {
+ $OutFileName = "WindowsTH-RSAT_WS2016-x86.msu"
+ }
+ }
+
+ $DownloadUrl = "https://download.microsoft.com/download/1/D/8/1D8B5022-5477-4B9A-8104-6A71FF9D98AB/$OutFileName"
+ }
+
+ try {
+ # Make sure the Url exists...
+ $HTTP_Request = [System.Net.WebRequest]::Create($DownloadUrl)
+ $HTTP_Response = $HTTP_Request.GetResponse()
+ }
+ catch {
+ Write-Error $_
+ $global:FunctionResult = "1"
+ return
+ }
+
+ try {
+ # Download via System.Net.WebClient is a lot faster than Invoke-WebRequest...
+ $WebClient = [System.Net.WebClient]::new()
+ $WebClient.Downloadfile($DownloadUrl, "$DownloadDirectory\$OutFileName")
+ }
+ catch {
+ Write-Error $_
+ $global:FunctionResult = "1"
+ return
+ }
+
+ Write-Host "Beginning installation..."
+ if ($AllowRestart) {
+ $Arguments = "`"$DownloadDirectory\$OutFileName`" /quiet /log:`"$DownloadDirectory\wusaRSATInstall.log`""
+ }
+ else {
+ $Arguments = "`"$DownloadDirectory\$OutFileName`" /quiet /norestart /log:`"$DownloadDirectory\wusaRSATInstall.log`""
+ }
+ #Start-Process -FilePath $(Get-Command wusa.exe).Source -ArgumentList "`"$DownloadDirectory\$OutFileName`" /quiet /log:`"$DownloadDirectory\wusaRSATInstall.log`"" -NoNewWindow -Wait
+
+ $ProcessInfo = New-Object System.Diagnostics.ProcessStartInfo
+ #$ProcessInfo.WorkingDirectory = $BinaryPath | Split-Path -Parent
+ $ProcessInfo.FileName = $(Get-Command wusa.exe).Source
+ $ProcessInfo.RedirectStandardError = $true
+ $ProcessInfo.RedirectStandardOutput = $true
+ #$ProcessInfo.StandardOutputEncoding = [System.Text.Encoding]::Unicode
+ #$ProcessInfo.StandardErrorEncoding = [System.Text.Encoding]::Unicode
+ $ProcessInfo.UseShellExecute = $false
+ $ProcessInfo.Arguments = $Arguments
+ $Process = New-Object System.Diagnostics.Process
+ $Process.StartInfo = $ProcessInfo
+ $Process.Start() | Out-Null
+ # Below $FinishedInAlottedTime returns boolean true/false
+ # Wait 20 seconds for wusa to finish...
+ $FinishedInAlottedTime = $Process.WaitForExit(20000)
+ if (!$FinishedInAlottedTime) {
+ $Process.Kill()
+ }
+ $stdout = $Process.StandardOutput.ReadToEnd()
+ $stderr = $Process.StandardError.ReadToEnd()
+ $AllOutput = $stdout + $stderr
+
+ # Check the log to make sure there weren't any errors
+ # NOTE: Get-WinEvent cmdlet does NOT work consistently on all Windows Operating Systems...
+ Write-Host "Reviewing wusa.exe logs..."
+ $EventLogReader = [System.Diagnostics.Eventing.Reader.EventLogReader]::new("$DownloadDirectory\wusaRSATInstall.log", [System.Diagnostics.Eventing.Reader.PathType]::FilePath)
+ [System.Collections.ArrayList]$EventsFromLog = @()
+
+ $Event = $EventLogReader.ReadEvent()
+ $null = $EventsFromLog.Add($Event)
+ while ($Event -ne $null) {
+ $Event = $EventLogReader.ReadEvent()
+ $null = $EventsFromLog.Add($Event)
+ }
+
+ if ($EventsFromLog.LevelDisplayName -contains "Error") {
+ $ErrorRecord = $EventsFromLog | Where-Object {$_.LevelDisplayName -eq "Error"}
+ $ProblemDetails = $ErrorRecord.Properties.Value | Where-Object {$_ -match "[\w]"}
+ $ProblemDetailsString = $ProblemDetails[0..$($ProblemDetails.Count-2)] -join ": "
+
+ $ErrMsg = "wusa.exe failed to install '$DownloadDirectory\$OutFileName' due to '$ProblemDetailsString'. " +
+ "This could be because of a pending restart. Please restart $env:ComputerName and try the Install-RSAT function again."
+ Write-Error $ErrMsg
+ $global:FunctionResult = "1"
+ return
+ }
+
+ if ($AllowRestart) {
+ Restart-Computer -Confirm:$false -Force
+ }
+ else{
+ $Output = "RestartNeeded"
+ }
+ }
+ }
+ if ($OSInfo.ProductName -like "*Server*") {
+ #Import-Module ServerManager
+ if (!$(Get-WindowsFeature RSAT-AD-Tools).Installed) {
+ Write-Host "Beginning installation..."
+ if ($AllowRestart) {
+ Install-WindowsFeature -Name RSAT -IncludeAllSubFeature -IncludeManagementTools -Restart
+ }
+ else {
+ Install-WindowsFeature -Name RSAT -IncludeAllSubFeature -IncludeManagementTools
+ $Output = "RestartNeeded"
+ }
+ }
+ }
+ }
+ else {
+ Write-Warning "RSAT is already installed! No action taken."
+ }
+
+ if ($Output -eq "RestartNeeded") {
+ Write-Warning "You must restart your computer in order to finish RSAT installation."
+ }
+
+ $Output
+ }
+
+ ##### END Helper Functions #####
+
+ ##### BEGIN Initial Variable Definition and Validation #####
+
+ # Make a working Directory Where Generated Certificates will be Saved
+ if (Test-Path $CertGenWorking) {
+ $NewDirName = New-UniqueString -PossibleNewUniqueString $($CertGenWorking | Split-Path -Leaf) -ArrayOfStrings $(Get-ChildItem -Path $($CertGenWorking | Split-Path -Parent) -Directory).Name
+ $CertGenWorking = "$CertGenWorking`_Certs_$(Get-Date -Format MMddyy_hhmmss)"
+ }
+ if (!$(Test-Path $CertGenWorking)) {
+ $null = New-Item -ItemType Directory -Path $CertGenWorking
+ }
+
+ # Check Cert:\CurrentUser\My for a Certificate with the same CN as our intended new Certificate.
+ [array]$ExistingCertInStore = Get-ChildItem Cert:\CurrentUser\My | Where-Object {$_.Subject -match "CN=$CertificateCN,"}
+ if ($ExistingCertInStore.Count -gt 0) {
+ Write-Warning "There is already a Certificate in your Certificate Store under 'Cert:\CurrentUser\My' with Common Name (CN) $CertificateCN!"
+
+ $ContinuePrompt = Read-Host -Prompt "Are you sure you want to continue? [Yes\No]"
+ while ($ContinuePrompt -notmatch "Yes|yes|Y|y|No|no|N|n") {
+ Write-Host "$ContinuePrompt is not a valid option. Please enter 'Yes' or 'No'"
+ $ContinuePrompt = Read-Host -Prompt "Are you sure you want to continue? [Yes\No]"
+ }
+
+ if ($ContinuePrompt -match "Yes|yes|Y|y") {
+ $ThumprintToAvoid = $ExistingCertInStore.Thumbprint
+ }
+ else {
+ Write-Error "User chose not proceed due to existing Certificate concerns. Halting!"
+ $global:FunctionResult = "1"
+ return
+ }
+
+ }
+
+ if (!$PSBoundParameters['BasisTemplate'] -and !$PSBoundParameters['IntendedPurposeValues']) {
+ $BasisTemplate = "WebServer"
+ }
+
+ if ($PSBoundParameters['BasisTemplate'] -and $PSBoundParameters['IntendedPurposeValues']) {
+ Write-Error "The $($MyInvocation.MyCommand.Name) function must use either the -BasisTemplate parameter or the -IntendedPurposeValues parameter! Halting!"
+ $global:FunctionResult = "1"
+ return
+ }
+
+ if (!$MachineKeySet) {
+ $MachineKeySetPrompt = "If you would like the private key exported, please enter 'False'. If you are " +
+ "creating this certificate to be used in the User's security context (like for a developer to sign their code)," +
+ "enter 'False'. If you are using this certificate for a service that runs in the Computer's security context " +
+ "(such as a Web Server, Domain Controller, etc) enter 'True' [TRUE/FALSE]"
+ $MachineKeySet = Read-Host -Prompt $MachineKeySetPrompt
+ while ($MachineKeySet -notmatch "True|False") {
+ Write-Host "$MachineKeySet is not a valid option. Please enter either 'True' or 'False'" -ForeGroundColor Yellow
+ $MachineKeySet = Read-Host -Prompt $MachineKeySetPrompt
+ }
+ }
+ $MachineKeySet = $MachineKeySet.ToUpper()
+ $PrivateKeyExportableValue = $PrivateKeyExportableValue.ToUpper()
+ $KeyUsageValueUpdated = "0x" + $KeyUsageValue
+
+ if (!$SecureEmail) {
+ $SecureEmail = Read-Host -Prompt "Are you using this new certificate for Secure E-Mail? [Yes/No]"
+ while ($SecureEmail -notmatch "Yes|No") {
+ Write-Host "$SecureEmail is not a vaild option. Please enter either 'Yes' or 'No'" -ForeGroundColor Yellow
+ $SecureEmail = Read-Host -Prompt "Are you using this new certificate for Secure E-Mail? [Yes/No]"
+ }
+ }
+ if ($SecureEmail -eq "Yes") {
+ $KeySpecValue = "2"
+ $SMIMEValue = "TRUE"
+ }
+ else {
+ $KeySpecValue = "1"
+ $SMIMEValue = "FALSE"
+ }
+
+ if (!$UserProtected) {
+ $UserProtected = Read-Host -Prompt "Would you like to password protect the keys on this certificate? [True/False]"
+ while ($UserProtected -notmatch "True|False") {
+ Write-Host "$UserProtected is not a valid option. Please enter either 'True' or 'False'"
+ $UserProtected = Read-Host -Prompt "Would you like to password protect the keys on this certificate? [True/False]"
+ }
+ }
+ if ($UserProtected -eq "True") {
+ $MachineKeySet = "FALSE"
+ }
+ $UserProtected = $UserProtected.ToUpper()
+
+ if (!$UseOpenSSL) {
+ $UseOpenSSL = Read-Host -Prompt "Would you like to use Win32 OpenSSL to extract public cert and private key from the Microsoft .pfx file? [Yes/No]"
+ while ($UseOpenSSL -notmatch "Yes|No") {
+ Write-Host "$UseOpenSSL is not a valid option. Please enter 'Yes' or 'No'"
+ $UseOpenSSL = Read-Host -Prompt "Would you like to use Win32 OpenSSL to extract public cert and private key from the Microsoft .pfx file? [Yes/No]"
+ }
+ }
+
+ $DomainPrefix = ((gwmi Win32_ComputerSystem).Domain).Split(".") | Select-Object -Index 0
+ $DomainSuffix = ((gwmi Win32_ComputerSystem).Domain).Split(".") | Select-Object -Index 1
+ $Hostname = (gwmi Win32_ComputerSystem).Name
+ $HostFQDN = $Hostname+'.'+$DomainPrefix+'.'+$DomainSuffix
+
+ # If using Win32 OpenSSL, check to make sure the path to binary is valid...
+ if ($UseOpenSSL -eq "Yes" -and !$CSRGenOnly) {
+ if ($PathToWin32OpenSSL) {
+ if (!$(Test-Path $PathToWin32OpenSSL)) {
+ $OpenSSLPathDNE = $True
+ }
+
+ $env:Path = "$PathToWin32OpenSSL;$env:Path"
+ }
+
+ # Check is openssl.exe is already available
+ if ([bool]$(Get-Command openssl -ErrorAction SilentlyContinue)) {
+ # Check to make sure the version is at least 1.1.0
+ $OpenSSLExeInfo = Get-Item $(Get-Command openssl).Source
+ $OpenSSLExeVersion = [version]$($OpenSSLExeInfo.VersionInfo.ProductVersion -split '-')[0]
+ }
+
+ # We need at least vertion 1.1.0 of OpenSSL
+ if ($OpenSSLExeVersion.Major -lt 1 -or $($OpenSSLExeVersion.Major -eq 1 -and $OpenSSLExeVersion.Minor -lt 1) -or
+ ![bool]$(Get-Command openssl -ErrorAction SilentlyContinue)
+ ) {
+ [Net.ServicePointManager]::SecurityProtocol = "tls12, tls11, tls"
+ $OpenSSLWinBinariesUrl = "http://wiki.overbyte.eu/wiki/index.php/ICS_Download"
+ $IWRResult = Invoke-WebRequest -Uri $OpenSSLWinBinariesUrl
+ $LatestOpenSSLWinBinaryLinkObj = $($IWRResult.Links | Where-Object {$_.innerText -match "OpenSSL Binaries" -and $_.href -match "\.zip"})[0]
+ $LatestOpenSSLWinBinaryUrl = $LatestOpenSSLWinBinaryLinkObj.href
+ $OutputFileName = $($LatestOpenSSLWinBinaryUrl -split '/')[-1]
+ $OutputFilePath = "$HOME\Downloads\$OutputFileName"
+ Invoke-WebRequest -Uri $LatestOpenSSLWinBinaryUrl -OutFile $OutputFilePath
+
+ if (!$(Test-Path "$HOME\Downloads\$OutputFileName")) {
+ Write-Error "Problem downloading the latest OpenSSL Windows Binary from $LatestOpenSSLWinBinaryUrl ! Halting!"
+ $global:FunctionResult = "1"
+ return
+ }
+
+ $OutputFileItem = Get-Item $OutputFilePath
+ $ExpansionDirectory = $OutputFileItem.Directory.FullName + "\" + $OutputFileItem.BaseName
+ if (!$(Test-Path $ExpansionDirectory)) {
+ $null = New-Item -ItemType Directory -Path $ExpansionDirectory -Force
+ }
+ else {
+ Remove-Item "$ExpansionDirectory\*" -Recurse -Force
+ }
+
+ $null = Expand-Archive -Path "$HOME\Downloads\$OutputFileName" -DestinationPath $ExpansionDirectory -Force
+
+ # Add $ExpansionDirectory to $env:Path
+ $CurrentEnvPathArray = $env:Path -split ";"
+ if ($CurrentEnvPathArray -notcontains $ExpansionDirectory) {
+ # Place $ExpansionDirectory at start so latest openssl.exe get priority
+ $env:Path = "$ExpansionDirectory;$env:Path"
+ }
+ }
+
+ if (![bool]$(Get-Command openssl -ErrorAction SilentlyContinue)) {
+ Write-Error "Problem setting openssl.exe to `$env:Path! Halting!"
+ $global:FunctionResult = "1"
+ return
+ }
+
+ $PathToWin32OpenSSL = $(Get-Command openssl).Source | Split-Path -Parent
+ }
+
+ # Check for contradictions in $MachineKeySet value and $PrivateKeyExportableValue and $UseOpenSSL
+ if ($MachineKeySet -eq "TRUE" -and $PrivateKeyExportableValue -eq "TRUE") {
+ $WrnMsg = "MachineKeySet and PrivateKeyExportableValue have both been set to TRUE, but " +
+ "Private Key cannot be exported if MachineKeySet = TRUE!"
+ Write-Warning $WrnMsg
+
+ $ShouldPrivKeyBeExportable = Read-Host -Prompt "Would you like the Private Key to be exportable? [Yes/No]"
+ while ($ShouldPrivKeyBeExportable -notmatch "Yes|yes|Y|y|No|no|N|n") {
+ Write-Host "$ShouldPrivKeyBeExportable is not a valid option. Please enter either 'Yes' or 'No'" -ForeGroundColor Yellow
+ $ShouldPrivKeyBeExportable = Read-Host -Prompt "Would you like the Private Key to be exportable? [Yes/No]"
+ }
+ if ($ShouldPrivKeyBeExportable -match "Yes|yes|Y|y") {
+ $MachineKeySet = "FALSE"
+ $PrivateKeyExportableValue = "TRUE"
+ }
+ else {
+ $MachineKeySet = "TRUE"
+ $PrivateKeyExportableValue = "FALSE"
+ }
+ }
+ if ($MachineKeySet -eq "TRUE" -and $UseOpenSSL -eq "Yes") {
+ $WrnMsg = "MachineKeySet and UseOpenSSL have both been set to TRUE. OpenSSL targets a .pfx file exported from the " +
+ "local Certificate Store. If MachineKeySet is set to TRUE, no .pfx file will be exported from the " +
+ "local Certificate Store!"
+ Write-Warning $WrnMsg
+ $ShouldUseOpenSSL = Read-Host -Prompt "Would you like to use OpenSSL in order to generate keys in formats compatible with Linux? [Yes\No]"
+ while ($ShouldUseOpenSSL -notmatch "Yes|yes|Y|y|No|no|N|n") {
+ Write-Host "$ShouldUseOpenSSL is not a valid option. Please enter either 'Yes' or 'No'" -ForeGroundColor Yellow
+ $ShouldUseOpenSSL = Read-Host -Prompt "Would you like to use OpenSSL in order to generate keys in formats compatible with Linux? [Yes\No]"
+ }
+ if ($ShouldUseOpenSSL -match "Yes|yes|Y|y") {
+ $MachineKeySet = "FALSE"
+ $UseOpenSSL = "Yes"
+ }
+ else {
+ $MachineKeySet = "TRUE"
+ $UseOpenSSL = "No"
+ }
+ }
+ if ($MachineKeySet -eq "FALSE" -and $PFXPwdAsSecureString -eq $null -and !$CSRGenOnly) {
+ $PFXPwdAsSecureStringA = Read-Host -Prompt "Please enter a password to use when exporting .pfx bundle certificate/key bundle" -AsSecureString
+ $PFXPwdAsSecureStringB = Read-Host -Prompt "Please enter the same password again" -AsSecureString
+
+ while ([Runtime.InteropServices.Marshal]::PtrToStringAuto([Runtime.InteropServices.Marshal]::SecureStringToBSTR($PFXPwdAsSecureStringA)) -ne
+ [Runtime.InteropServices.Marshal]::PtrToStringAuto([Runtime.InteropServices.Marshal]::SecureStringToBSTR($PFXPwdAsSecureStringB))
+ ) {
+ Write-Warning "Passwords don't match!"
+ $PFXPwdAsSecureStringA = Read-Host -Prompt "Please enter a password to use when exporting .pfx bundle certificate/key bundle" -AsSecureString
+ $PFXPwdAsSecureStringB = Read-Host -Prompt "Please enter the same password again" -AsSecureString
+ }
+
+ $PFXPwdAsSecureString = $PFXPwdAsSecureStringA
+ }
+
+ if (!$CSRGenOnly) {
+ if ($PFXPwdAsSecureString.GetType().Name -eq "String") {
+ $PFXPwdAsSecureString = ConvertTo-SecureString -String $PFXPwdAsSecureString -Force -AsPlainText
+ }
+ }
+
+ # If the workstation being used to request the Certificate is part of the same Domain as the Issuing Certificate Authority, leverage certutil...
+ if (!$ADCSWebEnrollmentUrl -and !$CSRGenOnly) {
+ #$NeededRSATFeatures = @("RSAT","RSAT-Role-Tools","RSAT-AD-Tools","RSAT-AD-PowerShell","RSAT-ADDS","RSAT-AD-AdminCenter","RSAT-ADDS-Tools","RSAT-ADLDS")
+
+ if (!$(Get-Module -ListAvailable -Name ActiveDirectory)) {
+ try {
+ $InstallRSATResult = Install-RSAT -ErrorAction Stop
+ if ($InstallRSATResult -eq "RestartNeeded") {
+ throw "$env:ComputerName must be restarted post RSAT install! Please restart at your earliest convenience and try the Generate-Certificate funciton again."
+ }
+ }
+ catch {
+ Write-Error $_
+ $global:FunctionResult = "1"
+ return
+ }
+ }
+ if (!$(Get-Module -ListAvailable -Name ActiveDirectory)) {
+ Write-Error "Problem installing the ActiveDirectory PowerShell Module (via RSAT installation). Halting!"
+ $global:FunctionResult = "1"
+ return
+ }
+ if ($(Get-Module).Name -notcontains "ActiveDirectory") {
+ try {
+ Import-Module ActiveDirectory -ErrorAction Stop
+ }
+ catch {
+ Write-Error $_
+ $global:FunctionResult = "1"
+ return
+ }
+ }
+
+ $AvailableCertificateAuthorities = (((certutil | Select-String -Pattern "Config:") -replace "Config:[\s]{1,32}``") -replace "'","").trim()
+ $IssuingCertAuth = foreach ($obj1 in $AvailableCertificateAuthorities) {
+ $obj2 = certutil -config $obj1 -CAInfo type | Select-String -Pattern "Enterprise Subordinate CA" | Select-Object -ExpandProperty Matches | Select-Object -ExpandProperty Value
+ if ($obj2 -eq "Enterprise Subordinate CA") {
+ $obj1
+ }
+ }
+ $IssuingCertAuthFQDN = $IssuingCertAuth.Split("\") | Select-Object -Index 0
+ $IssuingCertAuthHostname = $IssuingCertAuth.Split("\") | Select-Object -Index 1
+ $null = certutil -config $IssuingCertAuth -ping
+ if ($LASTEXITCODE -eq 0) {
+ Write-Host "Successfully contacted the Issuing Certificate Authority: $IssuingCertAuth"
+ }
+ else {
+ Write-Host "Cannot contact the Issuing Certificate Authority: $IssuingCertAuth. Halting!"
+ $global:FunctionResult = "1"
+ return
+ }
+
+ if ($PSBoundParameters['BasisTemplate']) {
+ # $AllAvailableCertificateTemplates Using PSPKI
+ # $AllAvailableCertificateTemplates = Get-PSPKICertificateTemplate
+ # Using certutil
+ $AllAvailableCertificateTemplatesPrep = certutil -ADTemplate
+ # Determine valid CN using PSPKI
+ # $ValidCertificateTemplatesByCN = $AllAvailableCertificateTemplatesPrep.Name
+ # Determine valid displayNames using certutil
+ $ValidCertificateTemplatesByCN = foreach ($obj1 in $AllAvailableCertificateTemplatesPrep) {
+ $obj2 = $obj1 | Select-String -Pattern "[\w]{1,32}:[\s][\w]" | Select-Object -ExpandProperty Matches | Select-Object -ExpandProperty Value
+ $obj3 = $obj2 -replace ':[\s][\w]',''
+ $obj3
+ }
+ # Determine valid displayNames using PSPKI
+ # $ValidCertificateTemplatesByDisplayName = $AllAvailableCertificateTemplatesPrep.DisplayName
+ # Determine valid displayNames using certutil
+ $ValidCertificateTemplatesByDisplayName = foreach ($obj1 in $AllAvailableCertificateTemplatesPrep) {
+ $obj2 = $obj1 | Select-String -Pattern "\:(.*)\-\-" | Select-Object -ExpandProperty Matches | Select-Object -ExpandProperty Value
+ $obj3 = ($obj2 -replace ": ","") -replace " --",""
+ $obj3
+ }
+
+ if ($ValidCertificateTemplatesByCN -notcontains $BasisTemplate -and $ValidCertificateTemplatesByDisplayName -notcontains $BasisTemplate) {
+ $TemplateMsg = "You must base your New Certificate Template on an existing Certificate Template.`n" +
+ "To do so, please enter either the displayName or CN of the Certificate Template you would like to use as your base.`n" +
+ "Valid displayName values are as follows:`n$($ValidDisplayNamesAsString -join "`n")`n" +
+ "Valid CN values are as follows:`n$($ValidCNNamesAsString -join "`n")"
+
+ $BasisTemplate = Read-Host -Prompt "Please enter the displayName or CN of the Certificate Template you would like to use as your base"
+ while ($($ValidCertificateTemplatesByCN + $ValidCertificateTemplatesByDisplayName) -notcontains $BasisTemplate) {
+ Write-Host "$BasisTemplate is not a valid displayName or CN of an existing Certificate Template on Issuing Certificate Authority $IssuingCertAuth!" -ForeGroundColor Yellow
+ $BasisTemplate = Read-Host -Prompt "Please enter the displayName or CN of the Certificate Template you would like to use as your base"
+ }
+ }
+
+ # Get all Certificate Template Properties of the Basis Template
+ $LDAPSearchBase = "CN=Certificate Templates,CN=Public Key Services,CN=Services,CN=Configuration,DC=$DomainPrefix,DC=$DomainSuffix"
+
+ # Set displayName and CN Values for user-provided $BasisTemplate
+ if ($ValidCertificateTemplatesByCN -contains $BasisTemplate) {
+ $cnForBasisTemplate = $BasisTemplate
+ $CertificateTemplateLDAPObject = Get-ADObject -SearchBase $LDAPSearchBase -Filter {cn -eq $cnForBasisTemplate}
+ $AllCertificateTemplateProperties = Get-ADObject -SearchBase $LDAPSearchBase -Filter {cn -eq $cnForBasisTemplate} -Properties *
+ $displayNameForBasisTemplate = $AllCertificateTemplateProperties.DisplayName
+ }
+ if ($ValidCertificateTemplatesByDisplayName -contains $BasisTemplate) {
+ $displayNameForBasisTemplate = $BasisTemplate
+ $CertificateTemplateLDAPObject = Get-ADObject -SearchBase $LDAPSearchBase -Filter {displayName -eq $displayNameForBasisTemplate}
+ $AllCertificateTemplateProperties = Get-ADObject -SearchBase $LDAPSearchBase -Filter {displayName -eq $displayNameForBasisTemplate} -Properties *
+ $cnForBasisTemplate = $AllCertificateTemplateProperties.CN
+ }
+
+ # Validate $ProviderNameValue
+ # All available Cryptographic Providers (CSPs) are as follows:
+ $PossibleProvidersPrep = certutil -csplist | Select-String "Provider Name" -Context 0,1
+ $PossibleProviders = foreach ($obj1 in $PossibleProvidersPrep) {
+ $obj2 = $obj1.Context.PostContext | Select-String 'FAIL' | Select-Object -ExpandProperty Matches | Select-Object -ExpandProperty Success
+ $obj3 = $obj1.Context.PostContext | Select-String 'not ready' | Select-Object -ExpandProperty Matches | Select-Object -ExpandProperty Success
+ if ($obj2 -ne "True" -and $obj3 -ne "True") {
+ $obj1.Line -replace "Provider Name: ",""
+ }
+ }
+ # Available Cryptographic Providers (CSPs) based on user choice in Certificate Template (i.e. $BasisTemplate)
+ # Does the Basis Certificate Template LDAP Object have an attribute called pKIDefaultCSPs that is set?
+ $CertificateTemplateLDAPObjectSetAttributes = $AllCertificateTemplateProperties.PropertyNames
+ if ($CertificateTemplateLDAPObjectSetAttributes -notcontains "pKIDefaultCSPs") {
+ $PKIMsg = "The Basis Template $BasisTemplate does NOT have the attribute pKIDefaultCSPs set. " +
+ "This means that Cryptographic Providers are NOT Limited, and (almost) any ProviderNameValue is valid"
+ Write-Host $PKIMsg
+ }
+ else {
+ $AvailableCSPsBasedOnCertificateTemplate = $AllCertificateTemplateProperties.pkiDefaultCSPs -replace '[0-9],',''
+ if ($AvailableCSPsBasedOnCertificateTemplate -notcontains $ProviderNameValue) {
+ Write-Warning "$ProviderNameValue is not one of the available Provider Names on Certificate Template $BasisTemplate!"
+ Write-Host "Valid Provider Names based on your choice in Basis Certificate Template are as follows:`n$($AvailableCSPsBasedOnCertificateTemplate -join "`n")"
+ $ProviderNameValue = Read-Host -Prompt "Please enter the name of the Cryptographic Provider (CSP) you would like to use"
+ while ($AvailableCSPsBasedOnCertificateTemplate -notcontains $ProviderNameValue) {
+ Write-Warning "$ProviderNameValue is not one of the available Provider Names on Certificate Template $BasisTemplate!"
+ Write-Host "Valid Provider Names based on your choice in Basis Certificate Template are as follows:`n$($AvailableCSPsBasedOnCertificateTemplate -join "`n")"
+ $ProviderNameValue = Read-Host -Prompt "Please enter the name of the Cryptographic Provider (CSP) you would like to use"
+ }
+ }
+ }
+ }
+ }
+ # If the workstation being used to request the Certificate is NOT part of the same Domain as the Issuing Certificate Authority, use ADCS Web Enrollment Site...
+ if ($ADCSWebEnrollmentUrl -and !$CSRGenOnly) {
+ # Make sure there is no trailing / on $ADCSWebEnrollmentUrl
+ if ($ADCSWebEnrollmentUrl.EndsWith('/')) {
+ $ADCSWebEnrollmentUrl = $ADCSWebEnrollmentUrl.Substring(0,$ADCSWebEnrollmentUrl.Length-1)
+ }
+
+ # The IIS Web Server hosting ADCS Web Enrollment may be configured for Windows Authentication, Basic Authentication, or both.
+ if ($ADCSWebAuthType -eq "Windows") {
+ if (!$ADCSWebCreds) {
+ if (!$ADCSWebAuthUserName) {
+ $ADCSWebAuthUserName = Read-Host -Prompt "Please specify the AD account to be used for ADCS Web Enrollment authentication."
+ # IMPORTANT NOTE: $ADCSWebAuthUserName should NOT include the domain prefix. Example: testadmin
+ }
+ if ($ADCSWebAuthUserName -match "[\w\W]\\[\w\W]") {
+ $ADCSWebAuthUserName = $ADCSWebAuthUserName.Split("\")[1]
+ }
+
+ if (!$ADCSWebAuthPass) {
+ $ADCSWebAuthPass = Read-Host -Prompt "Please enter a password to be used for ADCS Web Enrollment authentication" -AsSecureString
+ }
+
+ $ADCSWebCreds = New-Object System.Management.Automation.PSCredential ($ADCSWebAuthUserName, $ADCSWebAuthPass)
+ }
+
+ # Test Connection to $ADCSWebEnrollmentUrl
+ # Validate $ADCSWebEnrollmentUrl...
+ $StatusCode = $(Invoke-WebRequest -Uri "$ADCSWebEnrollmentUrl/" -Credential $ADCSWebCreds).StatusCode
+ if ($StatusCode -eq "200") {
+ Write-Host "Connection to $ADCSWebEnrollmentUrl was successful...continuing"
+ }
+ else {
+ Write-Host "Connection to $ADCSWebEnrollmentUrl was NOT successful. Please check your credentials and/or DNS."
+ $global:FunctionResult = "1"
+ return
+ }
+ }
+ if ($ADCSWebAuthType -eq "Basic") {
+ if (!$ADCSWebAuthUserName) {
+ $PromptMsg = "Please specify the AD account to be used for ADCS Web Enrollment authentication. " +
+ "Please *include* the domain prefix. Example: test\testadmin"
+ $ADCSWebAuthUserName = Read-Host -Prompt $PromptMsg
+ }
+ while (![bool]$($ADCSWebAuthUserName -match "[\w\W]\\[\w\W]")) {
+ Write-Host "Please include the domain prefix before the username. Example: test\testadmin"
+ $ADCSWebAuthUserName = Read-Host -Prompt $PromptMsg
+ }
+
+ if (!$ADCSWebAuthPass) {
+ $ADCSWebAuthPass = Read-Host -Prompt "Please enter a password to be used for ADCS Web Enrollment authentication" -AsSecureString
+ }
+ # If $ADCSWebAuthPass is a Secure String, convert it back to Plaintext
+ if ($ADCSWebAuthPass.GetType().Name -eq "SecureString") {
+ $ADCSWebAuthPass = [Runtime.InteropServices.Marshal]::PtrToStringAuto([Runtime.InteropServices.Marshal]::SecureStringToBSTR($ADCSWebAuthPass))
+ }
+
+ $pair = "${$ADCSWebAuthUserName}:${$ADCSWebAuthPass}"
+ $bytes = [System.Text.Encoding]::ASCII.GetBytes($pair)
+ $base64 = [System.Convert]::ToBase64String($bytes)
+ $basicAuthValue = "Basic $base64"
+ $headers = @{Authorization = $basicAuthValue}
+
+ # Test Connection to $ADCSWebEnrollmentUrl
+ # Validate $ADCSWebEnrollmentUrl...
+ $StatusCode = $(Invoke-WebRequest -Uri "$ADCSWebEnrollmentUrl/" -Headers $headers).StatusCode
+ if ($StatusCode -eq "200") {
+ Write-Host "Connection to $ADCSWebEnrollmentUrl was successful...continuing" -ForeGroundColor Green
+ }
+ else {
+ Write-Error "Connection to $ADCSWebEnrollmentUrl was NOT successful. Please check your credentials and/or DNS."
+ $global:FunctionResult = "1"
+ return
+ }
+ }
+
+ if ($PSBoundParameters['BasisTemplate']) {
+ # Check available Certificate Templates...
+ if ($ADCSWebAuthType -eq "Windows") {
+ $CertTemplCheckInitialResponse = Invoke-WebRequest -Uri "$ADCSWebEnrollmentUrl/certrqxt.asp" -Credential $ADCSWebCreds
+ }
+ if ($ADCSWebAuthType -eq "Basic") {
+ $CertTemplCheckInitialResponse = Invoke-WebRequest -Uri "$ADCSWebEnrollmentUrl/certrqxt.asp" -Headers $headers
+ }
+
+ $ValidADCSWebEnrollCertTemplatesPrep = ($CertTemplCheckInitialResponse.RawContent.Split("`r") | Select-String -Pattern 'Option Value=".*').Matches.Value
+ $ValidADCSWEbEnrollCertTemplates = foreach ($obj1 in $ValidADCSWebEnrollCertTemplatesPrep) {
+ $obj1.Split(";")[1]
+ }
+ # Validate specified Certificate Template...
+ while ($ValidADCSWebEnrollCertTemplates -notcontains $BasisTemplate) {
+ Write-Warning "$BasisTemplate is not on the list of available Certificate Templates on the ADCS Web Enrollment site."
+ $DDMsg = "IMPORTANT NOTE: For a Certificate Template to appear in the Certificate Template drop-down on the ADCS " +
+ "Web Enrollment site, the msPKITemplateSchemaVersion attribute MUST BE '2' or '1' AND pKIExpirationPeriod MUST " +
+ "BE 1 year or LESS"
+ Write-Host $DDMsg -ForeGroundColor Yellow
+ Write-Host "Certificate Templates available via ADCS Web Enrollment are as follows:`n$($ValidADCSWebEnrollCertTemplates -join "`n")"
+ $BasisTemplate = Read-Host -Prompt "Please enter the name of an existing Certificate Template that you would like your New Certificate to be based on"
+ }
+
+ $CertTemplvsCSPHT = @{}
+ $ValidADCSWebEnrollCertTemplatesPrep | foreach {
+ $key = $($_ -split ";")[1]
+ $value = [array]$($($_ -split ";")[8] -split "\?")
+ $CertTemplvsCSPHT.Add($key,$value)
+ }
+
+ $ValidADCSWebEnrollCSPs = $CertTemplvsCSPHT.$BasisTemplate
+
+ while ($ValidADCSWebEnrollCSPs -notcontains $ProviderNameValue) {
+ $PNMsg = "$ProviderNameVaule is not a valid Provider Name. Valid Provider Names based on your choice in Basis " +
+ "Certificate Template are as follows:`n$($ValidADCSWebEnrollCSPs -join "`n")"
+ Write-Host $PNMsg
+ $ProviderNameValue = Read-Host -Prompt "Please enter the name of the Cryptographic Provider (CSP) you would like to use"
+ }
+ }
+ }
+
+
+
+ ##### END Initial Variable Definition and Validation #####
+
+ ##### BEGIN Writing the Certificate Request Config File #####
+
+ # This content is saved to $CertGenWorking\$CertificateRequestConfigFile
+ # For more information about the contents of the config file, see: https://technet.microsoft.com/en-us/library/hh831574(v=ws.11).aspx
+
+ Set-Content -Value '[Version]' -Path "$CertGenWorking\$CertificateRequestConfigFile"
+ Add-Content -Value 'Signature="$Windows NT$"' -Path "$CertGenWorking\$CertificateRequestConfigFile"
+ Add-Content -Value "`n`r" -Path "$CertGenWorking\$CertificateRequestConfigFile"
+ Add-Content -Value '[NewRequest]' -Path "$CertGenWorking\$CertificateRequestConfigFile"
+ Add-Content -Value "FriendlyName = $CertificateCN" -Path "$CertGenWorking\$CertificateRequestConfigFile"
+
+ # For below Subject, for a wildcard use "CN=*.DOMAIN.COM"
+ Add-Content -Value "Subject = `"CN=$CertificateCN,OU=$OrganizationalUnit,O=$Organization,L=$Locality,S=$State,C=$Country`"" -Path $CertGenWorking\$CertificateRequestConfigFile
+
+ Add-Content -Value "KeyLength = $KeyLength" -Path "$CertGenWorking\$CertificateRequestConfigFile"
+
+ Add-Content -Value "HashAlgorithm = $HashAlgorithmValue" -Path "$CertGenWorking\$CertificateRequestConfigFile"
+
+ Add-Content -Value "EncryptionAlgorithm = $EncryptionAlgorithmValue" -Path "$CertGenWorking\$CertificateRequestConfigFile"
+
+ Add-Content -Value "Exportable = $PrivateKeyExportableValue" -Path "$CertGenWorking\$CertificateRequestConfigFile"
+
+ Add-Content -Value "KeySpec = $KeySpecValue" -Path "$CertGenWorking\$CertificateRequestConfigFile"
+
+ Add-Content -Value "KeyUsage = $KeyUsageValueUpdated" -Path "$CertGenWorking\$CertificateRequestConfigFile"
+
+ Add-Content -Value "MachineKeySet = $MachineKeySet" -Path "$CertGenWorking\$CertificateRequestConfigFile"
+
+ Add-Content -Value "SMIME = $SMIMEValue" -Path "$CertGenWorking\$CertificateRequestConfigFile"
+
+ Add-Content -Value 'PrivateKeyArchive = FALSE' -Path "$CertGenWorking\$CertificateRequestConfigFile"
+
+ Add-Content -Value "UserProtected = $UserProtected" -Path "$CertGenWorking\$CertificateRequestConfigFile"
+
+ Add-Content -Value 'UseExistingKeySet = FALSE' -Path "$CertGenWorking\$CertificateRequestConfigFile"
+
+ # Next, get the $ProviderTypeValue based on $ProviderNameValue
+ if ($PSBoundParameters['BasisTemplate']) {
+ $ProviderTypeValuePrep = certutil -csplist | Select-String $ProviderNameValue -Context 0,1
+ $ProviderTypeValue = $ProviderTypeValuePrep.Context.PostContext | Select-String -Pattern '[0-9]{1,2}' | Select-Object -ExpandProperty Matches | Select-Object -ExpandProperty Value
+ Add-Content -Value "ProviderName = `"$ProviderNameValue`"" -Path "$CertGenWorking\$CertificateRequestConfigFile"
+ Add-Content -Value "ProviderType = $ProviderTypeValue" -Path "$CertGenWorking\$CertificateRequestConfigFile"
+ }
+ else {
+ $ProviderNameValue = "Microsoft RSA SChannel Cryptographic Provider"
+ $ProviderTypeValue = "12"
+ Add-Content -Value "ProviderName = `"$ProviderNameValue`"" -Path "$CertGenWorking\$CertificateRequestConfigFile"
+ Add-Content -Value "ProviderType = $ProviderTypeValue" -Path "$CertGenWorking\$CertificateRequestConfigFile"
+ }
+
+ Add-Content -Value "RequestType = $RequestTypeValue" -Path "$CertGenWorking\$CertificateRequestConfigFile"
+
+ <#
+ TODO: Logic for self-signed and/or self-issued certificates that DO NOT generate a CSR and DO NOT submit to Certificate Authority
+ if ($RequestTypeValue -eq "Cert") {
+ $ValidityPeriodValue = Read-Host -Prompt "Please enter the length of time that the certificate will be valid for.
+ #NOTE: Values must be in Months or Years. For example '6 months' or '2 years'"
+ $ValidityPeriodPrep = $ValidityPeriodValue.Split(" ") | Select-Object -Index 1
+ if ($ValidityPeriodPrep.EndsWith("s")) {
+ $ValidityPeriod = $ValidityPeriodPrep.substring(0,1).toupper()+$validityPeriodPrep.substring(1).tolower()
+ }
+ else {
+ $ValidityPeriod = $ValidityPeriodPrep.substring(0,1).toupper()+$validityPeriodPrep.substring(1).tolower()+'s'
+ }
+ $ValidityPeriodUnits = $ValidityPeriodValue.Split(" ") | Select-Object -Index 0
+
+ Add-Content -Value "ValidityPeriodUnits = $ValidityPeriodUnits" -Path "$CertGenWorking\$CertificateRequestConfigFile"
+ Add-Content -Value "ValidityPeriod = $ValidityPeriod" -Path "$CertGenWorking\$CertificateRequestConfigFile"
+ }
+ #>
+
+ $GetIntendedPurposePSObjects = Get-IntendedPurposePSObjects -OIDHashTable $OIDHashTable
+ [System.Collections.ArrayList]$RelevantPSObjects = @()
+ if ($IntendedPurposeValues) {
+ foreach ($IntendedPurposeValue in [array]$IntendedPurposeValues) {
+ foreach ($PSObject in $GetIntendedPurposePSObjects) {
+ if ($IntendedPurposeValue -eq $PSObject.IntendedPurpose) {
+ $null = $RelevantPSObjects.Add($PSObject)
+ }
+ }
+ }
+ }
+ else {
+ [array]$OfficialOIDs = $AllCertificateTemplateProperties.pKIExtendedKeyUsage
+
+ [System.Collections.ArrayList]$RelevantPSObjects = @()
+ foreach ($OID in $OfficialOIDs) {
+ foreach ($PSObject in $GetIntendedPurposePSObjects) {
+ if ($OID -eq $PSObject.OfficialOID) {
+ $null = $RelevantPSObjects.Add($PSObject)
+ }
+ }
+ }
+ }
+
+ if ($IntendedPurposeValues) {
+ Add-Content -Value "`n`r" -Path "$CertGenWorking\$CertificateRequestConfigFile"
+ Add-Content -Value '[Strings]' -Path "$CertGenWorking\$CertificateRequestConfigFile"
+ Add-Content -Value 'szOID_ENHANCED_KEY_USAGE = "2.5.29.37"' -Path "$CertGenWorking\$CertificateRequestConfigFile"
+
+ foreach ($line in $RelevantPSObjects.CertRequestConfigFileLine) {
+ Add-Content -Value $line -Path "$CertGenWorking\$CertificateRequestConfigFile"
+ }
+
+ Add-Content -Value "`n`r" -Path "$CertGenWorking\$CertificateRequestConfigFile"
+ Add-Content -Value '[Extensions]' -Path "$CertGenWorking\$CertificateRequestConfigFile"
+
+ [array]$szOIDArray = $RelevantPSObjects.szOIDString
+ $szOIDArrayFirstItem = $szOIDArray[0]
+ Add-Content -Value "%szOID_ENHANCED_KEY_USAGE%=`"{text}%$szOIDArrayFirstItem%,`"" -Path "$CertGenWorking\$CertificateRequestConfigFile"
+
+ foreach ($string in $szOIDArray[1..$($szOIDArray.Count-1)]) {
+ Add-Content -Value "_continue_ = `"%$string%`"" -Path "$CertGenWorking\$CertificateRequestConfigFile"
+ }
+ }
+
+ if ($SANObjectsToAdd) {
+ if (![bool]$($(Get-Content "$CertGenWorking\$CertificateRequestConfigFile") -match "\[Extensions\]")) {
+ Add-Content -Value "`n`r" -Path "$CertGenWorking\$CertificateRequestConfigFile"
+ Add-Content -Value '[Extensions]' -Path "$CertGenWorking\$CertificateRequestConfigFile"
+ }
+
+ Add-Content -Value '2.5.29.17 = "{text}"' -Path "$CertGenWorking\$CertificateRequestConfigFile"
+
+ if ($SANObjectsToAdd -contains "DNS") {
+ if (!$DNSSANObjects) {
+ $DNSSANObjects = Read-Host -Prompt "Please enter one or more DNS SAN objects separated by commas`nExample: www.fabrikam.com, www.contoso.org"
+ $DNSSANObjects = $DNSSANObjects.Split(",").Trim()
+ }
+
+ foreach ($DNSSAN in $DNSSANObjects) {
+ Add-Content -Value "_continue_ = `"dns=$DNSSAN&`"" -Path "$CertGenWorking\$CertificateRequestConfigFile"
+ }
+ }
+ if ($SANObjectsToAdd -contains "Distinguished Name") {
+ if (!$DistinguishedNameSANObjects) {
+ $DNMsg = "Please enter one or more Distinguished Name SAN objects ***separated by semi-colons***`n" +
+ "Example: CN=www01,OU=Web Servers,DC=fabrikam,DC=com; CN=www01,OU=Load Balancers,DC=fabrikam,DC=com"
+ $DistinguishedNameSANObjects = Read-Host -Prompt $DNMsg
+ $DistinguishedNameSANObjects = $DistinguishedNameSANObjects.Split(";").Trim()
+ }
+
+ foreach ($DNObj in $DistinguishedNameSANObjects) {
+ Add-Content -Value "_continue_ = `"dn=$DNObj&`"" -Path "$CertGenWorking\$CertificateRequestConfigFile"
+ }
+ }
+ if ($SANObjectsToAdd -contains "URL") {
+ if (!$URLSANObjects) {
+ $URLMsg = "Please enter one or more URL SAN objects separated by commas`nExample: " +
+ "http://www.fabrikam.com, http://www.contoso.com"
+ $URLSANObjects = Read-Host -Prompt $URLMsg
+ $URLSANObjects = $URLSANObjects.Split(",").Trim()
+ }
+
+ foreach ($UrlObj in $URLSANObjects) {
+ Add-Content -Value "_continue_ = `"url=$UrlObj&`"" -Path "$CertGenWorking\$CertificateRequestConfigFile"
+ }
+ }
+ if ($SANObjectsToAdd -contains "IP Address") {
+ if (!$IPAddressSANObjects) {
+ $IPAddressSANObjects = Read-Host -Prompt "Please enter one or more IP Addresses separated by commas`nExample: 172.31.10.13, 192.168.2.125"
+ $IPAddressSANObjects = $IPAddressSANObjects.Split(",").Trim()
+ }
+
+ foreach ($IPAddr in $IPAddressSANObjects) {
+ if (!$(Test-IsValidIPAddress -IPAddress $IPAddr)) {
+ Write-Error "$IPAddr is not a valid IP Address! Halting!"
+
+ # Cleanup
+ Remove-Item $CertGenWorking -Recurse -Force
+
+ $global:FunctionResult = "1"
+ return
+ }
+ }
+
+ foreach ($IPAddr in $IPAddressSANObjects) {
+ Add-Content -Value "_continue_ = `"ipaddress=$IPAddr&`"" -Path "$CertGenWorking\$CertificateRequestConfigFile"
+ }
+ }
+ if ($SANObjectsToAdd -contains "Email") {
+ if (!$EmailSANObjects) {
+ $EmailSANObjects = Read-Host -Prompt "Please enter one or more Email SAN objects separated by commas`nExample: mike@fabrikam.com, hazem@fabrikam.com"
+ $EmailSANObjects = $EmailSANObjects.Split(",").Trim()
+ }
+
+ foreach ($EmailAddr in $EmailSANObjectsArray) {
+ Add-Content -Value "_continue_ = `"email=$EmailAddr&`"" -Path "$CertGenWorking\$CertificateRequestConfigFile"
+ }
+ }
+ if ($SANObjectsToAdd -contains "UPN") {
+ if (!$UPNSANObjects) {
+ $UPNSANObjects = Read-Host -Prompt "Please enter one or more UPN SAN objects separated by commas`nExample: mike@fabrikam.com, hazem@fabrikam.com"
+ $UPNSANObjects = $UPNSANObjects.Split(",").Trim()
+ }
+
+ foreach ($UPN in $UPNSANObjects) {
+ Add-Content -Value "_continue_ = `"upn=$UPN&`"" -Path "$CertGenWorking\$CertificateRequestConfigFile"
+ }
+ }
+ if ($SANObjectsToAdd -contains "GUID") {
+ if (!$GUIDSANObjects) {
+ $GUIDMsg = "Please enter one or more GUID SAN objects separated by commas`nExample: " +
+ "f7c3ac41-b8ce-4fb4-aa58-3d1dc0e36b39, g8D4ac41-b8ce-4fb4-aa58-3d1dc0e47c48"
+ $GUIDSANObjects = Read-Host -Prompt $GUIDMsg
+ $GUIDSANObjects = $GUIDSANObjects.Split(",").Trim()
+ }
+
+ foreach ($GUID in $GUIDSANObjectsArray) {
+ Add-Content -Value "_continue_ = `"guid=$GUID&`"" -Path "$CertGenWorking\$CertificateRequestConfigFile"
+ }
+ }
+ }
+
+ ##### END Writing the Certificate Request Config File #####
+
+
+ ##### BEGIN Generate Certificate Request and Submit to Issuing Certificate Authority #####
+
+ ## Generate new Certificate Request File: ##
+ # NOTE: The generation of a Certificate Request File using the below "certreq.exe -new" command also adds the CSR to the
+ # Client Machine's Certificate Request Store located at PSDrive "Cert:\CurrentUser\REQUEST" which is also known as
+ # "Microsoft.PowerShell.Security\Certificate::CurrentUser\Request"
+ # There doesn't appear to be an equivalent to this using PowerShell cmdlets
+ $null = certreq.exe -new "$CertGenWorking\$CertificateRequestConfigFile" "$CertGenWorking\$CertificateRequestFile"
+
+ if ($CSRGenOnly) {
+ [pscustomobject]@{
+ CSRFile = $(Get-Item "$CertGenWorking\$CertificateRequestFile")
+ CSRContent = $(Get-Content "$CertGenWorking\$CertificateRequestFile")
+ }
+ return
+ }
+
+ # TODO: If the Certificate Request Configuration File referenced in the above command contains "RequestType = Cert", then instead of the above command,
+ # the below certreq command should be used:
+ # certreq.exe -new -cert [CertId] "$CertGenWorking\$CertificateRequestConfigFile" "$CertGenWorking\$CertificateRequestFile"
+
+ if ($ADCSWebEnrollmentUrl) {
+ # POST Data as a hash table
+ $postParams = @{
+ "Mode" = "newreq"
+ "CertRequest" = $(Get-Content "$CertGenWorking\$CertificateRequestFile" -Encoding Ascii | Out-String)
+ "CertAttrib" = "CertificateTemplate:$BasisTemplate"
+ "FriendlyType" = "Saved-Request+Certificate+($(Get-Date -DisplayHint Date -Format M/dd/yyyy),+$(Get-Date -DisplayHint Date -Format h:mm:ss+tt))"
+ "Thumbprint" = ""
+ "TargetStoreFlags" = "0"
+ "SaveCert" = "yes"
+ }
+
+ # Submit New Certificate Request and Download New Certificate
+ if ($ADCSWebAuthType -eq "Windows") {
+ # Send the POST Data
+ Invoke-RestMethod -Uri "$ADCSWebEnrollmentUrl/certfnsh.asp" -Method Post -Body $postParams -Credential $ADCSWebCreds -OutFile "$CertGenWorking\$CertADCSWebResponseOutFile"
+
+ # Download New Certificate
+ $ReqId = (Get-Content "$CertGenWorking\$CertADCSWebResponseOutFile" | Select-String -Pattern "ReqID=[0-9]{1,5}" | Select-Object -Index 0).Matches.Value.Split("=")[1]
+ if ($ReqId -eq $null) {
+ Write-Host "The Certificate Request was successfully submitted via ADCS Web Enrollment, but was rejected. Please check the format and contents of
+ the Certificate Request Config File and try again."
+ $global:FunctionResult = "1"
+ return
+ }
+
+ $CertWebRawContent = (Invoke-WebRequest -Uri "$ADCSWebEnrollmentUrl/certnew.cer?ReqID=$ReqId&Enc=b64" -Credential $ADCSWebCreds).RawContent
+ # Replace the line that begins with `r with ;;; then split on ;;; and select the last object in the index
+ (($CertWebRawContent.Split("`n") -replace "^`r",";;;") -join "`n").Split(";;;")[-1].Trim() | Out-File "$CertGenWorking\$CertFileOut"
+ # Alternate: Skip everything up until `r
+ #$CertWebRawContent.Split("`n") | Select-Object -Skip $([array]::indexof($($CertWebRawContent.Split("`n")),"`r")) | Out-File "$CertGenWorking\$CertFileOut"
+ }
+ if ($ADCSWebAuthType -eq "Basic") {
+ # Send the POST Data
+ Invoke-RestMethod -Uri "$ADCSWebEnrollmentUrl/certfnsh.asp" -Method Post -Body $postParams -Headers $headers -OutFile "$CertGenWorking\$CertADCSWebResponseOutFile"
+
+ # Download New Certificate
+ $ReqId = (Get-Content "$CertGenWorking\$CertADCSWebResponseOutFile" | Select-String -Pattern "ReqID=[0-9]{1,5}" | Select-Object -Index 0).Matches.Value.Split("=")[1]
+ if ($ReqId -eq $null) {
+ Write-Host "The Certificate Request was successfully submitted via ADCS Web Enrollment, but was rejected. Please check the format and contents of
+ the Certificate Request Config File and try again."
+ $global:FunctionResult = "1"
+ return
+ }
+
+ $CertWebRawContent = (Invoke-WebRequest -Uri "$ADCSWebEnrollmentUrl/certnew.cer?ReqID=$ReqId&Enc=b64" -Headers $headers).RawContent
+ $CertWebRawContentArray = $CertWebRawContent.Split("`n")
+ $CertWebRawContentArray | Select-Object -Skip $([array]::indexof($CertWebRawContentArray,"`r")) | Out-File "$CertGenWorking\$CertFileOut"
+ }
+ }
+
+ if (!$ADCSWebEnrollmentUrl) {
+ ## Submit New Certificate Request File to Issuing Certificate Authority and Specify a Certificate to Use as a Base ##
+ if (Test-Path "$CertGenWorking\$CertificateRequestFile") {
+ if (!$cnForBasisTemplate) {
+ $cnForBasisTemplate = "WebServer"
+ }
+ $null = certreq.exe -submit -attrib "CertificateTemplate:$cnForBasisTemplate" -config "$IssuingCertAuth" "$CertGenWorking\$CertificateRequestFile" "$CertGenWorking\$CertFileOut" "$CertGenWorking\$CertificateChainOut"
+ # Equivalent of above certreq command using "Get-Certificate" cmdlet is below. We decided to use certreq.exe though because it actually outputs
+ # files to the filesystem as opposed to just working with the client machine's certificate store. This is more similar to the same process on Linux.
+ #
+ # ## Begin "Get-Certificate" equivalent ##
+ # $LocationOfCSRInStore = $(Get-ChildItem Cert:\CurrentUser\Request | Where-Object {$_.Subject -like "*$CertificateCN*"}) | Select-Object -ExpandProperty PSPath
+ # Get-Certificate -Template $cnForBasisTemplate -Url "https:\\$IssuingCertAuthFQDN\certsrv" -Request $LocationOfCSRInStore -CertStoreLocation Cert:\CurrentUser\My
+ # NOTE: The above Get-Certificate command ALSO imports the certificate generated by the above request, making the below "Import-Certificate" command unnecessary
+ # ## End "Get-Certificate" equivalent ##
+ }
+ }
+
+ if (Test-Path "$CertGenWorking\$CertFileOut") {
+ ## Generate .pfx file by installing certificate in store and then exporting with private key ##
+ # NOTE: I'm not sure why importing a file that only contains the public certificate (i.e, the .cer file) suddenly makes the private key available
+ # in the Certificate Store. It just works for some reason...
+ # First, install the public certificate in store
+ $null = Import-Certificate -FilePath "$CertGenWorking\$CertFileOut" -CertStoreLocation Cert:\CurrentUser\My
+ # certreq.exe equivalent of the above Import-Certificate command is below. It is not as reliable as Import-Certifcate.
+ # certreq -accept -user "$CertGenWorking\$CertFileOut"
+
+ # Then, export cert with private key in the form of a .pfx file
+ if ($MachineKeySet -eq "FALSE") {
+ if ($ThumprintToAvoid) {
+ $LocationOfCertInStore = $(Get-ChildItem Cert:\CurrentUser\My | Where-Object {$_.Subject -match "CN=$CertificateCN," -and $_.Thumbprint -notmatch $ThumprintToAvoid}) | Select-Object -ExpandProperty PSPath
+ }
+ else {
+ $LocationOfCertInStore = $(Get-ChildItem Cert:\CurrentUser\My | Where-Object {$_.Subject -match "CN=$CertificateCN,"}) | Select-Object -ExpandProperty PSPath
+ }
+
+ if ($LocationOfCertInStore.Count -gt 1) {
+ Write-Host "Certificates to inspect:`n$($LocationOfCertInStore -join "`n")" -ForeGroundColor Yellow
+ Write-Error "You have more than one certificate in your Certificate Store under Cert:\CurrentUser\My with the Common Name (CN) '$CertificateCN'. Please correct this and try again."
+ $global:FunctionResult = "1"
+ return
+ }
+
+ $null = Export-PfxCertificate -Cert $LocationOfCertInStore -FilePath "$CertGenWorking\$PFXFileOut" -Password $PFXPwdAsSecureString
+ # Equivalent of above using certutil
+ # $ThumbprintOfCertToExport = $(Get-ChildItem Cert:\CurrentUser\My | Where-Object {$_.Subject -like "*$CertificateCN*"}) | Select-Object -ExpandProperty Thumbprint
+ # certutil -exportPFX -p "$PFXPwdPlainText" my $ThumbprintOfCertToExport "$CertGenWorking\$PFXFileOut"
+
+ if ($UseOpenSSL -eq "Yes" -or $UseOpenSSL -eq "y") {
+ # OpenSSL can't handle PowerShell SecureStrings, so need to convert it back into Plain Text
+ $PwdForPFXOpenSSL = [Runtime.InteropServices.Marshal]::PtrToStringAuto([Runtime.InteropServices.Marshal]::SecureStringToBSTR($PFXPwdAsSecureString))
+
+ # Extract Private Key and Keep It Password Protected
+ & "$PathToWin32OpenSSL\openssl.exe" pkcs12 -in "$CertGenWorking\$PFXFileOut" -nocerts -out "$CertGenWorking\$ProtectedPrivateKeyOut" -nodes -password pass:$PwdForPFXOpenSSL 2>&1 | Out-Null
+
+ # The .pfx File Contains ALL Public Certificates in Chain
+ # The below extracts ALL Public Certificates in Chain
+ & "$PathToWin32OpenSSL\openssl.exe" pkcs12 -in "$CertGenWorking\$PFXFileOut" -nokeys -out "$CertGenWorking\$AllPublicKeysInChainOut" -password pass:$PwdForPFXOpenSSL 2>&1 | Out-Null
+
+ # Parse the Public Certificate Chain File and and Write Each Public Certificate to a Separate File
+ # These files should have the EXACT SAME CONTENT as the .cer counterparts
+ $PublicKeySansChainPrep1 = Get-Content "$CertGenWorking\$AllPublicKeysInChainOut"
+ $LinesToReplace1 = $PublicKeySansChainPrep1 | Select-String -Pattern "issuer" | Sort-Object | Get-Unique
+ $LinesToReplace2 = $PublicKeySansChainPrep1 | Select-String -Pattern "Bag Attributes" | Sort-Object | Get-Unique
+ $PublicKeySansChainPrep2 = (Get-Content "$CertGenWorking\$AllPublicKeysInChainOut") -join "`n"
+ foreach ($obj1 in $LinesToReplace1) {
+ $PublicKeySansChainPrep2 = $PublicKeySansChainPrep2 -replace "$obj1",";;;"
+ }
+ foreach ($obj1 in $LinesToReplace2) {
+ $PublicKeySansChainPrep2 = $PublicKeySansChainPrep2 -replace "$obj1",";;;"
+ }
+ $PublicKeySansChainPrep3 = $PublicKeySansChainPrep2.Split(";;;")
+ $PublicKeySansChainPrep4 = foreach ($obj1 in $PublicKeySansChainPrep3) {
+ if ($obj1.Trim().StartsWith("-")) {
+ $obj1.Trim()
+ }
+ }
+ # Setup Hash Containing Cert Name vs Content Pairs
+ $CertNamevsContentsHash = @{}
+ foreach ($obj1 in $PublicKeySansChainPrep4) {
+ # First line after BEGIN CERTIFICATE
+ $obj2 = $obj1.Split("`n")[1]
+
+ $ContextCounter = 3
+ $CertNamePrep = $null
+ while (!$CertNamePrep) {
+ $CertNamePrep = (($PublicKeySansChainPrep1 | Select-String -SimpleMatch $obj2 -Context $ContextCounter).Context.PreContext | Select-String -Pattern "subject").Line
+ $ContextCounter++
+ }
+ $CertName = $($CertNamePrep.Split("=") | Select-Object -Last 1).Trim()
+ $CertNamevsContentsHash.Add($CertName, $obj1)
+ }
+
+ # Write each Hash Key Value to Separate Files (i.e. writing all public keys in chain to separate files)
+ foreach ($obj1 in $CertNamevsContentsHash.Keys) {
+ $CertNamevsContentsHash.$obj1 | Out-File "$CertGenWorking\$obj1`_Public_Cert.pem" -Encoding Ascii
+ }
+
+ # Determine if we should remove the password from the private key (i.e. $ProtectedPrivateKeyOut)
+ if ($StripPrivateKeyOfPassword -eq $null) {
+ $StripPrivateKeyOfPassword = Read-Host -Prompt "Would you like to remove password protection from the private key? [Yes/No]"
+ if ($StripPrivateKeyOfPassword -eq "Yes" -or $StripPrivateKeyOfPassword -eq "y" -or $StripPrivateKeyOfPassword -eq "No" -or $StripPrivateKeyOfPassword -eq "n") {
+ Write-Host "The value for StripPrivateKeyOfPassword is valid...continuing"
+ }
+ else {
+ Write-Host "The value for StripPrivateKeyOfPassword is not valid. Please enter either 'Yes', 'y', 'No', or 'n'."
+ $StripPrivateKeyOfPassword = Read-Host -Prompt "Would you like to remove password protection from the private key? [Yes/No]"
+ if ($StripPrivateKeyOfPassword -eq "Yes" -or $StripPrivateKeyOfPassword -eq "y" -or $StripPrivateKeyOfPassword -eq "No" -or $StripPrivateKeyOfPassword -eq "n") {
+ Write-Host "The value for StripPrivateKeyOfPassword is valid...continuing"
+ }
+ else {
+ Write-Host "The value for StripPrivateKeyOfPassword is not valid. Please enter either 'Yes', 'y', 'No', or 'n'. Halting!"
+ $global:FunctionResult = "1"
+ return
+ }
+ }
+ if ($StripPrivateKeyOfPassword -eq "Yes" -or $StripPrivateKeyOfPassword -eq "y") {
+ # Strip Private Key of Password
+ & "$PathToWin32OpenSSL\openssl.exe" rsa -in "$CertGenWorking\$ProtectedPrivateKeyOut" -out "$CertGenWorking\$UnProtectedPrivateKeyOut" 2>&1 | Out-Null
+ }
+ }
+ if ($StripPrivateKeyOfPassword -eq "Yes" -or $StripPrivateKeyOfPassword -eq "y") {
+ # Strip Private Key of Password
+ & "$PathToWin32OpenSSL\openssl.exe" rsa -in "$CertGenWorking\$ProtectedPrivateKeyOut" -out "$CertGenWorking\$UnProtectedPrivateKeyOut" 2>&1 | Out-Null
+ }
+ }
+ }
+ }
+
+ # Create Global HashTable of Outputs for use in scripts that source this script
+ $GenerateCertificateFileOutputHash = @{}
+ $GenerateCertificateFileOutputHash.Add("CertificateRequestConfigFile", "$CertificateRequestConfigFile")
+ $GenerateCertificateFileOutputHash.Add("CertificateRequestFile", "$CertificateRequestFile")
+ $GenerateCertificateFileOutputHash.Add("CertFileOut", "$CertFileOut")
+ if ($MachineKeySet -eq "FALSE") {
+ $GenerateCertificateFileOutputHash.Add("PFXFileOut", "$PFXFileOut")
+ }
+ if (!$ADCSWebEnrollmentUrl) {
+ $CertUtilResponseFile = (Get-Item "$CertGenWorking\*.rsp").Name
+ $GenerateCertificateFileOutputHash.Add("CertUtilResponseFile", "$CertUtilResponseFile")
+
+ $GenerateCertificateFileOutputHash.Add("CertificateChainOut", "$CertificateChainOut")
+ }
+ if ($ADCSWebEnrollmentUrl) {
+ $GenerateCertificateFileOutputHash.Add("CertADCSWebResponseOutFile", "$CertADCSWebResponseOutFile")
+ }
+ if ($UseOpenSSL -eq "Yes") {
+ $GenerateCertificateFileOutputHash.Add("AllPublicKeysInChainOut", "$AllPublicKeysInChainOut")
+
+ # Make CertName vs Contents Key/Value Pair hashtable available to scripts that source this script
+ $CertNamevsContentsHash = $CertNamevsContentsHash
+
+ $AdditionalPublicKeysArray = (Get-Item "$CertGenWorking\*_Public_Cert.pem").Name
+ # For each Certificate in the hashtable $CertNamevsContentsHash, determine it it's a Root, Intermediate, or End Entity
+ foreach ($obj1 in $AdditionalPublicKeysArray) {
+ $SubjectTypePrep = (certutil -dump $CertGenWorking\$obj1 | Select-String -Pattern "Subject Type=").Line
+ if ($SubjectTypePrep) {
+ $SubjectType = $SubjectTypePrep.Split("=")[-1].Trim()
+ }
+ else {
+ $SubjectType = "End Entity"
+ }
+ $RootCertFlag = certutil -dump $CertGenWorking\$obj1 | Select-String -Pattern "Subject matches issuer"
+ $EndPointCNFlag = certutil -dump $CertGenWorking\$obj1 | Select-String -Pattern "CN=$CertificateCN"
+ if ($SubjectType -eq "CA" -and $RootCertFlag.Matches.Success -eq $true) {
+ $RootCAPublicCertFile = $obj1
+ $GenerateCertificateFileOutputHash.Add("RootCAPublicCertFile", "$RootCAPublicCertFile")
+ }
+ if ($SubjectType -eq "CA" -and $RootCertFlag.Matches.Success -ne $true) {
+ $IntermediateCAPublicCertFile = $obj1
+ $GenerateCertificateFileOutputHash.Add("IntermediateCAPublicCertFile", "$IntermediateCAPublicCertFile")
+ }
+ if ($SubjectType -eq "End Entity" -and $EndPointCNFlag.Matches.Success -eq $true) {
+ $EndPointPublicCertFile = $obj1
+ $GenerateCertificateFileOutputHash.Add("EndPointPublicCertFile", "$EndPointPublicCertFile")
+ }
+ }
+
+ # Alternate Logic using .Net to Inspect Certificate files to Determine RootCA, Intermediate CA, and Endpoint
+ <#
+ foreach ($obj1 in $AdditionalPublicKeysArray) {
+ $certPrint = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2
+ $certPrint.Import("$CertGenWorking\$obj1")
+ if ($certPrint.Issuer -eq $certPrint.Subject) {
+ $RootCAPublicCertFile = $obj1
+ $RootCASubject = $certPrint.Subject
+ $GenerateCertificateFileOutputHash.Add("RootCAPublicCertFile", "$RootCAPublicCertFile")
+ }
+ }
+ foreach ($obj1 in $AdditionalPublicKeysArray) {
+ $certPrint = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2
+ $certPrint.Import("$CertGenWorking\$obj1")
+ if ($certPrint.Issuer -eq $RootCASubject -and $certPrint.Subject -ne $RootCASubject) {
+ $IntermediateCAPublicCertFile = $obj1
+ $IntermediateCASubject = $certPrint.Subject
+ $GenerateCertificateFileOutputHash.Add("IntermediateCAPublicCertFile", "$IntermediateCAPublicCertFile")
+ }
+ }
+ foreach ($obj1 in $AdditionalPublicKeysArray) {
+ $certPrint = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2
+ $certPrint.Import("$CertGenWorking\$obj1")
+ if ($certPrint.Issuer -eq $IntermediateCASubject) {
+ $EndPointPublicCertFile = $obj1
+ $EndPointSubject = $certPrint.Subject
+ $GenerateCertificateFileOutputHash.Add("EndPointPublicCertFile", "$EndPointPublicCertFile")
+ }
+ }
+ #>
+
+ $GenerateCertificateFileOutputHash.Add("EndPointProtectedPrivateKey", "$ProtectedPrivateKeyOut")
+ }
+ if ($StripPrivateKeyOfPassword -eq "Yes" -or $StripPrivateKeyOfPassword -eq "y") {
+ $GenerateCertificateFileOutputHash.Add("EndPointUnProtectedPrivateKey", "$UnProtectedPrivateKeyOut")
+
+ # Add UnProtected Private Key to $CertNamevsContentsHash
+ $UnProtectedPrivateKeyContent = ((Get-Content $CertGenWorking\$UnProtectedPrivateKeyOut) -join "`n").Trim()
+ $CertNamevsContentsHash.Add("EndPointUnProtectedPrivateKey", "$UnProtectedPrivateKeyContent")
+ }
+
+ # Cleanup
+ if ($LocationOfCertInStore) {
+ Remove-Item $LocationOfCertInStore
+ }
+
+ # Return PSObject that contains $GenerateCertificateFileOutputHash and $CertNamevsContentsHash HashTables
+ [pscustomobject]@{
+ FileOutputHashTable = $GenerateCertificateFileOutputHash
+ CertNamevsContentsHash = $CertNamevsContentsHash
+ }
+
+ $global:FunctionResult = "0"
+
+ # ***IMPORTANT NOTE: If you want to write the Certificates contained in the $CertNamevsContentsHash out to files again
+ # at some point in the future, make sure you use the "Out-File" cmdlet instead of the "Set-Content" cmdlet
+
+ ##### END Generate Certificate Request and Submit to Issuing Certificate Authority #####
+
+}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+# SIG # Begin signature block
+# MIIMiAYJKoZIhvcNAQcCoIIMeTCCDHUCAQExCzAJBgUrDgMCGgUAMGkGCisGAQQB
+# gjcCAQSgWzBZMDQGCisGAQQBgjcCAR4wJgIDAQAABBAfzDtgWUsITrck0sYpfvNR
+# AgEAAgEAAgEAAgEAAgEAMCEwCQYFKw4DAhoFAAQUY+UbCW+v8W0w6Q17QxK8VLJh
+# tvWgggn9MIIEJjCCAw6gAwIBAgITawAAAB/Nnq77QGja+wAAAAAAHzANBgkqhkiG
+# 9w0BAQsFADAwMQwwCgYDVQQGEwNMQUIxDTALBgNVBAoTBFpFUk8xETAPBgNVBAMT
+# CFplcm9EQzAxMB4XDTE3MDkyMDIxMDM1OFoXDTE5MDkyMDIxMTM1OFowPTETMBEG
+# CgmSJomT8ixkARkWA0xBQjEUMBIGCgmSJomT8ixkARkWBFpFUk8xEDAOBgNVBAMT
+# B1plcm9TQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDCwqv+ROc1
+# bpJmKx+8rPUUfT3kPSUYeDxY8GXU2RrWcL5TSZ6AVJsvNpj+7d94OEmPZate7h4d
+# gJnhCSyh2/3v0BHBdgPzLcveLpxPiSWpTnqSWlLUW2NMFRRojZRscdA+e+9QotOB
+# aZmnLDrlePQe5W7S1CxbVu+W0H5/ukte5h6gsKa0ktNJ6X9nOPiGBMn1LcZV/Ksl
+# lUyuTc7KKYydYjbSSv2rQ4qmZCQHqxyNWVub1IiEP7ClqCYqeCdsTtfw4Y3WKxDI
+# JaPmWzlHNs0nkEjvnAJhsRdLFbvY5C2KJIenxR0gA79U8Xd6+cZanrBUNbUC8GCN
+# wYkYp4A4Jx+9AgMBAAGjggEqMIIBJjASBgkrBgEEAYI3FQEEBQIDAQABMCMGCSsG
+# AQQBgjcVAgQWBBQ/0jsn2LS8aZiDw0omqt9+KWpj3DAdBgNVHQ4EFgQUicLX4r2C
+# Kn0Zf5NYut8n7bkyhf4wGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwDgYDVR0P
+# AQH/BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUdpW6phL2RQNF
+# 7AZBgQV4tgr7OE0wMQYDVR0fBCowKDAmoCSgIoYgaHR0cDovL3BraS9jZXJ0ZGF0
+# YS9aZXJvREMwMS5jcmwwPAYIKwYBBQUHAQEEMDAuMCwGCCsGAQUFBzAChiBodHRw
+# Oi8vcGtpL2NlcnRkYXRhL1plcm9EQzAxLmNydDANBgkqhkiG9w0BAQsFAAOCAQEA
+# tyX7aHk8vUM2WTQKINtrHKJJi29HaxhPaHrNZ0c32H70YZoFFaryM0GMowEaDbj0
+# a3ShBuQWfW7bD7Z4DmNc5Q6cp7JeDKSZHwe5JWFGrl7DlSFSab/+a0GQgtG05dXW
+# YVQsrwgfTDRXkmpLQxvSxAbxKiGrnuS+kaYmzRVDYWSZHwHFNgxeZ/La9/8FdCir
+# MXdJEAGzG+9TwO9JvJSyoGTzu7n93IQp6QteRlaYVemd5/fYqBhtskk1zDiv9edk
+# mHHpRWf9Xo94ZPEy7BqmDuixm4LdmmzIcFWqGGMo51hvzz0EaE8K5HuNvNaUB/hq
+# MTOIB5145K8bFOoKHO4LkTCCBc8wggS3oAMCAQICE1gAAAH5oOvjAv3166MAAQAA
+# AfkwDQYJKoZIhvcNAQELBQAwPTETMBEGCgmSJomT8ixkARkWA0xBQjEUMBIGCgmS
+# JomT8ixkARkWBFpFUk8xEDAOBgNVBAMTB1plcm9TQ0EwHhcNMTcwOTIwMjE0MTIy
+# WhcNMTkwOTIwMjExMzU4WjBpMQswCQYDVQQGEwJVUzELMAkGA1UECBMCUEExFTAT
+# BgNVBAcTDFBoaWxhZGVscGhpYTEVMBMGA1UEChMMRGlNYWdnaW8gSW5jMQswCQYD
+# VQQLEwJJVDESMBAGA1UEAxMJWmVyb0NvZGUyMIIBIjANBgkqhkiG9w0BAQEFAAOC
+# AQ8AMIIBCgKCAQEAxX0+4yas6xfiaNVVVZJB2aRK+gS3iEMLx8wMF3kLJYLJyR+l
+# rcGF/x3gMxcvkKJQouLuChjh2+i7Ra1aO37ch3X3KDMZIoWrSzbbvqdBlwax7Gsm
+# BdLH9HZimSMCVgux0IfkClvnOlrc7Wpv1jqgvseRku5YKnNm1JD+91JDp/hBWRxR
+# 3Qg2OR667FJd1Q/5FWwAdrzoQbFUuvAyeVl7TNW0n1XUHRgq9+ZYawb+fxl1ruTj
+# 3MoktaLVzFKWqeHPKvgUTTnXvEbLh9RzX1eApZfTJmnUjBcl1tCQbSzLYkfJlJO6
+# eRUHZwojUK+TkidfklU2SpgvyJm2DhCtssFWiQIDAQABo4ICmjCCApYwDgYDVR0P
+# AQH/BAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMDMB0GA1UdDgQWBBS5d2bhatXq
+# eUDFo9KltQWHthbPKzAfBgNVHSMEGDAWgBSJwtfivYIqfRl/k1i63yftuTKF/jCB
+# 6QYDVR0fBIHhMIHeMIHboIHYoIHVhoGubGRhcDovLy9DTj1aZXJvU0NBKDEpLENO
+# PVplcm9TQ0EsQ049Q0RQLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNl
+# cnZpY2VzLENOPUNvbmZpZ3VyYXRpb24sREM9emVybyxEQz1sYWI/Y2VydGlmaWNh
+# dGVSZXZvY2F0aW9uTGlzdD9iYXNlP29iamVjdENsYXNzPWNSTERpc3RyaWJ1dGlv
+# blBvaW50hiJodHRwOi8vcGtpL2NlcnRkYXRhL1plcm9TQ0EoMSkuY3JsMIHmBggr
+# BgEFBQcBAQSB2TCB1jCBowYIKwYBBQUHMAKGgZZsZGFwOi8vL0NOPVplcm9TQ0Es
+# Q049QUlBLENOPVB1YmxpYyUyMEtleSUyMFNlcnZpY2VzLENOPVNlcnZpY2VzLENO
+# PUNvbmZpZ3VyYXRpb24sREM9emVybyxEQz1sYWI/Y0FDZXJ0aWZpY2F0ZT9iYXNl
+# P29iamVjdENsYXNzPWNlcnRpZmljYXRpb25BdXRob3JpdHkwLgYIKwYBBQUHMAKG
+# Imh0dHA6Ly9wa2kvY2VydGRhdGEvWmVyb1NDQSgxKS5jcnQwPQYJKwYBBAGCNxUH
+# BDAwLgYmKwYBBAGCNxUIg7j0P4Sb8nmD8Y84g7C3MobRzXiBJ6HzzB+P2VUCAWQC
+# AQUwGwYJKwYBBAGCNxUKBA4wDDAKBggrBgEFBQcDAzANBgkqhkiG9w0BAQsFAAOC
+# AQEAszRRF+YTPhd9UbkJZy/pZQIqTjpXLpbhxWzs1ECTwtIbJPiI4dhAVAjrzkGj
+# DyXYWmpnNsyk19qE82AX75G9FLESfHbtesUXnrhbnsov4/D/qmXk/1KD9CE0lQHF
+# Lu2DvOsdf2mp2pjdeBgKMRuy4cZ0VCc/myO7uy7dq0CvVdXRsQC6Fqtr7yob9NbE
+# OdUYDBAGrt5ZAkw5YeL8H9E3JLGXtE7ir3ksT6Ki1mont2epJfHkO5JkmOI6XVtg
+# anuOGbo62885BOiXLu5+H2Fg+8ueTP40zFhfLh3e3Kj6Lm/NdovqqTBAsk04tFW9
+# Hp4gWfVc0gTDwok3rHOrfIY35TGCAfUwggHxAgEBMFQwPTETMBEGCgmSJomT8ixk
+# ARkWA0xBQjEUMBIGCgmSJomT8ixkARkWBFpFUk8xEDAOBgNVBAMTB1plcm9TQ0EC
+# E1gAAAH5oOvjAv3166MAAQAAAfkwCQYFKw4DAhoFAKB4MBgGCisGAQQBgjcCAQwx
+# CjAIoAKAAKECgAAwGQYJKoZIhvcNAQkDMQwGCisGAQQBgjcCAQQwHAYKKwYBBAGC
+# NwIBCzEOMAwGCisGAQQBgjcCARUwIwYJKoZIhvcNAQkEMRYEFBde6Ikibg3yopEc
+# UnL2mXTkdkuIMA0GCSqGSIb3DQEBAQUABIIBADce85bJtl/3S4HE0DZkOvvTgAsR
+# LORBarQYHaqQyt+FuWUTHjCyY1veU/TJju35doMX8UbuBkbSex+DukrIU6m7+idR
+# HtWmypDWz49FHSEFz4WE9b+dQk+nslApf93Ot6SeSDqNRFpaGGoMlqupakPQLeXV
+# Gp6vMy+Xrzr7fBPED8p3mm3qpd6Y1iLVyAhx5nlvdpGnoTySAySLzvWgch6JLLJA
+# PVB1KHVP2GeWBX7c3PIZVLsOgjEg7PKNtAfXDu6yNsrIXNsRGNByFJqeoGfApGNy
+# WXskxL0fFrwYidqQO1MUy61rYNt5DiQYTIm/HhzFEGHwPIxyXGQBX/PANFA=
+# SIG # End signature block
\ No newline at end of file
diff --git a/Getlogsfromappserver.ps1 b/Getlogsfromappserver.ps1
new file mode 100644
index 0000000..7e2b1b0
--- /dev/null
+++ b/Getlogsfromappserver.ps1
@@ -0,0 +1,4 @@
+#get Logs from APPserv with text string match
+
+$x= 1..4| foreach {"rejk-p-app00$_"} |foreach {get-item \\$_\D-drive\ifsbosystem\log\*.log*} | where { $_.LastWriteTime -gt (Get-Date).AddDays(-1) } | Select-String -Pattern "10:52.*error"
+$x |out-gridview
\ No newline at end of file
diff --git a/LogBookTransfer.ps1 b/LogBookTransfer.ps1
new file mode 100644
index 0000000..c7352b3
--- /dev/null
+++ b/LogBookTransfer.ps1
@@ -0,0 +1,84 @@
+function LogBooks {
+ $source = 'D:\IFSBOData\EquipmentLog'
+ $destination = "\\$server\EW\LogBooks"
+
+ if(-not (Test-Path $destination)) { throw "Invalid path $destination" }
+
+ $files = Get-ChildItem -Recurse -File -Path $source
+
+ foreach($file in $files) {
+
+ $split = $file.Name -split '-'
+ $eqpNumber = $split[0].Substring(0, 2)
+ $eqpType = switch($eqpNumber) {
+ '04' { 'RVM' }
+ '09' { 'EPID' }
+ '11' { 'DC' }
+ '13' { 'NTX' }
+ '14' { 'VCF' }
+ default { 'UNKNOWN' }
+ }
+
+ $year = $split[1]
+ $month = $split[2]
+ $day = $split[3].Substring(0,2)
+
+ $moveTo = "$destination\$eqpType\$year\$month\$day"
+
+ if(-not (Test-Path $moveTo)) { mkdir $moveTo }
+
+ "LogBook: Move $($file.Name) to $moveTo" | Out-File -Append -FilePath $logfile
+
+ Move-Item -Path $file.FullName -Destination $moveTo -Force
+ }
+
+}
+
+function EftLogs {
+ $source = 'D:\IFSBOData\EFTLog'
+ $destination = "\\$server\EW\EFTLogs"
+
+ $files = Get-ChildItem -Recurse -File -Path $source
+
+ foreach($file in $files) {
+
+ $split = $file.Name -split '-'
+ $year = $split[2].Substring(0, 4)
+ $month = $split[2].Substring(4, 2)
+ $day = $split[2].Substring(6, 2)
+
+ $moveTo = "$destination\$year\$month\$day"
+
+ if(-not (Test-Path $moveTo)) { mkdir $moveTo }
+
+ "EFTLog: Move $($file.Name) to $moveTo" | Out-File -Append -FilePath $logfile
+
+ Move-Item -Path $file.FullName -Destination $moveTo -Force
+ }
+}
+
+try {
+ $logfile = "log.{0}.txt" -f (Get-Date -Format 'yyyy-MM-dd')
+
+ $server = switch -Regex ($env:COMPUTERNAME) {
+ 'REJ-P' { 'REJ-P-INT003' }
+ 'REJ-Q' { 'REJ-Q-INT103' }
+ 'REJ-A' { 'REJ-A-INT201' }
+ 'REJ-C' { 'REJ-C-INT301' }
+ 'REJ-E' { 'REJ-E-INT401' }
+ 'REJK-D' { 'REJK-D-INT501' }
+ default { throw "Unsupported platform" }
+ }
+
+ $time = Get-Date -Format 'yyyy-MM-dd HH:mm:ss'
+ "[$time] Start" | Out-File -Append -FilePath $logfile
+
+ LogBooks
+ EftLogs
+
+ $time = Get-Date -Format 'yyyy-MM-dd HH:mm:ss'
+ "[$time] Done" | Out-File -Append -FilePath $logfile
+}
+catch {
+ "Error: $_" | Out-File -Append -FilePath $logfile
+}
diff --git a/LogbookScan/LogbookScan.ConvertFromGzip.ps1 b/LogbookScan/LogbookScan.ConvertFromGzip.ps1
new file mode 100644
index 0000000..4e09e9f
--- /dev/null
+++ b/LogbookScan/LogbookScan.ConvertFromGzip.ps1
@@ -0,0 +1,103 @@
+Function ConvertFrom-Gzip
+{
+<#
+.SYNOPSIS
+This function will decompress the contents of a GZip file and output it to the pipeline. Each line in the converted file is
+output as distinct object.
+
+.DESCRIPTION
+Using the System.IO.GZipstream class this function will decompress a GZip file and send the contents into
+the pipeline. The output is one System.String object per line. It supports the various types of encoding
+provided by the System.text.encoding class.
+
+.EXAMPLE
+ConvertFrom-Gzip -path c:\test.gz
+
+test content
+
+.EXAMPLE
+get-childitem c:\archive -recure -filter *.gz | convertfrom-Gzip -encoding unicode | select-string -pattern "Routing failed" -simplematch
+
+Looks through the c:\archive folder for all .gz files, those files are then converted to system.string
+objects, all that data is piped to select-string. Strings which match the pattern "Routing failed" are returned to the console.
+
+.EXAMPLE
+get-item c:\file.txt.gz | convertfrom-Gzip | out-string | out-file c:\file.txt
+
+Converts c:\file.txt.gz to a string array and then into a single string object. That string object is then written into a new file.
+
+.NOTES
+Written by Jason Morgan
+Created on 1/10/2013
+Last Modified 7/11/2014
+# added support for relative paths
+
+#>
+[CmdletBinding()]
+Param
+ (
+ # Enter the path to the target GZip file, *.gz
+ [Parameter(
+ Mandatory = $true,
+ ValueFromPipeline=$True,
+ ValueFromPipelineByPropertyName=$True,
+ HelpMessage="Enter the path to the target GZip file, *.gz",
+ ParameterSetName='Default')]
+ [Alias("Fullname")]
+ [ValidateScript({$_.endswith(".gz")})]
+ [String]$Path,
+ # Specify the type of encoding of the original file, acceptable formats are, "ASCII","Unicode","BigEndianUnicode","Default","UTF32","UTF7","UTF8"
+ [Parameter(Mandatory=$false,
+ ParameterSetName='Default')]
+ [ValidateSet("ASCII","Unicode","BigEndianUnicode","Default","UTF32","UTF7","UTF8")]
+ [String]$Encoding = "ASCII"
+ )
+Begin
+ {
+ Set-StrictMode -Version Latest
+ Write-Verbose "Create Encoding object"
+ $enc= [System.Text.Encoding]::$encoding
+ }
+Process
+ {
+ Write-Debug "Beginning process for file at path: $Path"
+ Write-Verbose "test path"
+ if (-not ([system.io.path]::IsPathRooted($path)))
+ {
+ Write-Verbose 'Generating absolute path'
+ Try {$path = (Resolve-Path -Path $Path -ErrorAction Stop).Path} catch {throw 'Failed to resolve path'}
+ Write-Debug "New Path: $Path"
+ }
+ Write-Verbose "Opening file stream for $path"
+ $file = New-Object System.IO.FileStream $path, ([IO.FileMode]::Open), ([IO.FileAccess]::Read), ([IO.FileShare]::Read)
+ Write-Verbose "Create MemoryStream Object, the MemoryStream will hold the decompressed data until it is loaded into `$array"
+ $stream = new-object -TypeName System.IO.MemoryStream
+ Write-Verbose "Construct a new [System.IO.GZipStream] object, created in Decompress mode"
+ $GZipStream = New-object -TypeName System.IO.Compression.GZipStream -ArgumentList $file, ([System.IO.Compression.CompressionMode]::Decompress)
+ Write-Verbose "Open a Buffer that will be used to move the decompressed data from `$GZipStream to `$stream"
+ $buffer = New-Object byte[](1024)
+ Write-Verbose "Instantiate `$count outside of the Do/While loop"
+ $count = 0
+ Write-Verbose "Start Do/While loop, this loop will perform the job of reading decopressed data from the gzipstream object into the MemoryStream object. The Do/While loop continues until `$GZipStream has been emptied of all data, which is when `$count = 0"
+ do
+ {
+ $count = $gzipstream.Read($buffer, 0, 1024)
+ if ($count -gt 0)
+ {
+ $Stream.Write($buffer, 0, $count)
+ }
+ }
+ While ($count -gt 0)
+ Write-Verbose "Take the data from the MemoryStream and convert it to a Byte Array"
+ $array = $stream.ToArray()
+ Write-Verbose "Close the GZipStream object instead of waiting for a garbage collector to perform this function"
+ $GZipStream.Close()
+ Write-Verbose "Close the MemoryStream object instead of waiting for a garbage collector to perform this function"
+ $stream.Close()
+ Write-Verbose "Close the FileStream object instead of waiting for a garbage collector to perform this function"
+ $file.Close()
+ Write-Verbose "Create string(s) from byte array, a split is added after the conversion to ensure each new line character creates a new string"
+ $enc.GetString($array).Split("`n")
+ }
+End {}
+}
\ No newline at end of file
diff --git a/LogbookScan/LogbookScan.ps1 b/LogbookScan/LogbookScan.ps1
new file mode 100644
index 0000000..cd70a41
--- /dev/null
+++ b/LogbookScan/LogbookScan.ps1
@@ -0,0 +1,93 @@
+. .\LogbookScan.ConvertFromGzip.ps1
+
+# Edit me
+# Types: RVM, NTX, DC
+$type = 'NTX'
+
+# Also edit me
+$folders = @()
+$folders += Get-Item "\\rejk-p-int003\E-Drive\FTP Repository\EW\LogBooks\$type\2017\08\14"
+$folders += Get-Item "\\rejk-p-int003\E-Drive\FTP Repository\EW\LogBooks\$type\2017\08\15"
+$folders += Get-Item "\\rejk-p-int003\E-Drive\FTP Repository\EW\LogBooks\$type\2017\08\16"
+$folders += Get-Item "\\rejk-p-int003\E-Drive\FTP Repository\EW\LogBooks\$type\2017\08\17"
+$folders += Get-Item "\\rejk-p-int003\E-Drive\FTP Repository\EW\LogBooks\$type\2017\08\18"
+$folders += Get-Item "\\rejk-p-int003\E-Drive\FTP Repository\EW\LogBooks\$type\2017\08\19"
+$folders += Get-Item "\\rejk-p-int003\E-Drive\FTP Repository\EW\LogBooks\$type\2017\08\20"
+$folders += Get-Item "\\rejk-p-int003\E-Drive\FTP Repository\EW\LogBooks\$type\2017\08\21"
+$folders += Get-Item "\\rejk-p-int003\E-Drive\FTP Repository\EW\LogBooks\$type\2017\08\22"
+$folders += Get-Item "\\rejk-p-int003\E-Drive\FTP Repository\EW\LogBooks\$type\2017\08\23"
+$folders += Get-Item "\\rejk-p-int003\E-Drive\FTP Repository\EW\LogBooks\$type\2017\08\24"
+$folders += Get-Item "\\rejk-p-int003\E-Drive\FTP Repository\EW\LogBooks\$type\2017\08\25"
+$folders += Get-Item "\\rejk-p-int003\E-Drive\FTP Repository\EW\LogBooks\$type\2017\08\26"
+$folders += Get-Item "\\rejk-p-int003\E-Drive\FTP Repository\EW\LogBooks\$type\2017\08\27"
+$folders += Get-Item "\\rejk-p-int003\E-Drive\FTP Repository\EW\LogBooks\$type\2017\08\28"
+$folders += Get-Item "\\rejk-p-int003\E-Drive\FTP Repository\EW\LogBooks\$type\2017\08\29"
+
+
+# Don't edit me unless you know what you're doing
+
+$i = 1
+foreach($folder in $folders) {
+ Write-Progress -Activity "Folders $($folder.FullName)" -Status "$i of $($folders.Count)" -Id 1 -PercentComplete (100 / $folders.Count * $i)
+
+ # Get all files in current folder
+ $items = Get-ChildItem -Path $folder.FullName
+
+ $y = 1
+ $result = foreach($item in $items) {
+ try {
+ Write-Progress -Activity 'Files' -Status "$y of $($items.Count)" -ParentId 1 -PercentComplete (100 / $items.Count * $y)
+
+ # Unpack gzip and get logbook file
+ $file = $item.FullName | ConvertFrom-Gzip
+
+
+ if($type -eq 'RVM') {
+ $file | Select-String -Pattern 'Ticket processing operation error;.*?;29'
+ }
+ elseif($type -eq 'NTX') {
+ $file | Select-String -Pattern 'Error type : 120'
+ }
+ elseif($type -eq 'DC') {
+ throw "Type $type not implemented"
+ }
+ else {
+ Write-Warning "Unknown type $type"
+ break
+ }
+
+ $file = $null
+ $y++
+ }
+ catch {
+ Write-Warning "Failed to process $($item.FullName): $_"
+ }
+ }
+
+ $result | Out-File -Append -FilePath "errortype29$type.csv"
+
+ $result = $null
+
+ [System.GC]::Collect()
+ "Last folder operated on: $i : $($folder.FullName)" | Out-File -FilePath "errortype29$type.count" -Append
+
+ $i++
+}
+
+
+
+if($type -eq 'NTX') {
+ $csv = Import-Csv .\errortype29NTX.csv -Delimiter ';' -Header 'Date','Time','DeviceType','DeviceId','Unknown1','Unknown2','ErrorDescription','TransactionType','MediaSerialNumber','ErrorType'
+ $csv | where { $_.ErrorType -eq 'Error type : 120' } | % { ($_.MediaserialNumber -split ' : ')[1] } | sort -Unique > ntx.txt
+
+ #SELECT omi.CardEngravedID FROM trk.ObjMediaInstance omi with(nolock)
+ #WHERE omi.MediaSerialNumberID IN ( ... )
+}
+elseif($type -eq 'RVM') {
+ $csv = Import-Csv .\errortype29RVM.csv -Delimiter ';' -Header 'Date','Time','DeviceType','DeviceId','Unknown1','Unknown2','ErrorDescription','MediaSerialNumber','ErrorType'
+ $csv | where { $_.ErrorType -eq '120' } | % { $_.MediaSerialNumber } | sort -Unique | % { $_ -replace '308430','' } | % { $_ -replace ' ','' } > rvm.txt
+}
+
+
+
+
diff --git a/LogbookScan/errortype29NTX.count b/LogbookScan/errortype29NTX.count
new file mode 100644
index 0000000..8b5bf5e
Binary files /dev/null and b/LogbookScan/errortype29NTX.count differ
diff --git a/LogbookScan/errortype29NTX.csv b/LogbookScan/errortype29NTX.csv
new file mode 100644
index 0000000..200612a
Binary files /dev/null and b/LogbookScan/errortype29NTX.csv differ
diff --git a/LogbookScan/ntx.txt b/LogbookScan/ntx.txt
new file mode 100644
index 0000000..e69de29
diff --git a/MDL-EFTLog-Archiver.ps1 b/MDL-EFTLog-Archiver.ps1
new file mode 100644
index 0000000..76d057d
--- /dev/null
+++ b/MDL-EFTLog-Archiver.ps1
@@ -0,0 +1,48 @@
+<#
+Script: MDL-EFTLog-Archiver.ps1
+Emil Holgersen, Thales, 2021-03-19
+This script moves EFTLog files to an archive folder structure on the active INT node.
+The script is meant to run as a daily scheduled job on the MDL servers, and it has to be run with an account that has "full access" to both the local source folder as well as the destination on INT.
+Note that this script was made as a response to the fact that no such feature existed after platform reinstall with version 10.2. I have no idea how this was done in prior versions of the system.
+#>
+
+$LogFile = "D:\ifsbosystem\log\EWOPS-MDL-EFTLogArchiver-$(Get-Date -Format 'yyyy-MM-dd').log"
+$Source = 'D:\IFSBOData\EFTLog\*'
+$Destination = '\\rej-p-int003.rejprod.local\E-Drive\FTP Repository\EW\EFTLogs'
+
+Function Write-Log([String] $LogText,[ValidateSet('INFO','WARN','ERROR','FATAL','DEBUG')][String]$Level='INFO'){
+ # Please note that this function requires a $logfile var to be defined, otherwise it will output to pipeline (the standard output, usually the screen)
+ If ($LogFile) {
+ Add-Content -Path $LogFile -Value "$(Get-Date -Format 'yyyy-MM-dd HH:mm:ss') $Level - $Logtext"
+ }
+ Else {
+ Write-Output "$(Get-Date -Format 'yyyy-MM-dd HH:mm:ss') $Level - $Logtext"
+ }
+
+}
+
+Write-Log -LogText "Job start"
+
+$Files = Get-Item -Path $Source | Get-ChildItem -Recurse | Where { $_.Attributes -notcontains 'directory' -and $_.Name -match 'EFTLog-[0-9]{6}-[0-9]{8}.log.gz' }
+
+If(-not $Files) {
+ Write-Log -Level WARN -LogText "Job stopping prematurely - No files found"
+}
+Else {
+ Write-Log -LogText "Found $($files.Count) file(s)"
+ ForEach($File in $Files) {
+ Try {
+ $File.name -match 'EFTLog-(?[0-9]{6})-(?[0-9]{4})(?[0-9]{2})(?[0-9]{2}).log.gz' | Out-Null # this line is to extract the date format as used by bankcardreader (it is incorrect by manufacturer design)
+ If (!(Test-Path "$Destination\$($Matches.Year)\$($Matches.Month)\$($Matches.day)\")) {
+ Write-Log -LogText "Creating folder $Destination\$($Matches.Year)\$($Matches.Month)\$($Matches.day)\"
+ New-Item -ItemType Directory "$Destination\$($Matches.Year)\$($Matches.Month)\$($Matches.day)\" | Out-Null
+ }
+ Write-Log -LogText "Moving $($file.Name)"
+ $File | Move-Item -Destination "$Destination\$($Matches.Year)\$($Matches.Month)\$($Matches.day)\" -Force -ErrorAction Stop
+ }
+ Catch {
+ Write-Log -Level FATAL -LogText "Failed: $($_.ToString().Trim())"
+ }
+ }
+}
+Write-Log -LogText "Job complete"
\ No newline at end of file
diff --git a/MDL-NotProcessed-Cleanup.ps1 b/MDL-NotProcessed-Cleanup.ps1
new file mode 100644
index 0000000..f736e02
--- /dev/null
+++ b/MDL-NotProcessed-Cleanup.ps1
@@ -0,0 +1,54 @@
+<#
+Script: MDL-NotProcessed-Cleanup.ps1
+Emil Holgersen, Thales, 2021-04-21
+This script deletes old subfolders from Incoming_notprocessed_files
+The script is meant to run as a daily scheduled job on the MDL servers, and it has to be run with an account that has "full access" to the folder in question.
+Note that this script was made as a response to the fact that no such feature existed after platform reinstall with version 10.2. I have no idea how this was folder was kept from eating the disk space in prior versions of the system
+#>
+
+$LogFile = "D:\ifsbosystem\log\EWOPS-MDL-NotProcessedCleanup-$(Get-Date -Format 'yyyy-MM-dd').log"
+$RootFolder = 'D:\IFSBOData\FSV\Incoming_notprocessed_files\*'
+$MaxAge = 14
+
+Function Write-Log([String] $LogText,[ValidateSet('INFO','WARN','ERROR','FATAL','DEBUG')][String]$Level='INFO'){
+ # Please note that this function requires a $logfile var to be defined, otherwise it will output to pipeline (the standard output, usually the screen)
+ If ($LogFile) {
+ Add-Content -Path $LogFile -Value "$(Get-Date -Format 'yyyy-MM-dd HH:mm:ss') $Level - $Logtext"
+ }
+ Else {
+ Write-Output "$(Get-Date -Format 'yyyy-MM-dd HH:mm:ss') $Level - $Logtext"
+ }
+
+}
+
+Write-Log -LogText "Job start"
+
+$Folders = Get-ChildItem -Path $RootFolder -Directory
+
+If(-not $Folders) {
+ Write-Log -Level WARN -LogText "Job stopping prematurely - No folders found"
+}
+Else {
+ Write-Log -LogText "Found $($Folders.Count) folders"
+ ForEach($Folder in $Folders) {
+ Try {
+ Write-Log -LogText "Checking $($Folder.FullName)"
+ If (($Folder.Name -match '^(?[0-9]{4})(?[0-9]{2})(?[0-9]{2})$') -eq 'True') { # this line is to validate the foldername and simultaneously extract the date
+ If ($([DateTime]"$($Matches.Year)-$($Matches.Month)-$($Matches.day)").AddDays($MaxAge) -le $(Get-Date)) { # Check that the date is older than maxage
+ $Folder | Remove-Item -Recurse -Force
+ Write-Log -LogText "$($Folder.Name) is more than $MaxAge days old, folder deleted"
+ }
+ Else {
+ Write-Log -LogText "$($Folder.Name) kept"
+ }
+ }
+ Else {
+ Write-Log -Level WARN -LogText "$($Folder.Name) doesn't fit naming format, folder ignored"
+ }
+ }
+ Catch {
+ Write-Log -Level FATAL -LogText "Failed: $($_.ToString().Trim())"
+ }
+ }
+}
+Write-Log -LogText "Job complete"
\ No newline at end of file
diff --git a/Nagios_match_AP_with_nps_list.ps1 b/Nagios_match_AP_with_nps_list.ps1
new file mode 100644
index 0000000..8c3a10e
--- /dev/null
+++ b/Nagios_match_AP_with_nps_list.ps1
@@ -0,0 +1,69 @@
+pushd C:\Users\a.warme\Documents\ # my temp dir
+
+# read in file as an array to compare to in nagios config
+$nagios = Get-Content -Path C:\ew-nagios\prod\etc\nagios\local\hostgroup-accesspoints.cfg -raw
+
+# start scanning the file for matches to file entries from export of prod nps clients
+$nps = Get-Content -Path C:\Users\a.warme\Documents\nps_cleanup\rej-p-rad002_nps.txt
+
+#build custom object with ip, name , and found status
+
+$result = foreach($line in $nps) {
+
+ if($line -match 'Name *= (.*)') {
+ $obj = [pscustomobject]@{
+ IP = ''
+ Name = $Matches[1]
+ Found = ''
+ }
+ Write-Verbose -Verbose "'$line' matches Name - $($Matches[1])"
+ }
+
+
+ #put matches into object
+ elseif($line -match 'Address *= (.*)') {
+ $obj.IP = $Matches[1]
+ $obj.Found = $nagios -match $obj.IP
+ Write-Output $obj
+ Write-Verbose -Verbose "'$line' matches Address - $($Matches[1])"
+ }
+
+ else {
+ Write-Verbose -Verbose "'$line' has no match"
+ }
+}
+
+ #for grid view use
+#$result | Out-GridView
+
+
+#bulding a template for nagios hostgroup
+
+$template = @'
+
+define service {{
+ hostgroup_name AccessPoints
+ service_description {0}-{1}
+ use thales-service
+ check_command check_ap!{2}
+ check_interval 15
+ max_check_attempts 3
+ retry_interval 1
+ servicegroups spoc-monitoring,system-monitoring
+}}
+
+'@
+
+#matching with not found adress and ip
+
+$notFound = $result | Where found -eq $false
+
+#insert adress and ip into template
+
+$output = foreach($obj in $notFound) {
+ $template -f $obj.Name, $obj.IP, $obj.IP
+}
+
+#copy clipboard into hostgroup-accesspoints.cfg , remember to check for # or wierd spaces
+
+$output | Set-Clipboard
diff --git a/SQLtoCSV.ps1 b/SQLtoCSV.ps1
new file mode 100644
index 0000000..d12c28b
--- /dev/null
+++ b/SQLtoCSV.ps1
@@ -0,0 +1,34 @@
+<#
+Function for extracting SQL data into CSV format that is friendlier for excel than the the way SQL management studio does it. (line breaks in text causes excel to fuck up due to lack of string delimiters in sqlmanstud)
+Simply replace the sqlcommand string at the bottom, the data will be output to a file in the current path in which the scriptenv runs.
+
+Written by Emil Holgersen on 2020-10-30
+#>
+
+function Invoke-SQL {
+ param(
+ [string] $dataSource = 'rejk-p-sql003\sql01',
+ [string] $database = 'AfcCookedIFSv2',
+ [string] $sqlCommand = $(throw "Please specify a query.")
+ )
+
+ $connectionString = "Data Source=$dataSource; " +
+ "Integrated Security=SSPI; " +
+ "Initial Catalog=$database"
+
+ $connection = new-object system.data.SqlClient.SQLConnection($connectionString)
+ $command = new-object system.data.sqlclient.sqlcommand($sqlCommand,$connection)
+ $connection.Open()
+
+ $adapter = New-Object System.Data.sqlclient.sqlDataAdapter $command
+ $dataset = New-Object System.Data.DataSet
+ $adapter.Fill($dataSet) | Out-Null
+
+ $connection.Close()
+ $dataSet.Tables
+
+}
+
+#Example:
+$data = Invoke-SQL -sqlCommand 'SELECT * FROM [AfcCookedIFSV2].[pom].[ObjOrder] o Join [AfcCookedIFSV2].[pom].objordercardordering oco on oco.orderid = o.orderid Where Customerid in (''396919'')'
+$data | Export-Csv -Path .\SQLData.csv -NoTypeInformation -Encoding Unicode
\ No newline at end of file
diff --git a/Scan server logfiles for string.ps1 b/Scan server logfiles for string.ps1
new file mode 100644
index 0000000..d177e2c
--- /dev/null
+++ b/Scan server logfiles for string.ps1
@@ -0,0 +1,2 @@
+$s = 1..4 | % { get-item \\rejk-p-app00$_\d-drive\ifsbosystem\log\*.* } | where { $_.lastwritetime -gt (Get-Date).AddDays(-4) } | Select-String -Pattern 'InsertBlackListCard.*'
+$s | Out-GridView
\ No newline at end of file
diff --git a/TCS-StuckFileMover.ps1 b/TCS-StuckFileMover.ps1
new file mode 100644
index 0000000..70a2a69
--- /dev/null
+++ b/TCS-StuckFileMover.ps1
@@ -0,0 +1,34 @@
+<#
+Script: TCS-StuckFileMover.ps
+Emil Holgersen, Thales, 2021-03-16
+This script moves any transactionfiles in the outgoing fsv subfolders that are more than 2 hours old back into the start folder.
+This script is meant as a temporary fix while the devs figure out why some files get stuck on the tcs servers.
+Please note that the script includes the year 2021 in the path. It will need modification if intended to run past the end of the year.
+
+Revision 1.1: Changed from using start time for all timestamps in log to using dynamic timestamps. (this was lifted from an old Thales script)
+#>
+
+$logfile = 'D:\ifsbosystem\log\FSV.EWOPS.StuckFileMover.log'
+$destination = 'D:\IFSBOData\FSV\Outgoing\REJ-P-MDL003V\DCP_ud'
+$notprocessedpath = 'D:\IFSBOData\FSV\Outgoing\REJ-P-MDL003V\DCP_ud\2021\*'
+
+Add-Content -Path $logfile -Value "$(Get-Date -Format 'yyyy-MM-dd HH:mm:ss') - Job start"
+
+$files = Get-Item -Path $notprocessedpath | Get-ChildItem -Recurse | Where { $_.Attributes -notcontains 'directory' -and $_.Name -notmatch 'MsgBoxConf.xml' -and $_.CreationTime -le $(Get-Date).AddHours(-2) }
+
+if(-not $files) {
+ Add-Content -Path $logfile -Value "$(Get-Date -Format 'yyyy-MM-dd HH:mm:ss') - Job stopping prematurely - No files found"
+}
+else {
+ Add-Content -Path $logfile -Value "$(Get-Date -Format 'yyyy-MM-dd HH:mm:ss') - Found $($files.Count) file(s)"
+ foreach($file in $files) {
+ try {
+ Add-Content -Path $logfile -Value "$(Get-Date -Format 'yyyy-MM-dd HH:mm:ss') - Moving $($file.Name)"
+ $file | Move-Item -Destination $destination -ErrorAction Stop
+ }
+ catch {
+ Add-Content -Path $logfile -Value "$(Get-Date -Format 'yyyy-MM-dd HH:mm:ss') - Failed: $($_.ToString().Trim())"
+ }
+ }
+ Add-Content -Path $logfile -Value "$(Get-Date -Format 'yyyy-MM-dd HH:mm:ss') - Job complete"
+}
\ No newline at end of file
diff --git a/accesspoint_compare.ps1 b/accesspoint_compare.ps1
new file mode 100644
index 0000000..4ad3df7
--- /dev/null
+++ b/accesspoint_compare.ps1
@@ -0,0 +1,28 @@
+# Set the paths to the files you want to compare
+$file1 = "C:\ew-nagios\prod\etc\nagios\local\hostgroup-accesspoints.cfg"
+$file2 = "C:\Users\a.warme\Documents\nps_cleanup\apworkfile2.txt"
+
+
+# Read the contents of the files
+$content1 = Get-Content $file1 -Raw
+$content2 = Get-Content $file2 -Raw
+
+# Split the file contents into words and remove any empty words
+$words1 = $content1 -split "\W+" | Where-Object { $_ -ne "" }
+$words2 = $content2 -split "\W+" | Where-Object { $_ -ne "" }
+
+# Find matching words between the two files
+$matchedWords = $words1 | Select-String -Pattern $words2 -SimpleMatch | ForEach-Object { $_.Line } | Get-Unique
+
+# Get the line numbers of the matched lines in file 1
+$matchedLineNumbers = $content1 | Select-String -Pattern $matchedWords | ForEach-Object { $_.LineNumber - 1 } | Get-Unique
+
+# Open Notepad++ on the matched lines
+if ($matchedLineNumbers) {
+ $lineNumbersString = $matchedLineNumbers -join ","
+ $command = "notepad++ $file1 -n$lineNumbersString"
+ Start-Process powershell -ArgumentList "-Command $command"
+ Write-Host "Notepad++ opened on the matched lines in nagios"
+} else {
+ Write-Host "No matching lines found in nagios"
+}
diff --git a/afkmousemove.ps1 b/afkmousemove.ps1
new file mode 100644
index 0000000..2a2cdd6
--- /dev/null
+++ b/afkmousemove.ps1
@@ -0,0 +1,4 @@
+While ($true) {
+ [System.Windows.Forms.Cursor]::Position = New-Object System.Drawing.Point((Get-Random -Minimum 1 -Maximum 1000),(Get-Random -Minimum 1 -Maximum 1000))
+ Start-Sleep -Seconds 120
+}
diff --git a/azurepowershell-ipsec-commands.ps1 b/azurepowershell-ipsec-commands.ps1
new file mode 100644
index 0000000..c4f3a89
--- /dev/null
+++ b/azurepowershell-ipsec-commands.ps1
@@ -0,0 +1,47 @@
+azure powershell
+
+# Virtual network
+$RG1 = "resource_west_eu_api_test"
+$VNet1 = "west-Eu-Api-2"
+$Location1 = "West Europe"
+$VNet1Prefix = "10.50.0.0/16"
+$VNet1ASN = 65010
+$Gw1 = "virutal-gateway"
+
+# On-premises network - LNGIP1 is the VPN device public IP address
+$LNG1 = "VPNsite1"
+$LNGprefix1 = "10.100.102.0/24"
+$LNGIP1 = "195.215.105.8"
+
+# Connection
+$Connection1 = "VNet1ToSite1"
+
+New-AzLocalNetworkGateway -Name $LNG1 -ResourceGroupName $RG1 `
+ -Location $Location1 -GatewayIpAddress $LNGIP1 -AddressPrefix $LNGprefix1
+
+$vng1 = Get-AzVirtualNetworkGateway -Name $GW1 -ResourceGroupName $RG1
+$lng1 = Get-AzLocalNetworkGateway -Name $LNG1 -ResourceGroupName $RG1
+
+
+New-AzVirtualNetworkGatewayConnection -Name $Connection1 -ResourceGroupName $RG1 `
+ -Location $Location1 -VirtualNetworkGateway1 $vng1 -LocalNetworkGateway2 $lng1 `
+ -ConnectionType IPsec -SharedKey "Azure@!b2C3" -ConnectionProtocol IKEv2
+
+ #to show key
+ #Get-AzVirtualNetworkGatewayConnectionSharedKey `
+ #-Name $Connection1 -ResourceGroupName $RG1
+
+ #to change the key
+ #Set-AzVirtualNetworkGatewayConnectionSharedKey `
+ #-Name $Connection1 -ResourceGroupName $RG1 `
+ #-Value "Azure@!_b2=C3"
+
+$connection = Get-AzVirtualNetworkGatewayConnection -Name $Connection1 ` -ResourceGroupName $RG1
+$newpolicy = New-AzIpsecPolicy ` -IkeEncryption AES256 -IkeIntegrity SHA256 -DhGroup DHGroup2 `
+ -IpsecEncryption AES128 -IpsecIntegrity SHA1 -PfsGroup PFS2048 `
+ -SALifeTimeSeconds 14400 -SADataSizeKilobytes 102400000
+
+Set-AzVirtualNetworkGatewayConnection -VirtualNetworkGatewayConnection $connection `
+ -IpsecPolicies $newpolicy
+
+
diff --git a/azuretestbuildscripts/ExportedTemplate-resource_west_eu_api_test (5).zip b/azuretestbuildscripts/ExportedTemplate-resource_west_eu_api_test (5).zip
new file mode 100644
index 0000000..fa89a75
Binary files /dev/null and b/azuretestbuildscripts/ExportedTemplate-resource_west_eu_api_test (5).zip differ
diff --git a/azuretestbuildscripts/mix_of_templates/ExportedTemplate-resource_west_eu_api_test (1).zip b/azuretestbuildscripts/mix_of_templates/ExportedTemplate-resource_west_eu_api_test (1).zip
new file mode 100644
index 0000000..0a48abb
Binary files /dev/null and b/azuretestbuildscripts/mix_of_templates/ExportedTemplate-resource_west_eu_api_test (1).zip differ
diff --git a/azuretestbuildscripts/mix_of_templates/ExportedTemplate-resource_west_eu_api_test (2).zip b/azuretestbuildscripts/mix_of_templates/ExportedTemplate-resource_west_eu_api_test (2).zip
new file mode 100644
index 0000000..8ede6f8
Binary files /dev/null and b/azuretestbuildscripts/mix_of_templates/ExportedTemplate-resource_west_eu_api_test (2).zip differ
diff --git a/azuretestbuildscripts/mix_of_templates/ExportedTemplate-resource_west_eu_api_test (3).zip b/azuretestbuildscripts/mix_of_templates/ExportedTemplate-resource_west_eu_api_test (3).zip
new file mode 100644
index 0000000..db5fc58
Binary files /dev/null and b/azuretestbuildscripts/mix_of_templates/ExportedTemplate-resource_west_eu_api_test (3).zip differ
diff --git a/azuretestbuildscripts/mix_of_templates/ExportedTemplate-resource_west_eu_api_test (4).zip b/azuretestbuildscripts/mix_of_templates/ExportedTemplate-resource_west_eu_api_test (4).zip
new file mode 100644
index 0000000..a788077
Binary files /dev/null and b/azuretestbuildscripts/mix_of_templates/ExportedTemplate-resource_west_eu_api_test (4).zip differ
diff --git a/azuretestbuildscripts/mix_of_templates/ExportedTemplate-resource_west_eu_api_test.zip b/azuretestbuildscripts/mix_of_templates/ExportedTemplate-resource_west_eu_api_test.zip
new file mode 100644
index 0000000..e158654
Binary files /dev/null and b/azuretestbuildscripts/mix_of_templates/ExportedTemplate-resource_west_eu_api_test.zip differ
diff --git a/azuretestbuildscripts/mix_of_templates/ExportedTemplate-resource_west_eu_api_test_Ressourcegroup.zip b/azuretestbuildscripts/mix_of_templates/ExportedTemplate-resource_west_eu_api_test_Ressourcegroup.zip
new file mode 100644
index 0000000..714867d
Binary files /dev/null and b/azuretestbuildscripts/mix_of_templates/ExportedTemplate-resource_west_eu_api_test_Ressourcegroup.zip differ
diff --git a/borisprereq_installer.ps1 b/borisprereq_installer.ps1
new file mode 100644
index 0000000..41f090f
--- /dev/null
+++ b/borisprereq_installer.ps1
@@ -0,0 +1,30 @@
+$downloadsFolder = "$env:userprofile\Downloads"
+$exeFiles = Get-ChildItem -Path $downloadsFolder -Filter *.exe
+$msuFiles = Get-ChildItem -Path $downloadsFolder -Filter *.msu
+
+foreach ($file in $exeFiles) {
+ $program = Get-ItemProperty -Path "HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*" | Where-Object {$_.DisplayName -eq $file.BaseName}
+ if ($program -eq $null) {
+ Start-Process -FilePath $file.FullName -ArgumentList "/quiet"
+ Write-Host "Installed $($file.Name)"
+ } else {
+ Write-Host "$($file.Name) is already installed"
+ }
+}
+
+foreach ($file in $msuFiles) {
+ $update = Get-HotFix | Where-Object {$_.HotFixID -eq $file.BaseName}
+ if ($update -eq $null) {
+ $kbNumber = $file.BaseName -replace 'KB',''
+ $kbRegKey = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Package_for_KB$kbNumber~*~*~*"
+ $kbPackage = Get-Item $kbRegKey -ErrorAction SilentlyContinue
+ if ($kbPackage -ne $null) {
+ Start-Process -FilePath "dism.exe" -ArgumentList "/Online", "/Add-Package", "/PackagePath:$($file.FullName)", "/Quiet", "/NoRestart"
+ Write-Host "Installed $($file.Name)"
+ } else {
+ Write-Host "$($file.Name) is already installed"
+ }
+ } else {
+ Write-Host "$($file.Name) is already installed"
+ }
+}
diff --git a/conv-Pfx-to-pem.ps1 b/conv-Pfx-to-pem.ps1
new file mode 100644
index 0000000..7f33360
--- /dev/null
+++ b/conv-Pfx-to-pem.ps1
@@ -0,0 +1,20 @@
+
+#Konverter pfx-fil til PEM-fil
+#Konvertering til en kombineret PEM-fil
+#For at konvertere en PFX-fil til en PEM-fil, der indeholder både certifikatet og den private nøgle, skal følgende kommando bruges:
+mkdir c:\certconv
+Copy-Item -Recurse -Force "C:\Users\$env:username\Downloads\star.east-west.dk-2024-02-05" -Destination c:\certconv
+
+cd C:\Users\$env:username\Downloads\star.east-west.dk-2024-02-05\
+
+#run "" in cmd (with openssl installed on pc)
+
+powershell -command "openssl pkcs12 -in .\star.east-west.dk-2024-02-05.pfx -out ewdk.key"
+
+powershell -command "openssl rsa -in .\star.east-west.dk.key -out ewdkdecrypt.key"
+
+remove-item .\ewdk.key
+
+powershell -command "openssl pkcs12 -in .\star.east-west.dk-2024-02-05.pfx -clcerts -nokeys -out ewdkcert.crt"
+
+powershell -command "pkcs12 -in star.east-west.dk-2024-02-05.pfx -cacerts -out ewdkbundle.crt"
diff --git a/dpsDNSlookup/dpsDNSlookup.ps1 b/dpsDNSlookup/dpsDNSlookup.ps1
new file mode 100644
index 0000000..3ffa25f
--- /dev/null
+++ b/dpsDNSlookup/dpsDNSlookup.ps1
@@ -0,0 +1,1040 @@
+#credit : Martin Nielsen
+
+$dps = @"
+dps2000
+dps2001
+dps2002
+dps2003
+dps2004
+dps2005
+dps2006
+dps2007
+dps2008
+dps2009
+dps2010
+dps2011
+dps2012
+dps2013
+dps2014
+dps2015
+dps2016
+dps2017
+dps2018
+dps2019
+dps2020
+dps2021
+dps2022
+dps2023
+dps2024
+dps2025
+dps2026
+dps2027
+dps2028
+dps2029
+dps2030
+dps2031
+dps2032
+dps2033
+dps2034
+dps2035
+dps2036
+dps2037
+dps2038
+dps2039
+dps2040
+dps2041
+dps2042
+dps2043
+dps2044
+dps2045
+dps2046
+dps2047
+dps2048
+dps2049
+dps2050
+dps2051
+dps2052
+dps2053
+dps2054
+dps2055
+dps2056
+dps2057
+dps2058
+dps2059
+dps2060
+dps2061
+dps2062
+dps2063
+dps2064
+dps2065
+dps2066
+dps2067
+dps2068
+dps2069
+dps2070
+dps2071
+dps2072
+dps2073
+dps2074
+dps2075
+dps2076
+dps2077
+dps2078
+dps2079
+dps2080
+dps2081
+dps2082
+dps2083
+dps2084
+dps2085
+dps2086
+dps2087
+dps2088
+dps2089
+dps2090
+dps2091
+dps2092
+dps2093
+dps2094
+dps2095
+dps2096
+dps2097
+dps2098
+dps2099
+dps2100
+dps2101
+dps2102
+dps2103
+dps2104
+dps2105
+dps2106
+dps2107
+dps2108
+dps2109
+dps2110
+dps2111
+dps2112
+dps2113
+dps2114
+dps2115
+dps2116
+dps2117
+dps2118
+dps2119
+dps2120
+dps2121
+dps2122
+dps2123
+dps2124
+dps2125
+dps2126
+dps2127
+dps2128
+dps2129
+dps2130
+dps2131
+dps2132
+dps2133
+dps2134
+dps2135
+dps2136
+dps2137
+dps2138
+dps2139
+dps2140
+dps2141
+dps2142
+dps2143
+dps2144
+dps2145
+dps2146
+dps2147
+dps2148
+dps2149
+dps2150
+dps2151
+dps2152
+dps2153
+dps2154
+dps2155
+dps2156
+dps2157
+dps2158
+dps2159
+dps2160
+dps2161
+dps2162
+dps2163
+dps2164
+dps2165
+dps2166
+dps2167
+dps2168
+dps2169
+dps2170
+dps2171
+dps2172
+dps2173
+dps2174
+dps2175
+dps2176
+dps2177
+dps2178
+dps2179
+dps2180
+dps2181
+dps2182
+dps2183
+dps2184
+dps2185
+dps2186
+dps2187
+dps2188
+dps2189
+dps2190
+dps2191
+dps2192
+dps2193
+dps2194
+dps2195
+dps2196
+dps2197
+dps2198
+dps2199
+dps2200
+dps2201
+dps2202
+dps2203
+dps2204
+dps2205
+dps2206
+dps2207
+dps2208
+dps2209
+dps2210
+dps2211
+dps2212
+dps2213
+dps2214
+dps2215
+dps2216
+dps2217
+dps2218
+dps2219
+dps2220
+dps2221
+dps2222
+dps2223
+dps2224
+dps2225
+dps2226
+dps2227
+dps2228
+dps2229
+dps2230
+dps2231
+dps2232
+dps2233
+dps2234
+dps2235
+dps2236
+dps2237
+dps2238
+dps2239
+dps2240
+dps2241
+dps2242
+dps2243
+dps2244
+dps2245
+dps2246
+dps2247
+dps2248
+dps2249
+dps2250
+dps2251
+dps2252
+dps2253
+dps2254
+dps2255
+dps2256
+dps2257
+dps2258
+dps2259
+dps2260
+dps2261
+dps2262
+dps2263
+dps2264
+dps2265
+dps2266
+dps2267
+dps2268
+dps2269
+dps2270
+dps2271
+dps2272
+dps2273
+dps2274
+dps2275
+dps2276
+dps2277
+dps2278
+dps2279
+dps2280
+dps2281
+dps2282
+dps2283
+dps2284
+dps2285
+dps2286
+dps2287
+dps2288
+dps2289
+dps2290
+dps2291
+dps2292
+dps2293
+dps2294
+dps2295
+dps2296
+dps2297
+dps2298
+dps2299
+dps2300
+dps2301
+dps2302
+dps2303
+dps2304
+dps2305
+dps2306
+dps2307
+dps2308
+dps2309
+dps2310
+dps2311
+dps2312
+dps2313
+dps2314
+dps2315
+dps2316
+dps2317
+dps2318
+dps2319
+dps2320
+dps2321
+dps2322
+dps2323
+dps2324
+dps2325
+dps2326
+dps2327
+dps2328
+dps2329
+dps2330
+dps2331
+dps2332
+dps2333
+dps2334
+dps2335
+dps2336
+dps2337
+dps2338
+dps2339
+dps2340
+dps2341
+dps2342
+dps2343
+dps2344
+dps2345
+dps2346
+dps2347
+dps2348
+dps2349
+dps2350
+dps2351
+dps2352
+dps2353
+dps2354
+dps2355
+dps2356
+dps2357
+dps2358
+dps2359
+dps2360
+dps2361
+dps2362
+dps2363
+dps2364
+dps2365
+dps2366
+dps2367
+dps2368
+dps2369
+dps2370
+dps2371
+dps2372
+dps2373
+dps2374
+dps2375
+dps2376
+dps2377
+dps2378
+dps2379
+dps2380
+dps2381
+dps2382
+dps2383
+dps2384
+dps2385
+dps2386
+dps2387
+dps2388
+dps2389
+dps2390
+dps2391
+dps2392
+dps2393
+dps2394
+dps2395
+dps2396
+dps2397
+dps2398
+dps2399
+dps2400
+dps2401
+dps2402
+dps2403
+dps2404
+dps2405
+dps2406
+dps2407
+dps2408
+dps2409
+dps2410
+dps2411
+dps2412
+dps2413
+dps2414
+dps2415
+dps2416
+dps2417
+dps2418
+dps2419
+dps2420
+dps2421
+dps2422
+dps2423
+dps2424
+dps2425
+dps2426
+dps2427
+dps2428
+dps2429
+dps2430
+dps2431
+dps2432
+dps2433
+dps2434
+dps2435
+dps2436
+dps2437
+dps2438
+dps2439
+dps2440
+dps2441
+dps2442
+dps2443
+dps2444
+dps2445
+dps2446
+dps2447
+dps2448
+dps2449
+dps2450
+dps2451
+dps2452
+dps2453
+dps2454
+dps2455
+dps2456
+dps2457
+dps2458
+dps2459
+dps2460
+dps2461
+dps2462
+dps2463
+dps2464
+dps2465
+dps2466
+dps2467
+dps2468
+dps2469
+dps2470
+dps2471
+dps2472
+dps2473
+dps2474
+dps2475
+dps2476
+dps2477
+dps2478
+dps2479
+dps2480
+dps2481
+dps2482
+dps2483
+dps2484
+dps2485
+dps2486
+dps2487
+dps2488
+dps2489
+dps2490
+dps2491
+dps2492
+dps2493
+dps2494
+dps2495
+dps2496
+dps2497
+dps2498
+dps2499
+dps2500
+dps2501
+dps2502
+dps2503
+dps2504
+dps2505
+dps2506
+dps2507
+dps2508
+dps2509
+dps2510
+dps2511
+dps2512
+dps2513
+dps2514
+dps2515
+dps2516
+dps2517
+dps2518
+dps2519
+dps2520
+dps2521
+dps2522
+dps2523
+dps2524
+dps2525
+dps2526
+dps2527
+dps2528
+dps2529
+dps2530
+dps2531
+dps2532
+dps2533
+dps2534
+dps2535
+dps2536
+dps2537
+dps2538
+dps2539
+dps2540
+dps2541
+dps2542
+dps2543
+dps2544
+dps2545
+dps2546
+dps2547
+dps2548
+dps2549
+dps2550
+dps2551
+dps2552
+dps2553
+dps2554
+dps2555
+dps2556
+dps2557
+dps2558
+dps2559
+dps2560
+dps2561
+dps2562
+dps2563
+dps2564
+dps2565
+dps2566
+dps2567
+dps2568
+dps2569
+dps2570
+dps2571
+dps2572
+dps2573
+dps2574
+dps2575
+dps2576
+dps2577
+dps2578
+dps2579
+dps2580
+dps2581
+dps2582
+dps2583
+dps2584
+dps2585
+dps2586
+dps2587
+dps2588
+dps2589
+dps2590
+dps2591
+dps2592
+dps2593
+dps2594
+dps2595
+dps2596
+dps2597
+dps2598
+dps2599
+dps2600
+dps2601
+dps2602
+dps2603
+dps2604
+dps2605
+dps2606
+dps2607
+dps2608
+dps2609
+dps2610
+dps2611
+dps2612
+dps2613
+dps2614
+dps2615
+dps2616
+dps2617
+dps2618
+dps2619
+dps2620
+dps2621
+dps2622
+dps2623
+dps2624
+dps2625
+dps2626
+dps2627
+dps2628
+dps2629
+dps2630
+dps2631
+dps2632
+dps2633
+dps2634
+dps2635
+dps2636
+dps2637
+dps2638
+dps2639
+dps2640
+dps2641
+dps2642
+dps2643
+dps2644
+dps2645
+dps2646
+dps2647
+dps2648
+dps2649
+dps2650
+dps2651
+dps2652
+dps2653
+dps2654
+dps2655
+dps2656
+dps2657
+dps2658
+dps2659
+dps2660
+dps2661
+dps2662
+dps2663
+dps2664
+dps2665
+dps2666
+dps2667
+dps2668
+dps2669
+dps2670
+dps2671
+dps2672
+dps2673
+dps2674
+dps2675
+dps2676
+dps2677
+dps2678
+dps2679
+dps2680
+dps2681
+dps2682
+dps2683
+dps2684
+dps2685
+dps2686
+dps2687
+dps2688
+dps2689
+dps2690
+dps2691
+dps2692
+dps2693
+dps2694
+dps2695
+dps2696
+dps2697
+dps2698
+dps2699
+dps2700
+dps2701
+dps2702
+dps2703
+dps2704
+dps2705
+dps2706
+dps2707
+dps2708
+dps2709
+dps2710
+dps2711
+dps2712
+dps2713
+dps2714
+dps2715
+dps2716
+dps2717
+dps2718
+dps2719
+dps2720
+dps2721
+dps2722
+dps2723
+dps2724
+dps2725
+dps2726
+dps2727
+dps2728
+dps2729
+dps2730
+dps2731
+dps2732
+dps2733
+dps2734
+dps2735
+dps2736
+dps2737
+dps2738
+dps2739
+dps2740
+dps2741
+dps2742
+dps2743
+dps2744
+dps2745
+dps2746
+dps2747
+dps2748
+dps2749
+dps2750
+dps2751
+dps2752
+dps2753
+dps2754
+dps2755
+dps2756
+dps2757
+dps2758
+dps2759
+dps2760
+dps2761
+dps2762
+dps2763
+dps2764
+dps2765
+dps2766
+dps2767
+dps2768
+dps2769
+dps2770
+dps2771
+dps2772
+dps2773
+dps2774
+dps2775
+dps2776
+dps2777
+dps2778
+dps2779
+dps2780
+dps2781
+dps2782
+dps2783
+dps2784
+dps2785
+dps2786
+dps2787
+dps2788
+dps2789
+dps2790
+dps2791
+dps2792
+dps2793
+dps2794
+dps2795
+dps2796
+dps2797
+dps2798
+dps2799
+dps2800
+dps2801
+dps2802
+dps2803
+dps2804
+dps2805
+dps2806
+dps2807
+dps2808
+dps2809
+dps2810
+dps2811
+dps2812
+dps2813
+dps2814
+dps2815
+dps2816
+dps2817
+dps2818
+dps2819
+dps2820
+dps2821
+dps2822
+dps2823
+dps2824
+dps2825
+dps2826
+dps2827
+dps2828
+dps2829
+dps2830
+dps2831
+dps2832
+dps2833
+dps2834
+dps2835
+dps2836
+dps2837
+dps2838
+dps2839
+dps2840
+dps2841
+dps2842
+dps2843
+dps2844
+dps2845
+dps2846
+dps2847
+dps2848
+dps2849
+dps2850
+dps2851
+dps2852
+dps2853
+dps2854
+dps2855
+dps2856
+dps2857
+dps2858
+dps2859
+dps2860
+dps2861
+dps2862
+dps2863
+dps2864
+dps2865
+dps2866
+dps2867
+dps2868
+dps2869
+dps2870
+dps2871
+dps2872
+dps2873
+dps2874
+dps2875
+dps2876
+dps2877
+dps2878
+dps2879
+dps2880
+dps2881
+dps2882
+dps2883
+dps2884
+dps2885
+dps2886
+dps2887
+dps2888
+dps2889
+dps2890
+dps2891
+dps2892
+dps2893
+dps2894
+dps2895
+dps2896
+dps2897
+dps2898
+dps2899
+dps2900
+dps2901
+dps2902
+dps2903
+dps2904
+dps2905
+dps2906
+dps2907
+dps2908
+dps2909
+dps2910
+dps2911
+dps2912
+dps2913
+dps2914
+dps2915
+dps2916
+dps2917
+dps2918
+dps2919
+dps2920
+dps2921
+dps2922
+dps2923
+dps2924
+dps2925
+dps2926
+dps2927
+dps2928
+dps2929
+dps2930
+dps2931
+dps2932
+dps2933
+dps2934
+dps2935
+dps2936
+dps2937
+dps2938
+dps2939
+dps2940
+dps2941
+dps2942
+dps2943
+dps2944
+dps2945
+dps2946
+dps2947
+dps2948
+dps2949
+dps2950
+dps2951
+dps2952
+dps2953
+dps2954
+dps2955
+dps2956
+dps2957
+dps2958
+dps2959
+dps2960
+dps2961
+dps2962
+dps2963
+dps2964
+dps2965
+dps2966
+dps2967
+dps2968
+dps2969
+dps2970
+dps2971
+dps2972
+dps2973
+dps2974
+dps2975
+dps2976
+dps2977
+dps2978
+dps2979
+dps2980
+dps2981
+dps2982
+dps2983
+dps2984
+dps2985
+dps2986
+dps2987
+dps2988
+dps2989
+dps2990
+dps2991
+dps2992
+dps2993
+dps2994
+dps2995
+dps2996
+dps2997
+dps2998
+dps2999
+dps3000
+"@.Replace("`r","").split("`n")
+
+
+
+
+
+$domains = @{
+ 'rjktesta.rjktest.local' = 'rejtesta.local'
+ 'rjktestc.rjktest.local' = 'rejtestc.local'
+ 'rjktrain.local' = 'rejtrain.local'
+ 'rjkpreprod.local' = 'rejpreprod.local'
+ 'rjkprod.local' = 'rejprod.local'
+}
+$output = foreach($suffix in $domains.Keys) {
+
+ $dc = $domains[$suffix]
+ foreach($server in $dps) {
+
+ $lookup = "$server.$suffix"
+ try {
+ $result = Resolve-DnsName -Name $lookup -Server $dc -ErrorAction Stop
+ Write-Output ([pscustomobject]@{
+ Lookup = $lookup
+ Result = $result[0].Address
+ })
+ }
+ catch {
+ Write-Output ([pscustomobject]@{
+ Lookup = $lookup
+ Result = $null
+ })
+ }
+ }
+}
+#$output | Export-Csv -Path C:\Users\****\Documents\csv4.csv -NoTypeInformation
+#$output | where result -eq $result.Address | Export-Csv -Path C:\Users\****\Documents\csv3.csv -NoTypeInformation
\ No newline at end of file
diff --git a/expirepasswordmailscript.ps1 b/expirepasswordmailscript.ps1
new file mode 100644
index 0000000..c9cd465
--- /dev/null
+++ b/expirepasswordmailscript.ps1
@@ -0,0 +1,107 @@
+#Script to notify Active Directory users about the expiry of their passwords
+#Below is a script that is able to identify Active Directory accounts that are about to expire and sends a mail notification to the end users. It optionally allows sending the applied Password Policy settings which make easier for users to choose a new password that meets the company requirements.
+
+#You will need to update the following parameters:
+
+#$verbose: Set it to $true if you would like to send the Password Policy settings to the end users. If you do not want to use this optional feature, you can set the value to $false.
+#$notificationstartday: Set the value of the default interval to start notifying the users about the expiry (This is the delta between the current date and the expiry date)
+#$sendermailaddress: Set the e-mail address that will be used to send mail notifications. It can be, as an example, your Service Desk e-mail address
+#$SMTPserver: Set the DNS name or the IP address of your SMTP server
+#$DN: Set the Distinguished Name of the start of a search for AD user accounts. You can update it to be your Domain Distinguished Name if you would like to scan all the users in your Active Directory domain
+
+##############Variables#################
+$verbose = $true
+$notificationstartday = 14
+$sendermailaddress = "no-reply@east-west.dk"
+$SMTPserver = "10.100.136.9"
+$DN = "DC=domain,DC=east-west,DC=dk"
+########################################
+
+##############Function##################
+function PreparePasswordPolicyMail ($ComplexityEnabled,$MaxPasswordAge,$MinPasswordAge,$MinPasswordLength,$PasswordHistoryCount)
+{
+ $verbosemailBody = "Below is a summary of the applied Password Policy settings:`r`n`r`n"
+ $verbosemailBody += "Complexity Enabled = " + $ComplexityEnabled + "`r`n`r`n"
+ $verbosemailBody += "Maximum Password Age = " + $MaxPasswordAge + "`r`n`r`n"
+ $verbosemailBody += "Minimum Password Age = " + $MinPasswordAge + "`r`n`r`n"
+ $verbosemailBody += "Minimum Password Length = " + $MinPasswordLength + "`r`n`r`n"
+ $verbosemailBody += "Remembered Password History = " + $PasswordHistoryCount + "`r`n`r`n"
+ return $verbosemailBody
+}
+
+function SendMail ($SMTPserver,$sendermailaddress,$usermailaddress,$mailBody)
+{
+ $smtpServer = $SMTPserver
+ $msg = new-object Net.Mail.MailMessage
+ $smtp = new-object Net.Mail.SmtpClient($smtpServer)
+ $msg.From = $sendermailaddress
+ $msg.To.Add($usermailaddress)
+ $msg.Subject = "Your password is about to expire"
+ $msg.Body = $mailBody
+ $smtp.Send($msg)
+}
+########################################
+
+##############Main######################
+$domainPolicy = Get-ADDefaultDomainPasswordPolicy
+$passwordexpirydefaultdomainpolicy = $domainPolicy.MaxPasswordAge.Days -ne 0
+
+if($passwordexpirydefaultdomainpolicy)
+{
+ $defaultdomainpolicyMaxPasswordAge = $domainPolicy.MaxPasswordAge.Days
+ if($verbose)
+ {
+ $defaultdomainpolicyverbosemailBody = PreparePasswordPolicyMail $PSOpolicy.ComplexityEnabled $PSOpolicy.MaxPasswordAge.Days $PSOpolicy.MinPasswordAge.Days $PSOpolicy.MinPasswordLength $PSOpolicy.PasswordHistoryCount
+ }
+}
+
+foreach ($user in (Get-ADUser -SearchBase $DN -Filter * -properties mail))
+{
+ $samaccountname = $user.samaccountname
+ $PSO= Get-ADUserResultantPasswordPolicy -Identity $samaccountname
+ if ($PSO -ne $null)
+ {
+ $PSOpolicy = Get-ADUserResultantPasswordPolicy -Identity $samaccountname
+ $PSOMaxPasswordAge = $PSOpolicy.MaxPasswordAge.days
+ $pwdlastset = [datetime]::FromFileTime((Get-ADUser -LDAPFilter "(&(samaccountname=$samaccountname))" -properties pwdLastSet).pwdLastSet)
+ $expirydate = ($pwdlastset).AddDays($PSOMaxPasswordAge)
+ $delta = ($expirydate - (Get-Date)).Days
+ $comparionresults = (($expirydate - (Get-Date)).Days -le $notificationstartday) -AND ($delta -ge 1)
+ if ($comparionresults)
+ {
+ $mailBody = "Dear " + $user.GivenName + ",`r`n`r`n"
+ $mailBody += "Your password will expire after " + $delta + " days. You will need to change your password to keep using it.`r`n`r`n"
+ if ($verbose)
+ {
+ $mailBody += PreparePasswordPolicyMail $PSOpolicy.ComplexityEnabledYES $PSOpolicy.MaxPasswordAge.Days90 $PSOpolicy.MinPasswordAge.Days1 $PSOpolicy.MinPasswordLength8 $PSOpolicy.PasswordHistoryCount24
+ }
+ $mailBody += "`r`n`r`nRegards I/O"
+ $usermailaddress = $user.mail
+ SendMail $SMTPserver $sendermailaddress $usermailaddress $mailBody
+ }
+ }
+ else
+ {
+ if($passwordexpirydefaultdomainpolicy)
+ {
+ $pwdlastset = [datetime]::FromFileTime((Get-ADUser -LDAPFilter "(&(samaccountname=$samaccountname))" -properties pwdLastSet).pwdLastSet)
+ $expirydate = ($pwdlastset).AddDays($defaultdomainpolicyMaxPasswordAge)
+ $delta = ($expirydate - (Get-Date)).Days
+ $comparionresults = (($expirydate - (Get-Date)).Days -le $notificationstartday) -AND ($delta -ge 1)
+ if ($comparionresults)
+ {
+ $mailBody = "Dear " + $user.GivenName + ",`r`n`r`n"
+ $delta = ($expirydate - (Get-Date)).Days
+ $mailBody += "Your password will expire after " + $delta + " days. You will need to change your password to keep using it.`r`n`r`n"
+ if ($verbose)
+ {
+ $mailBody += $defaultdomainpolicyverbosemailBody
+ }
+ $mailBody += "`r`n`r`nRegards I/O"
+ $usermailaddress = $user.mail
+ SendMail $SMTPserver $sendermailaddress $usermailaddress $mailBody
+ }
+
+ }
+ }
+}
\ No newline at end of file
diff --git a/exstractpicturefromdb.ps1 b/exstractpicturefromdb.ps1
new file mode 100644
index 0000000..eec832e
--- /dev/null
+++ b/exstractpicturefromdb.ps1
@@ -0,0 +1,38 @@
+$Server = 'rejk-p-sql003\sql01'
+$Database = 'AfcCookedIFSv2'
+$bufferSize = 8192
+$fileLocation = 'C:\Users\ewpawa\test.jpg'
+# Select-Statement for name & blob
+# with filter.
+$query = 'SELECT PhotoData FROM pom.objOrderCardOrdering WHERE OrderID = 21140721'
+# Open ADO.NET Connection
+$con = New-Object Data.SqlClient.SqlConnection
+$con.ConnectionString = "Data Source=$Server; Integrated Security=True; Initial Catalog=$Database"
+$con.Open()
+# New Command and Reader
+$cmd = New-Object Data.SqlClient.SqlCommand $query, $con
+$reader = $cmd.ExecuteReader()
+# Create a byte array for the stream.
+$out = [array]::CreateInstance('Byte', $bufferSize)
+# Looping through records
+$reader.Read()
+# New BinaryWriter
+$fs = New-Object System.IO.FileStream $fileLocation, 'Create', 'Write'
+$bw = New-Object System.IO.BinaryWriter $fs
+$start = 0
+# Read first byte stream
+$received = $reader.GetBytes(0, $start, $out, 0, $bufferSize - 1)
+While ($received -gt 0)
+{
+ $bw.Write($out, 0, $received)
+ $bw.Flush()
+ $start += $received
+ # Read next byte stream
+ $received = $reader.GetBytes(0, $start, $out, 0, $bufferSize - 1)
+}
+$bw.Close()
+$fs.Close()
+$fs.Dispose()
+$reader.Close()
+$cmd.Dispose()
+$con.Close()
\ No newline at end of file
diff --git a/getserverlist/ADcomputerslist._formattedcsv.csv b/getserverlist/ADcomputerslist._formattedcsv.csv
new file mode 100644
index 0000000..92e46b6
--- /dev/null
+++ b/getserverlist/ADcomputerslist._formattedcsv.csv
@@ -0,0 +1,81 @@
+Name;OperatingSystem;OperatingSystemVersion;ipv4Address
+DC04;Windows Server 2019 Standard;10.0 (17763);101001305
+DC01;Windows Server 2016 Datacenter;10.0 (14393);101001302
+DC02;Windows Server 2016 Datacenter;10.0 (14393);101001303
+DC03;Windows Server 2019 Datacenter;10.0 (17763);101001304
+VPN01;Windows Server 2016 Datacenter;10.0 (14393);101001342
+WSUS01;Windows Server 2016 Datacenter;10.0 (14393);1010013011
+DHCP01;Windows Server 2016 Datacenter;10.0 (14393);1010013012
+CHOCO01;Windows Server 2016 Datacenter;10.0 (14393);1010013013
+WSS01;Windows Server 2016 Datacenter;10.0 (14393);1010013014
+KMS01;Windows Server 2016 Datacenter;10.0 (14393);1010013015
+WEB01;Windows Server 2019 Datacenter;10.0 (17763);1010013017
+;;;
+DKN24G2Q;Windows 10 Enterprise LTSC;10.0 (17763);1010013419
+DKN24FYK;Windows 10 Enterprise LTSC;10.0 (17763);172161190
+DKN24G5F;Windows 10 Enterprise LTSC;10.0 (17763);1010013446
+;;;
+DKN24G0L;Windows 10 Enterprise LTSC;10.0 (17763);172161180
+DKN24G1V;Windows 10 Enterprise LTSC;10.0 (17763);17216210
+DKN24G5M;Windows 10 Enterprise LTSC;10.0 (17763);1010013414
+DKN24FY2;Windows 10 Enterprise LTSC;10.0 (17763);1010013449
+DKN24G49;Windows 10 Enterprise LTSC;10.0 (17763);1010013410
+DKN24G23;Windows 10 Enterprise LTSC;10.0 (17763);
+DKN426M5;Windows 10 Enterprise LTSC;10.0 (17763);1010013423
+DKN24FZ1;Windows 10 Enterprise LTSC;10.0 (17763);1010013426
+DKN24G54;Windows 10 Enterprise LTSC;10.0 (17763);1010013416
+DKN24G1L;Windows 10 Enterprise LTSC;10.0 (17763);17216212
+DKN24G0W;Windows 10 Enterprise LTSC;10.0 (17763);1010013425
+DKN24G14;Windows 10 Enterprise LTSC;10.0 (17763);1010013412
+DKN24G4X;Windows 10 Enterprise LTSC;10.0 (17763);1010013428
+DKN24G2Z;Windows 10 Enterprise LTSC;10.0 (17763);
+DKN24G3J;Windows 10 Enterprise LTSC;10.0 (17763);1010013430
+DKN24FZC;Windows 10 Enterprise LTSC;10.0 (17763);172161117
+DKN24G4M;Windows 10 Enterprise LTSC;10.0 (17763);1010013434
+DKN87Z2G;Windows 10 Enterprise LTSC;10.0 (17763);
+DKN24FY9;Windows 10 Enterprise LTSC;10.0 (17763);
+DKN24G37;Windows 10 Enterprise LTSC;10.0 (17763);
+DKN24FZL;Windows 10 Enterprise LTSC;10.0 (17763);1010013427
+DKN24G1F;Windows 10 Enterprise LTSC;10.0 (17763);172161155
+DKN24FWJ;Windows 10 Enterprise LTSC;10.0 (17763);172161121
+DKN24G3Q;Windows 10 Enterprise LTSC;10.0 (17763);1010013433
+DKN24FXS;Windows 10 Enterprise LTSC;10.0 (17763);1010013448
+DKN24FVV;Windows 10 Enterprise LTSC;10.0 (17763);172161160
+HYPERV-03;Windows Server 2019 Datacenter;10.0 (17763);172161195
+HYPERV-04;Windows Server 2019 Datacenter;10.0 (17763);172161179
+PRI-SVV-APP;Windows Server 2016 Datacenter;10.0 (14393);1010013023
+PRI-SVV-SQL;Windows Server 2016 Datacenter;10.0 (14393);1010013025
+PRI-SVV-WEB;Windows Server 2016 Datacenter;10.0 (14393);1010013024
+PRI-CENTRA-SQL;Windows Server 2016 Datacenter;10.0 (14393);101001338
+DKN17TH0;Windows 10 Enterprise LTSC;10.0 (17763);172161169
+STORAGE-02;Windows Server 2019 Datacenter;10.0 (17763);1010013021
+DKN22VLK;Windows 10 Enterprise LTSC;10.0 (17763);
+DKN24G61;Windows 10 Enterprise LTSC;10.0 (17763);1010013410
+CAUStorasev;Windows Server 2019 Datacenter;10.0 (17763);172161200
+CAUNiaHyk94;Windows Server 2019 Datacenter;10.0 (17763);1010013020
+DKN24FVB;Windows 10 Enterprise LTSC;10.0 (17763);172161230
+NiaHyperv-CLU;Windows Server 2019 Datacenter;10.0 (17763);1010013026
+Storage-CLU;Windows Server 2019 Datacenter;10.0 (17763);1010013022
+STORAGE-01;Windows Server 2019 Datacenter;10.0 (17763);
+DKN24FXK;Windows 10 Enterprise LTSC;10.0 (17763);1010013442
+DKN01SLQ;Windows 10 Enterprise LTSC;10.0 (17763);1010013422
+BACKUP-01;Windows Server 2019 Datacenter;10.0 (17763);1010013027
+DKN24FZY;Windows 10 Enterprise LTSC;10.0 (17763);172161145
+DKN97P37;Windows 10 Enterprise LTSC;10.0 (17763);172161172
+DKN26458;Windows 10 Enterprise LTSC;10.0 (17763);
+DKN26456;Windows 10 Enterprise LTSC;10.0 (17763);1010013447
+DKN26457;Windows 10 Enterprise LTSC;10.0 (17763);
+DKN26459;Windows 10 Enterprise LTSC;10.0 (17763);
+DKN01SLM;Windows 10 Enterprise LTSC;10.0 (17763);1010013415
+DKN01SLR;Windows 10 Enterprise LTSC;10.0 (17763);172161255
+DKN01SL7;Windows 10 Enterprise LTSC;10.0 (17763);172161114
+DKN26455;Windows 10 Enterprise LTSC;10.0 (17763);
+DKN98FY7;Windows 10 Enterprise LTSC;10.0 (17763);172161150
+EJRESEKORT01;Windows Server 2019 Datacenter;10.0 (17763);1010013028
+EREJSEKORT-01;Windows Server 2019 Datacenter;10.0 (17763);1010013028
+EREJSEKORT01;Windows Server 2019 Datacenter;10.0 (17763);1010013028
+DKN24G5V;Windows 10 Enterprise LTSC;10.0 (17763);1010013439
+DKN24G3Z;Windows 10 Enterprise LTSC;10.0 (17763);172161178
+DKN01SLL;Windows 10 Enterprise LTSC;10.0 (17763);172161143
+DKN10KD1;Windows 10 Enterprise LTSC;10.0 (17763);172161156
+DKN01SLV;Windows 10 Enterprise LTSC;10.0 (17763);172161151
diff --git a/getserverlist/ADcomputerslist._formattedcsv2.xlsx b/getserverlist/ADcomputerslist._formattedcsv2.xlsx
new file mode 100644
index 0000000..245b07b
Binary files /dev/null and b/getserverlist/ADcomputerslist._formattedcsv2.xlsx differ
diff --git a/getserverlist/ADcomputerslist.csv b/getserverlist/ADcomputerslist.csv
new file mode 100644
index 0000000..cab6b95
--- /dev/null
+++ b/getserverlist/ADcomputerslist.csv
@@ -0,0 +1,173 @@
+"Name","OperatingSystem","OperatingSystemVersion","ipv4Address"
+"DC01","Windows Server 2008 R2 Standard","6.1 (7601)","172.16.254.100"
+"DC02","Windows Server 2008 R2 Standard","6.1 (7601)","172.16.254.101"
+"TTSPC-6Y7RKQ1","Windows 7 Professional","6.1 (7601)",
+"TTSPC-6Y7MKQ1","Windows 7 Professional","6.1 (7601)",
+"TTSPC-I8NSKQ1","Windows 7 Professional","6.1 (7601)",
+"INTFTP","Windows Server 2008 R2 Standard","6.1 (7601)",
+"INTBI","Windows Server 2008 R2 Standard","6.1 (7601)",
+"DK-PBEMCKA","Windows 7 Enterprise","6.1 (7601)",
+"TTS_VM_LICENSE","Windows 7 Enterprise","6.1 (7601)",
+"TTS-FILE01","Windows Server 2008 R2 Standard","6.1 (7601)",
+"TTSPC-PB7799L","Windows 7 Enterprise","6.1 (7601)",
+"TTSPC-PB7799M","Windows 7 Enterprise","6.1 (7601)",
+"TTSPC-PB28GKX","Windows 7 Enterprise","6.1 (7601)",
+"TTSPC-PB2E98H","Windows 7 Enterprise","6.1 (7601)",
+"TTSPC-PBK0F5P","Windows 7 Enterprise","6.1 (7601)",
+"TTSPC-PBL2A0L","Windows 7 Enterprise","6.1 (7601)",
+"TTSPC-PBE2CG1","Windows 7 Enterprise","6.1 (7601)",
+"TTSPC-PBE2CD8","Windows 7 Enterprise","6.1 (7601)",
+"TTSPC-PB009SXS","Windows 7 Enterprise","6.1 (7601)",
+"WALLBOARD-SPOC","Windows 7 Enterprise","6.1 (7601)",
+"TTSPC-SI-WB-01","Windows 7 Enterprise","6.1 (7601)","172.16.1.154"
+"TTSPC-SI-WB-02","Windows 7 Enterprise","6.1 (7601)","172.16.1.203"
+"TTSPC-FF8SQQ1-T","Windows 7 Professional","6.1 (7601)",
+"INTPRN","Windows Server 2008 R2 Standard","6.1 (7601)","172.16.254.105"
+"INTVC","Windows Server 2008 R2 Standard","6.1 (7601)",
+"BORIS-PROD-01","Windows 7 Enterprise","6.1 (7601)","172.16.1.7"
+"BORIS-PROD-02","Windows 7 Enterprise","6.1 (7601)","172.16.1.8"
+"BORIS-A-01","Windows 7 Enterprise","6.1 (7601)",
+"BORIS-A-02","Windows 7 Enterprise","6.1 (7601)",
+"BORIS-C-01","Windows 7 Enterprise","6.1 (7601)",
+"BORIS-C-02","Windows 7 Enterprise","6.1 (7601)",
+"BORIS-PP-02","Windows 7 Enterprise","6.1 (7601)",
+"BORIS-PP-01","Windows 7 Enterprise","6.1 (7601)","172.16.1.5"
+"BORIS-PROD-05","Windows 7 Enterprise","6.1 (7601)","172.16.1.168"
+"BORIS-PROD-04","Windows 7 Enterprise","6.1 (7601)","172.16.1.14"
+"BORIS-PROD-03","Windows 7 Enterprise","6.1 (7601)","172.16.1.106"
+"BORIS-TRN-02","Windows 7 Enterprise","6.1 (7601)","172.16.1.4"
+"BORIS-TRN-01","Windows 7 Enterprise","6.1 (7601)","172.16.1.152"
+"TTSPC-PB00ZL6R","Windows 7 Enterprise","6.1 (7601)",
+"EWMIGSQL","Windows Server 2008 R2 Standard","6.1 (7601)",
+"TTSPC-PB036L2T","Windows 7 Enterprise","6.1 (7601)",
+"DK-PB03BFSZ","Windows 7 Enterprise","6.1 (7601)",
+"DK-5CG5123QV2","Windows 7 Enterprise","6.1 (7601)",
+"DK-5CG5123QVP","Windows 7 Enterprise","6.1 (7601)",
+"DK-5CG5202BY6","Windows 7 Enterprise","6.1 (7601)",
+"DKN136JF","Windows 7 Enterprise","6.1 (7601)",
+"DK-5CG528094V","Windows 7 Enterprise","6.1 (7601)",
+"DK-5CG528095W","Windows 7 Enterprise","6.1 (7601)","172.16.1.157"
+"DK-PB00HP0L","Windows 7 Enterprise","6.1 (7601)",
+"DK-5CG534041V","Windows 7 Enterprise","6.1 (7601)",
+"NETS-EFT","Windows 7 Enterprise","6.1 (7601)","172.16.1.113"
+"DK-PB3478H","Windows 7 Enterprise","6.1 (7601)",
+"DK-PB2E97M","Windows 7 Enterprise","6.1 (7601)",
+"DK-PF00G4MF","Windows 7 Enterprise","6.1 (7601)",
+"BOCAINT","Windows Server 2008 R2 Enterprise","6.1 (7601)","172.16.1.26"
+"DK-70K5K","Windows 7 Enterprise","6.1 (7601)",
+"DK-70F64","Windows 7 Enterprise","6.1 (7601)",
+"BOCACRL","Windows Server 2008 R2 Enterprise","6.1 (7601)","172.16.31.45"
+"SI_SQL","Windows Server 2008 R2 Enterprise","6.1 (7601)",
+"PREPROD_AX2012_","Windows Server 2008 R2 Standard","6.1 (7601)","172.16.1.12"
+"TESTD_AX2012_ST","Windows Server 2008 R2 Standard","6.1 (7601)","172.16.1.234"
+"TESTA_AX2012_ST","Windows Server 2008 R2 Standard","6.1 (7601)","172.16.1.18"
+"PROD_AX2012_STA","Windows Server 2008 R2 Standard","6.1 (7601)","172.16.1.101"
+"TESTC_AX2012_ST","Windows Server 2008 R2 Standard","6.1 (7601)","172.16.1.15"
+"TRAIN_AX2012_ST","Windows Server 2008 R2 Standard","6.1 (7601)","172.16.1.13"
+"DK-PBL1Z9Z","Windows 7 Enterprise","6.1 (7601)",
+"DK-5CG528095M","Windows 7 Enterprise","6.1 (7601)",
+"DK-PB2E98A","Windows 7 Enterprise","6.1 (7601)",
+"DK-PB01KV57","Windows 7 Enterprise","6.1 (7601)",
+"DKN0R8BX","Windows 7 Enterprise","6.1 (7601)",
+"DKN-PBE2CE1","Windows 7 Enterprise","6.1 (7601)",
+"DK-G6SY61100C3E","Windows 10 Enterprise N","10.0 (17134)","172.16.1.216"
+"OSC_SQL","Windows Server 2008 R2 Standard","6.1 (7601)",
+"DKNYCXP7","Windows 7 Enterprise","6.1 (7601)",
+"INTWDS","Windows Server 2016 Standard","10.0 (14393)","172.16.254.110"
+"DKN633V8","Windows 7 Enterprise","6.1 (7601)",
+"DKN3478T","Windows 7 Enterprise","6.1 (7601)",
+"PRI-SERVER-01","Windows Server 2016 Datacenter","10.0 (14393)","172.16.1.133"
+"PRI-SERVER-02","Windows Server 2016 Datacenter","10.0 (14393)","172.16.1.137"
+"BORIS-A-03","Windows 7 Enterprise","6.1 (7601)",
+"BORIS-C-03","Windows 7 Enterprise","6.1 (7601)",
+"BORIS-PROD-06","Windows 7 Enterprise","6.1 (7601)",
+"BORIS-PP-03","Windows 7 Enterprise","6.1 (7601)",
+"BORIS-TRN-03","Windows 7 Enterprise","6.1 (7601)",
+"API-TEST-TOOL","Windows Server 2016 Datacenter","10.0 (14393)","172.16.1.158"
+"PRI-SERVER-03","Windows Server 2016 Datacenter","10.0 (14393)","172.16.1.93"
+"PRI-SERVER-04","Windows Server 2016 Datacenter","10.0 (14393)","172.16.1.147"
+"PRI-SERVER-05","Windows Server 2016 Datacenter","10.0 (14393)","172.16.1.139"
+"PRI-SERVER-06","Windows Server 2016 Datacenter","10.0 (14393)","172.16.1.164"
+"PRI-SERVER-07","Windows Server 2016 Datacenter","10.0 (14393)",
+"PRI-SERVER-08","Windows Server 2016 Datacenter","10.0 (14393)",
+"PRI-SERVER-09","Windows Server 2016 Datacenter","10.0 (14393)",
+"PRI-SERVER-10","Windows Server 2016 Datacenter","10.0 (14393)",
+"PRI-CLU-01","Windows Server 2016 Datacenter","10.0 (14393)",
+"DKN2G7VE","Windows 7 Enterprise","6.1 (7601)",
+"BAC-SERVER-01","Windows Server 2016 Datacenter","10.0 (14393)",
+"BAC-SERVER-02","Windows Server 2016 Datacenter","10.0 (14393)",
+"BAC-SERVER-04","Windows Server 2016 Datacenter","10.0 (14393)",
+"DK-5CG5070DZL","Windows 7 Enterprise","6.1 (7601)","172.16.1.138"
+"BAC-SERVER-03","Windows Server 2016 Datacenter","10.0 (14393)",
+"DK-5CG7181L6S","Windows 7 Enterprise","6.1 (7601)",
+"PROD-CLU01","Windows Server 2016 Datacenter","10.0 (14393)",
+"PRI-CLU01","Windows Server 2016 Datacenter","10.0 (14393)","172.16.1.128"
+"DK-6KT2CT1","Windows 7 Enterprise","6.1 (7601)",
+"PRI-CLU02","Windows Server 2016 Datacenter","10.0 (14393)","172.16.1.111"
+"CAUPRI-Cf3q",,,"172.16.1.147"
+"CAUPRI-Cm2p",,,"172.16.1.139"
+"PRI-CLU01-File",,,
+"DSM-SERVER-01","Windows Server 2012 R2 Datacenter","6.3 (9600)","172.16.8.60"
+"EW-SI-TEST-01","Windows 7 Enterprise","6.1 (7601)",
+"PRI-BAC-01","Windows Server 2016 Datacenter","10.0 (14393)","172.16.1.43"
+"NAGIOS-DB","Windows Server 2016 Standard","10.0 (14393)","172.16.1.84"
+"WIN-5K6QVEAK549","Windows Server 2016 Datacenter","10.0 (14393)",
+"WIN-IV7D804AA6E","Windows Server 2016 Datacenter","10.0 (14393)",
+"PRI-FIL-01","Windows Server 2016 Datacenter","10.0 (14393)","172.16.1.11"
+"DK-SPOC-SURVAIL","Windows 7 Enterprise","6.1 (7601)",
+"DK-6Y8PKQ1","Windows 7 Enterprise","6.1 (7601)",
+"ERA",,,"172.16.254.222"
+"AZURESYNC","Windows Server 2016 Datacenter","10.0 (14393)","172.16.1.6"
+"TTSPC-PF00K49C",,,
+"DomainAdmins1",,,
+"DomainAdmins2",,,
+"DKNFWVA0","Windows 7 Enterprise","6.1 (7601)",
+"DK-PB3478T","Windows 7 Enterprise","6.1 (7601)",
+"DK-R9NTPWB","Windows 7 Enterprise","6.1 (7601)",
+"DomainAdmins3",,,
+"DKNPB3478H","Windows 7 Enterprise","6.1 (7601)",
+"DKN0K49C","Windows 10 Enterprise","10.0 (17134)",
+"DomainAdmins4",,,
+"DKN232DB","Windows 7 Enterprise","6.1 (7601)",
+"DK-6Y7TKQ1","Windows 7 Enterprise","6.1 (7601)",
+"DKNDN69Z","Windows 7 Enterprise","6.1 (7601)",
+"DKN0E0KH","Windows 7 Enterprise","6.1 (7601)",
+"ewnas01",,,
+"DKN816HG","Windows 7 Enterprise","6.1 (7601)","172.16.1.8"
+"DKN816H9","Windows 7 Enterprise","6.1 (7601)",
+"PRI-PROD-SQL","Windows Server 2016 Datacenter","10.0 (14393)","10.100.133.6"
+"PRI-PROD-APP","Windows Server 2016 Datacenter","10.0 (14393)","10.100.133.5"
+"PRI-PROD-WEB","Windows Server 2016 Datacenter","10.0 (14393)","10.100.133.7"
+"DKN54800","Windows 7 Enterprise","6.1 (7601)",
+"PRI-EMM-01","Windows Server 2016 Datacenter","10.0 (14393)","10.100.1.3"
+"DKN3763N","Windows 7 Enterprise","6.1 (7601)",
+"DKN90WBR","Windows 7 Enterprise","6.1 (7601)",
+"SPOC-SUP01","Windows 7 Enterprise","6.1 (7601)","172.16.31.1"
+"DKN17TH0","Windows 7 Enterprise","6.1 (7601)",
+"DKN10KD1","Windows 7 Enterprise","6.1 (7601)",
+"DKNE2CD8","Windows 7 Enterprise","6.1 (7601)",
+"PRI-TEST-APP","Windows Server 2016 Standard","10.0 (14393)","10.100.133.2"
+"PRI-TEST-WEB","Windows Server 2016 Standard","10.0 (14393)","10.100.133.4"
+"PRI-TEST-SQL","Windows Server 2016 Standard","10.0 (14393)","10.100.133.3"
+"DKN426LK","Windows 7 Enterprise","6.1 (7601)",
+"DESKTOP-1UVGIUH","Windows 10 Pro","10.0 (17763)",
+"DESKTOP-GLL1F7V","Windows 10 Pro","10.0 (17763)",
+"DESKTOP-QQ45D39","Windows 10 Pro","10.0 (17763)",
+"DESKTOP-QM7CPHF","Windows 10 Pro","10.0 (17763)",
+"DESKTOP-E4VHMD8","Windows 10 Pro","10.0 (17763)",
+"DESKTOP-9DL376R","Windows 10 Pro","10.0 (17763)",
+"DESKTOP-UCO2BTN","Windows 10 Pro","10.0 (17763)",
+"DESKTOP-Q9P3V5U","Windows 10 Pro","10.0 (17763)",
+"DKN426M5","Windows 7 Enterprise","6.1 (7601)",
+"DKN813VT","Windows 7 Enterprise","6.1 (7601)",
+"DKNG5D4J","Windows 7 Enterprise","6.1 (7601)",
+"DKN70Q7X","Windows 7 Enterprise","6.1 (7601)",
+"WIN10-TESTER","Windows 10 Enterprise LTSC","10.0 (17763)",
+"WALLBOARD-PC1","Windows 7 Enterprise","6.1 (7601)",
+"DKN529R3","Windows 7 Enterprise","6.1 (7601)",
+"DC04","Windows Server 2016 Standard","10.0 (14393)","172.16.254.220"
+"DATAANALYTICS01","Windows Server 2016 Datacenter","10.0 (14393)",
+"DKN5731L","Windows 7 Enterprise","6.1 (7601)",
+"P-REPLACEMENT","Windows Server 2019 Datacenter","10.0 (17763)","172.16.31.15"
+"TRX-RECOVERY","Windows Server 2019 Datacenter","10.0 (17763)","172.16.31.16"
+"TESTAOS","Windows Server 2016 Datacenter","10.0 (14393)",
diff --git a/getserverlist/ADcomputerslist2.csv b/getserverlist/ADcomputerslist2.csv
new file mode 100644
index 0000000..9626ca4
--- /dev/null
+++ b/getserverlist/ADcomputerslist2.csv
@@ -0,0 +1,20 @@
+"Name","OperatingSystem","OperatingSystemVersion","ipv4Address"
+"REJK-D-BDC501","Windows Server 2016 Datacenter","10.0 (14393)","10.100.101.2"
+"REJK-D-FAS501","Windows Server 2016 Datacenter","10.0 (14393)","10.100.103.2"
+"REJK-D-WEB501","Windows Server 2016 Datacenter","10.0 (14393)","10.100.106.2"
+"REJK-D-TCS501","Windows Server 2016 Datacenter","10.0 (14393)","10.100.107.8"
+"REJK-D-TCF501","Windows Server 2016 Datacenter","10.0 (14393)","10.100.107.7"
+"REJK-D-SQL501","Windows Server 2016 Datacenter","10.0 (14393)","10.100.109.2"
+"REJK-D-SPS501","Windows Server 2016 Datacenter","10.0 (14393)","10.100.112.2"
+"REJK-D-REP501","Windows Server 2016 Datacenter","10.0 (14393)","10.100.107.3"
+"REJK-D-RAD501","Windows Server 2016 Datacenter","10.0 (14393)","10.100.112.4"
+"REJK-D-MDL501","Windows Server 2016 Datacenter","10.0 (14393)","10.100.107.6"
+"REJK-D-INT501","Windows Server 2016 Datacenter","10.0 (14393)","10.100.105.2"
+"REJK-D-DPS501","Windows Server 2016 Datacenter","10.0 (14393)","10.100.112.3"
+"REJK-D-CAC501","Windows Server 2016 Datacenter","10.0 (14393)","10.100.107.4"
+"REJK-D-AOS501","Windows Server 2016 Datacenter","10.0 (14393)","10.100.108.2"
+"REJK-D-BCM501","Windows Server 2016 Datacenter","10.0 (14393)","10.100.107.5"
+"REJK-D-APP501","Windows Server 2016 Datacenter","10.0 (14393)","10.100.107.2"
+"REJK-D-API501","Windows Server 2016 Datacenter","10.0 (14393)","10.100.104.2"
+"REJK-D-AOS502","Windows Server 2016 Datacenter","10.0 (14393)","10.100.108.3"
+"REJK-D-VPN501","Windows Server 2016 Datacenter","10.0 (14393)","10.100.113.2"
diff --git a/getserverlist/getserverlist.ps1 b/getserverlist/getserverlist.ps1
new file mode 100644
index 0000000..3793945
--- /dev/null
+++ b/getserverlist/getserverlist.ps1
@@ -0,0 +1 @@
+Get-ADComputer -Filter * -Property * | Select-Object Name,OperatingSystem,OperatingSystemVersion,ipv4Address | Export-CSV "C:\Users\a.warme-da\Documents\ADcomputerslist.csv" -NoTypeInformation -Encoding UTF8
\ No newline at end of file
diff --git a/getserverlist/testdservers.xlsx b/getserverlist/testdservers.xlsx
new file mode 100644
index 0000000..4e62a28
Binary files /dev/null and b/getserverlist/testdservers.xlsx differ
diff --git a/grab_cm_excel_dates.ps1 b/grab_cm_excel_dates.ps1
new file mode 100644
index 0000000..5d0cc8e
--- /dev/null
+++ b/grab_cm_excel_dates.ps1
@@ -0,0 +1,69 @@
+#Declare data
+Add-Type -Assembly "Microsoft.Office.Interop.Outlook"
+$Data = Import-Excel -WorkSheetName "New_Outline" -NoHeader -DataOnly "\\thalesgroup.local\shares\Public\_TogD\03_Release_Management\Planning with I&O\2023\Weekly planning W08-W10-2023_MoM.xlsx"
+#$Data = Import-Excel -WorkSheetName "New_Outline" -NoHeader -DataOnly "C:\Users\a.warme\Downloads\AlexScriptData2.xlsx"
+$CsvData= Import-CSV -Path "C:\Users\a.warme\Documents\csvcheckfile\Outfile.csv"
+
+#Declare Outlook information
+$Ol = New-Object -ComObject Outlook.Application
+
+#emails
+ $AllanEmail="allan.schwedler@urbanandmainlines.com"
+ $MartinEmail="martin.nielsen@urbanandmainlines.com"
+$AlexanderEmail="alexander.warme@urbanandmainlines.com"
+
+#P2 - Tasks
+#P3 - Owner
+#P4 - Platform
+#P5 - DateTime
+#P9 - Task Category
+
+#foreach loop to create an appointment for each row in excel
+foreach ($Row in $Data) {
+ if ($Row.P1 -eq "New"){continue}
+
+ if ($CsvData | Where-Object -Property Subject -eq $Row.P2 -WarningAction SilentlyContinue){continue}
+
+
+ # Import the Outlook interop assembly
+ $Appointment = $Ol.CreateItem(1)
+ $SubjectTitle = $Row.P2 + " " + $Row.P4 + " " + $Row.P9
+ $SubjectTitle
+ $Appointment.Subject = "$SubjectTitle"
+ $Appointment.Body = $Row.P2 + " " + $Row.P3 + " " + $Row.P4 + " " + $Row.P9
+ $Appointment.Location = $Row.P4
+ $Appointment.ReminderSet = $true
+ $Appointment.Importance = 1
+ $Appointment.MeetingStatus = [Microsoft.Office.Interop.Outlook.OlMeetingStatus]::olMeeting
+
+ #assign email to owner on appointment
+
+ switch($Row.P3) {
+ Allan {$Appointment.Recipients.Add($AllanEmail)}
+
+ Martin {$Appointment.Recipients.Add($MartinEmail)}
+
+ Alexander {$Appointment.Recipients.Add($AlexanderEmail)}
+
+ default {$Appointment.Recipients.Add($AlexanderEmail)}
+ }
+
+ $Appointment.ReminderMinutesBeforeStart = 15
+ $Appointment.Start = $Row.P5.AddHours(8)
+ $Appointment.Duration = 480
+ $Appointment.Send()
+
+ #consistency
+
+ $ArrayQ = @([PSCustomObject]@{Subject = $Row.P2 ; Id = 1 })
+ #Export - Append the data to the existing file ("ExportFile.csv") or create a new file if it does not exist
+ $ArrayQ | Export-CSV "C:\Users\a.warme\Documents\csvcheckfile\Outfile.csv" -Append -NoTypeInformation
+
+}
+
+#to destingush weeks and tasks
+#regex this : Weekly planning ([A-Za-z0-9]+(-[A-Za-z0-9]+)+)_
+# with file name to link previous tasks and weeks.
+
+
+
\ No newline at end of file
diff --git a/import_export_starew.ps1 b/import_export_starew.ps1
new file mode 100644
index 0000000..746a762
--- /dev/null
+++ b/import_export_starew.ps1
@@ -0,0 +1,17 @@
+
+#not Tested
+
+$certificate = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2("C:\Users\a.warme\Downloads\star.east-west.dk-2024-02-05\star.east-west.dk-2024-02-05.pfx","thales")
+$store = New-Object System.Security.Cryptography.X509Certificates.X509Store("My", "LocalMachine")
+$store.Open("ReadWrite")
+$store.Add($certificate)
+$store.Close()
+
+
+$CertStore = New-Object System.Security.Cryptography.X509Certificates.X509Store("My", "LocalMachine")
+$CertStore.Open("ReadOnly")
+
+$Certificate = $CertStore.Certificates | Where-Object {$_.Subject -eq "CN=star.east-west.dk"}
+$Base64 = [System.Convert]::ToBase64String($Certificate.Export([System.Security.Cryptography.X509Certificates.X509ContentType]::Cert))
+
+Write-Output $Base64
diff --git a/logbooktransfer/LogBookTransfer.ps1 b/logbooktransfer/LogBookTransfer.ps1
new file mode 100644
index 0000000..c7352b3
--- /dev/null
+++ b/logbooktransfer/LogBookTransfer.ps1
@@ -0,0 +1,84 @@
+function LogBooks {
+ $source = 'D:\IFSBOData\EquipmentLog'
+ $destination = "\\$server\EW\LogBooks"
+
+ if(-not (Test-Path $destination)) { throw "Invalid path $destination" }
+
+ $files = Get-ChildItem -Recurse -File -Path $source
+
+ foreach($file in $files) {
+
+ $split = $file.Name -split '-'
+ $eqpNumber = $split[0].Substring(0, 2)
+ $eqpType = switch($eqpNumber) {
+ '04' { 'RVM' }
+ '09' { 'EPID' }
+ '11' { 'DC' }
+ '13' { 'NTX' }
+ '14' { 'VCF' }
+ default { 'UNKNOWN' }
+ }
+
+ $year = $split[1]
+ $month = $split[2]
+ $day = $split[3].Substring(0,2)
+
+ $moveTo = "$destination\$eqpType\$year\$month\$day"
+
+ if(-not (Test-Path $moveTo)) { mkdir $moveTo }
+
+ "LogBook: Move $($file.Name) to $moveTo" | Out-File -Append -FilePath $logfile
+
+ Move-Item -Path $file.FullName -Destination $moveTo -Force
+ }
+
+}
+
+function EftLogs {
+ $source = 'D:\IFSBOData\EFTLog'
+ $destination = "\\$server\EW\EFTLogs"
+
+ $files = Get-ChildItem -Recurse -File -Path $source
+
+ foreach($file in $files) {
+
+ $split = $file.Name -split '-'
+ $year = $split[2].Substring(0, 4)
+ $month = $split[2].Substring(4, 2)
+ $day = $split[2].Substring(6, 2)
+
+ $moveTo = "$destination\$year\$month\$day"
+
+ if(-not (Test-Path $moveTo)) { mkdir $moveTo }
+
+ "EFTLog: Move $($file.Name) to $moveTo" | Out-File -Append -FilePath $logfile
+
+ Move-Item -Path $file.FullName -Destination $moveTo -Force
+ }
+}
+
+try {
+ $logfile = "log.{0}.txt" -f (Get-Date -Format 'yyyy-MM-dd')
+
+ $server = switch -Regex ($env:COMPUTERNAME) {
+ 'REJ-P' { 'REJ-P-INT003' }
+ 'REJ-Q' { 'REJ-Q-INT103' }
+ 'REJ-A' { 'REJ-A-INT201' }
+ 'REJ-C' { 'REJ-C-INT301' }
+ 'REJ-E' { 'REJ-E-INT401' }
+ 'REJK-D' { 'REJK-D-INT501' }
+ default { throw "Unsupported platform" }
+ }
+
+ $time = Get-Date -Format 'yyyy-MM-dd HH:mm:ss'
+ "[$time] Start" | Out-File -Append -FilePath $logfile
+
+ LogBooks
+ EftLogs
+
+ $time = Get-Date -Format 'yyyy-MM-dd HH:mm:ss'
+ "[$time] Done" | Out-File -Append -FilePath $logfile
+}
+catch {
+ "Error: $_" | Out-File -Append -FilePath $logfile
+}
diff --git a/loginazure.ps1 b/loginazure.ps1
new file mode 100644
index 0000000..f4f2548
--- /dev/null
+++ b/loginazure.ps1
@@ -0,0 +1,15 @@
+#run as admin
+
+#define username - @thalesgroup.com - T number
+$pscredential = Get-Credential
+
+#install azure powershell module
+Install-Module -Name Az -AllowClobber -Scope AllUsers
+
+#allow scripting on pc
+set-executionpolicy remotesigned
+
+#connect to azure - define username - @thalesgroup.com - T number - possible to used defined credential with -credential parameter
+Connect-AzAccount
+
+
diff --git a/loglinecountscript-final.ps1 b/loglinecountscript-final.ps1
new file mode 100644
index 0000000..35f7a21
--- /dev/null
+++ b/loglinecountscript-final.ps1
@@ -0,0 +1,187 @@
+# Prompt the user for a choice between prod and preprod
+$environment = Read-Host "Enter environment (prod or preprod, testa)"
+
+# Set the paths to search for log files based on the user's choice
+if ($environment -eq "prod") {
+ $Paths = "\\REJ-P-WEB001.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-WEB002.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-WEB003.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-WEB004.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-WEB005.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-WEB006.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-WEB007.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-WEB008.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-APP001.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-APP002.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-APP003.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-APP004.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-API001.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-API002.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-TCS001.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-TCS002.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-TCS003.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-TCS004.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-TCS005.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-TCS006.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-TCS007.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-TCS008.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-TCS009.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-TCS010.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-TCS011.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-TCS012.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-TCS013.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-TCS014.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-TCS015.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-TCS016.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-TCF001.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-TCF002.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-MDL001.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-MDL002.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-SPS001.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-SPS002.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-SPS003.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-SPS004.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-SPS005.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-SPS006.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-SPS007.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-SPS008.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-SPS009.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-SPS010.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-SPS011.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-DPS001.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-DPS002.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-DPS003.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-DPS004.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-DPS005.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-DPS006.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-FAS001.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-FAS002.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-FAS003.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-BCM001.REJprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-P-BCM002.REJprod.local\d-drive\IFSBOSystem\Log"
+} elseif ($environment -eq "preprod") {
+ $Paths = "\\REJ-Q-WEB101.REJpreprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-Q-WEB102.REJpreprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-Q-WEB103.REJpreprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-Q-WEB104.REJpreprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-Q-WEB105.REJpreprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-Q-WEB106.REJpreprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-Q-APP101.REJpreprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-Q-APP102.REJpreprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-Q-API101.REJpreprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-Q-API102.REJpreprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-Q-TCS101.REJpreprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-Q-TCS102.REJpreprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-Q-TCF101.REJpreprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-Q-TCF102.REJpreprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-Q-MDL101.REJpreprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-Q-MDL102.REJpreprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-Q-SPS101.REJpreprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-Q-SPS102.REJpreprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-Q-DPS101.REJpreprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-Q-DPS102.REJpreprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-Q-FAS101.REJpreprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-Q-FAS102.REJpreprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-Q-BCM101.REJpreprod.local\d-drive\IFSBOSystem\Log",
+ "\\REJ-Q-BCM102.REJpreprod.local\d-drive\IFSBOSystem\Log"
+}elseif ($environment -eq "testa") {
+ $Paths = "\\rej-a-api201\D-Drive\IFSBOSystem\Log",
+ "\\rej-a-app201\D-Drive\IFSBOSystem\Log",
+ "\\rej-a-bcm201\D-Drive\IFSBOSystem\Log",
+ "\\rej-a-dps201\D-Drive\IFSBOSystem\Log",
+ "\\rej-a-fas201\D-Drive\IFSBOSystem\Log",
+ "\\rej-a-mdl201\D-Drive\IFSBOSystem\Log",
+ "\\rej-a-sps201\D-Drive\IFSBOSystem\Log",
+ "\\rej-a-tcf201\D-Drive\IFSBOSystem\Log",
+ "\\rej-a-tcs201\D-Drive\IFSBOSystem\Log",
+ "\\rej-a-web201\D-Drive\IFSBOSystem\Log"
+
+} else {
+ Write-Host "Invalid environment entered. Please enter correct envioment."
+ exit
+}
+
+
+
+# Define the script block to run in each thread
+$ScriptBlock = {
+ param ($Path)
+
+ # Find all log files in the directory
+$logFiles = Get-ChildItem -Path $Path -Filter "*.log" -File -Recurse | Where-Object { $_.PSIsContainer -or $_.Name -notmatch '^\d{4}-\d{2}-\d{2}' }
+
+
+ if ($logFiles.Count -eq 0) {
+ Write-Warning "No log files found in $($Path)"
+ return
+ }
+
+ # Get the current date and format it as "yyyy-MM-dd"
+ $currentDate = Get-Date -Format "yyyy-MM-dd"
+
+ # Iterate through each log file and count the number of lines written to the file during the current day
+ $logFileCounts = foreach ($file in $logFiles) {
+ if ($file.LastWriteTime -gt (Get-Date).AddDays(-1)) {
+ # Get the contents of the file and count the number of lines written to the file during the current day
+ $count = (Get-Content $file.FullName | Where-Object { $_ -match $currentDate }).Count
+
+ # Output the file name and the count of lines written to the file during the current day
+ [PSCustomObject]@{
+ FileName = $file.Name
+ FilePath = Split-Path $file.FullName -Parent
+ LinesWrittenToday = $count
+ }
+ }
+ }
+
+ # Return the log file counts for this path
+ return $logFileCounts
+}
+
+# Define an array to hold the job results
+$jobResults = @()
+
+# Start a job for each path
+foreach ($Path in $Paths) {
+ $job = Start-Job -ScriptBlock $ScriptBlock -ArgumentList $Path
+ $jobResults += $job
+}
+
+# Wait for all jobs to complete
+while (@($jobResults | Where-Object { $_.State -eq 'Running' }).Count -gt 0) {
+ Start-Sleep -Milliseconds 110
+}
+
+# Get the results of each job and combine them into a single array
+$logFileCounts = foreach ($job in $jobResults) {
+ $job | Receive-Job
+}
+
+# Group the log file counts by file name and path and sum the line counts
+$groupedLogFileCounts = $logFileCounts | ForEach-Object {
+ [PSCustomObject]@{
+ FileName = $_.FileName
+ FilePath = $_.FilePath
+ LinesWrittenToday = $_.LinesWrittenToday
+ }
+} | Group-Object -Property @{Expression = {$_.FileName + "|" + $_.FilePath}} | ForEach-Object {
+ $fileName, $filePath = $_.Name.Split("|")
+ $serverName = $filePath -replace ".*\\\\([^\\]+).*", '$1'
+ [PSCustomObject]@{
+ FileName = $fileName
+ ServerName = $serverName
+ TotalLinesWrittenToday = ($_.Group | Measure-Object -Property LinesWrittenToday -Sum).Sum
+ }
+} | Where-Object { $_.TotalLinesWrittenToday -ne 0 }
+
+# Output the grouped log file counts
+$groupedLogFileCounts | Sort-Object -Property ServerName | Format-Table -GroupBy ServerName -Property FileName, TotalLinesWrittenToday -AutoSize
+
+# Calculate and output the total lines written today for all files
+$totalLinesWrittenToday = $groupedLogFileCounts | Measure-Object -Property TotalLinesWrittenToday -Sum
+"Total lines written today: $($totalLinesWrittenToday.Sum)"
+
+
+$groupedcount = $groupedLogFileCounts | Group-Object -Property { $_.ServerName.Replace(".REJpreprod.local", "") } | Select-Object Name, @{Name="Types of Log Files"; Expression={$_.Count}}
+
+$groupedcount
\ No newline at end of file
diff --git a/mailgrab.ps1 b/mailgrab.ps1
new file mode 100644
index 0000000..3f986e6
--- /dev/null
+++ b/mailgrab.ps1
@@ -0,0 +1,37 @@
+# link to the folder
+$olFolderPath = "\\alexander.warme@urbanandmainlines.com\Inbox\Checkudvej"
+# set the desired file name
+$attachmentFileName = 'checkudvej'
+# set the location to temporary file
+$filePath = "C:\Users\a.warme\Downloads\mailfile"
+# use MAPI name space
+$outlook = new-object -com outlook.application;
+$mapi = $outlook.GetNameSpace("MAPI");
+# set the Inbox folder id
+$olDefaultFolderInbox = 6
+$inbox = $mapi.GetDefaultFolder($olDefaultFolderInbox)
+# access the target subfolder
+$olTargetFolder = $inbox.Folders | Where-Object { $_.FolderPath -eq $olFolderPath }
+# load emails
+$emails = $olTargetFolder.Items
+# process the emails
+
+foreach ($email in $emails) {
+
+ # format the timestamp
+ $timestamp = $email.ReceivedTime.ToString("yyyyMMddhhmmss")
+ # filter out the attachments
+ foreach ($attachment in $email.Attachments) {
+ write-host "ost1"
+ Write-Host $attachment.FileName
+ write-Host "ost2"
+ if ($attachment.FileName -like "*.xlsx"){
+ write-host "ost4"
+ # insert the timestamp into the file name
+ $fileName = $attachment.FileName
+ #$fileName = $fileName.Insert($fileName.IndexOf('.'),$timestamp)
+ # save the attachment
+ $attachment.saveasfile((Join-Path $filePath $fileName))
+ }
+}
+}
\ No newline at end of file
diff --git a/run_svn_update_pri-fil-01.ps1 b/run_svn_update_pri-fil-01.ps1
new file mode 100644
index 0000000..b29d275
--- /dev/null
+++ b/run_svn_update_pri-fil-01.ps1
@@ -0,0 +1,2 @@
+$c = get-credential
+Invoke-Command -Credential $c -ComputerName pri-fil-01.thalesgroup.local -ScriptBlock { schtasks /run /tn "svn" }
\ No newline at end of file
diff --git a/searchscript.ps1 b/searchscript.ps1
new file mode 100644
index 0000000..83cb150
--- /dev/null
+++ b/searchscript.ps1
@@ -0,0 +1,42 @@
+$prod='rej-p'
+$servers = @( "$prod-app001", "$prod-bcm001", "$prod-bcm002", "$prod-app002", "$prod-app003", "$prod-app004", "$prod-web001", "$prod-web002", "$prod-web003", "$prod-web004", "$prod-web005", "$prod-web006", "$prod-web007", "$prod-web008")
+$pattern = Read-Host -Prompt "Enter the pattern to search for"
+$startDate = Read-Host -Prompt "Enter the start date (yyyy-MM-dd) [default: $(Get-Date -Format 'yyyy-MM-dd')]:"
+if (!$startDate) { $startDate = (Get-Date -Format "yyyy-MM-dd") }
+$endDate = Read-Host -Prompt "Enter the end date (yyyy-MM-dd) [default: $(Get-Date -Format 'yyyy-MM-dd')]:"
+if (!$endDate) { $endDate = (Get-Date -Format "yyyy-MM-dd") }
+$startTime = Read-Host -Prompt "Enter the start time (HH:mm:ss) [default: 08:00:00]:"
+if (!$startTime) { $startTime = "08:00:00" }
+$endTime = Read-Host -Prompt "Enter the end time (HH:mm:ss) [default: 16:00:00]:"
+if (!$endTime) { $endTime = "16:00:00" }
+$results = @()
+foreach ($server in $servers) {
+ $path = "\\$server.rejprod.local\d-drive\IFSBOSystem\log\"
+ Get-ChildItem -Path $path -Filter *.log | ForEach-Object {
+ $logDate = $_.LastWriteTime.ToString("yyyy-MM-dd")
+ $logTime = $_.LastWriteTime.ToString("HH:mm:ss")
+ if (($logDate -ge $startDate) -and ($logDate -le $endDate) -and
+ ($logTime -ge $startTime) -and ($logTime -le $endTime)) {
+ $matches = Select-String -Path $_.FullName -Pattern $pattern
+ foreach ($match in $matches) {
+ $results += [PSCustomObject]@{
+ FileName = $_.Name
+ Line = $match.Line
+ Server = $server
+ }
+ }
+ }
+ }
+}
+$results | Select-Object FileName, Line, Server | Export-Csv -Path "$PWD\result.csv" -NoTypeInformation
+
+If ($results -ne $null)
+{
+start notepad++ .\result.csv
+}
+Else
+{
+Write-Host "!!NOTHING FOUND!!";
+}
+
+#Write-Host $results
\ No newline at end of file
diff --git a/sharepoint_Api.ps1 b/sharepoint_Api.ps1
new file mode 100644
index 0000000..234a282
--- /dev/null
+++ b/sharepoint_Api.ps1
@@ -0,0 +1,55 @@
+#install module if neccesary
+#Install-Module -Name PnP.PowerShell -RequiredVersion 1.12.0
+
+# Variables
+$NewRfcClientId = "ac13078d-5621-4e28-81db-f5501d222e5d"
+$NewRfcClientSecret = "BQOHS6LoESeBku+HIszR7cYvDMJp7EhGLhgkp369NAE="
+$NewRfcUrl = "https://thalesdk.sharepoint.com/sites/SMO/TM/"
+$ListTitle = "RFC"
+
+$OldRfcClientId = "c3c3817d-8c3d-49fa-91cb-bdd498e2cc52"
+$OldRfcClientSecret = "csXug7EEB3AQ71S+srSCZHOzVPoUxbazkDLvw/Mb8Bw="
+$OldRfcUrl = "https://thalesdk.sharepoint.com/DriftsPortal/"
+$ListTitle = "RFC"
+
+
+#new RFC
+Connect-PnPOnline -Url $OldRfcUrl -ClientId $OldRfcClientId -ClientSecret $OldRfcClientSecret
+$items1 = Get-PnPListItem -List 'RFC' -Fields 'ChangeTitle','Status','Environmentimpacted','TypeofChange'
+$result1 = foreach($item1 in $items1) {
+ $obj1 = [pscustomobject]@{}
+
+ foreach($key1 in $item1.FieldValues.Keys) {
+ $obj1 = $obj1 | Add-Member -MemberType NoteProperty -Name $key1 -Value $item1.FieldValues[$key1] -PassThru
+ }
+
+ Write-Output $obj1
+}
+
+
+
+#Old RFC
+Connect-PnPOnline -Url $OldRfcUrl -ClientId $OldRfcClientId -ClientSecret $OldRfcClientSecret
+$items = Get-PnPListItem -List 'RFC' -Fields 'Title','Status','Milj_x00f8_','System','Beskrivelse','Kontakt_x0020_person_x003f_','Tidspunkt_x0020_for_x0020_udf_x0','Attachments','IBM_x0020_Change_x0020_nummer'
+$result = foreach($item in $items) {
+ $obj = [pscustomobject]@{}
+
+
+ foreach($key in $item.FieldValues.Keys) {
+
+ if ($key -notin @("ScopeId","FileRef","MetaInfo","_ModerationStatus","_Level","ID","UniqueId","owshiddenversion","FSObjType")) {
+ $obj = $obj | Add-Member -MemberType NoteProperty -Name $key -Value $item.FieldValues[$key] -PassThru
+ }
+
+ }
+
+ $obj.Kontakt_x0020_person_x003f_ = $obj.Kontakt_x0020_person_x003f_.LookupValue
+ Write-Output $obj
+}
+
+
+#grab fields
+#$fields = Get-PnPField -List "RFC"
+#Write-Output $fields.InternalName
+
+
diff --git a/space_typo_checker.ps1 b/space_typo_checker.ps1
new file mode 100644
index 0000000..e96504a
--- /dev/null
+++ b/space_typo_checker.ps1
@@ -0,0 +1,18 @@
+# Set the path to the file you want to check
+$file = "C:\Users\a.warme\Documents\nps_cleanup\apworkfile2.txt"
+
+# Define a regular expression to search for common mistakes
+$regex = '\s+$|(?