Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorContinuous Integration <ci@zabbix.com>2021-04-19 14:42:32 +0300
committerContinuous Integration <ci@zabbix.com>2021-04-19 14:42:32 +0300
commite90d04aa0ff2cedb5d197972ab42d372df31674e (patch)
tree46617bf49a44b3b45887eeb510a7a113647b72ff
parented0812483e72215795cbe5cb9ad75ccbc3faac62 (diff)
.......... [ZBXNEXT-826] automatic deployment of official Zabbix templates and media types5.0.11rc1
-rw-r--r--create/src/data.tmpl4
-rw-r--r--create/src/templates.tmpl15741
2 files changed, 7780 insertions, 7965 deletions
diff --git a/create/src/data.tmpl b/create/src/data.tmpl
index a2c970c3b95..a533ac1077c 100644
--- a/create/src/data.tmpl
+++ b/create/src/data.tmpl
@@ -58,7 +58,7 @@ ROW |5 |4 |Mattermost | | |
ROW |6 |4 |Opsgenie | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Media = {&eol; params: {},&eol; name: '',&eol; labels: [],&eol; HTTPProxy: '',&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Media.params = params;&eol; Media.params.api += Media.params.api.endsWith('/') ? '' : '/';&eol; Media.params.web += Media.params.web.endsWith('/') ? '' : '/';&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; if (typeof HTTPProxy !== 'undefined' && HTTPProxy.trim() !== '') {&eol; Media.HTTPProxy = HTTPProxy;&eol; }&eol; },&eol;&eol; setTags: function(event_tags_json) {&eol; if (typeof event_tags_json !== 'undefined' && event_tags_json !== ''&eol; && event_tags_json !== '{EVENT.TAGSJSON}') {&eol;&eol; try {&eol; var tags = JSON.parse(event_tags_json),&eol; label;&eol;&eol; tags.forEach(function (tag) {&eol; if (typeof tag.tag === 'string') {&eol; label = (tag.tag + (typeof tag.value !== 'undefined'&eol; && tag.value !== '' ? (':' + tag.value) : '')).replace(/\s/g, '_');&eol; Media.labels.push(label);&eol; }&eol; });&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ ' + Media.name + ' Webhook ] Failed to parse "event_tags_json" param');&eol; }&eol; }&eol; },&eol;&eol; request: function (method, query, data, allow_404) {&eol; if (typeof(allow_404) === 'undefined') {&eol; allow_404 = false;&eol; }&eol;&eol; ['api', 'token'].forEach(function (field) {&eol; if (typeof Media.params !== 'object' &pipe;&pipe; typeof Media.params[field] === 'undefined'&eol; &pipe;&pipe; Media.params[field] === '') {&eol; throw 'Required ' + Media.name + ' param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Media.params.api + query,&eol; request = new CurlHttpRequest();&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('Authorization: ' + Media.params.token);&eol; request.SetProxy(Media.HTTPProxy);&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ ' + Media.name + ' Webhook ] Sending request: ' +&eol; url + ((typeof data === 'string') ? ('\n' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ ' + Media.name + ' Webhook ] Received response with status code ' +&eol; request.Status() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ ' + Media.name + ' Webhook ] Failed to parse response.');&eol; response = null;&eol; }&eol; }&eol;&eol; if ((request.Status() < 200 &pipe;&pipe; request.Status() >= 300)&eol; && (!allow_404 &pipe;&pipe; request.Status() !== 404)) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null) {&eol; if (typeof response.errors === 'object' && Object.keys(response.errors).length > 0) {&eol; message += ': ' + JSON.stringify(response.errors);&eol; }&eol; else if (typeof response.errorMessages === 'object' && Object.keys(response.errorMessages).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessages);&eol; }&eol; else if (typeof response.message === 'string') {&eol; message += ': ' + response.message;&eol; }&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; getAlertId: function (requestId) {&eol; do {&eol; resp = Media.request('get', 'requests/' + requestId, undefined, true);&eol; }&eol; while (typeof resp.response !== 'object' &pipe;&pipe; typeof resp.response.data === 'undefined'&eol; &pipe;&pipe; resp.response.data.success === false);&eol;&eol; if (typeof resp.response !== 'object' &pipe;&pipe; typeof resp.response.data === 'undefined') {&eol; throw 'Cannot get ' + Media.name + ' issue ID. Check debug log for more information.';&eol; }&eol;&eol; return resp;&eol; }&eol;};&eol;&eol;try {&eol; var result = {tags: {}},&eol; params = JSON.parse(value),&eol; media = {},&eol; fields = {},&eol; resp = {},&eol; responders = [],&eol; tags = [],&eol; required_params = [&eol; 'alert_subject',&eol; 'alert_message',&eol; 'event_id',&eol; 'event_source',&eol; 'event_value',&eol; 'event_update_status',&eol; 'opsgenie_api',&eol; 'opsgenie_web',&eol; 'opsgenie_token'&eol; ],&eol; severities = [&eol; 'not_classified',&eol; 'information',&eol; 'warning',&eol; 'average',&eol; 'high',&eol; 'disaster',&eol; 'resolved',&eol; 'default'&eol; ],&eol; priority;&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (required_params.indexOf(key) !== -1 && params[key].trim() === '') {&eol; throw 'Parameter "' + key + '" cannot be empty.';&eol; }&eol; if (key.startsWith('opsgenie_')) {&eol; media[key.substring(9)] = params[key];&eol; }&eol; });&eol;&eol; // Possible values of event_source:&eol; // 0 - Trigger, 1 - Discovery, 2 - Autoregistration, 3 - Internal.&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; // Check event_value for trigger-based and internal events.&eol; // Possible values: 1 for problem, 0 for recovering&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check event_update_status only for trigger-based events.&eol; // Possible values: 0 - Webhook was called because of problem/recovery event, 1 - Update operation.&eol; if (params.event_source === '0' && params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check event_id for a numeric value.&eol; if (isNaN(parseInt(params.event_id)) &pipe;&pipe; params.event_id < 1) {&eol; throw 'Incorrect "event_id" parameter given: ' + params.event_id + '\nMust be a positive number.';&eol; }&eol;&eol; if ((params.event_source === '1' &pipe;&pipe; params.event_source === '2') && params.event_value === '0') {&eol; throw 'Recovery operations are supported only for Trigger and Internal actions.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; priority = params['severity_' + severities[params.event_nseverity]];&eol; params.zbxurl = params.zbxurl + (params.zbxurl.endsWith('/') ? '' : '/');&eol;&eol; Media.name = 'Opsgenie';&eol; Media.setParams(media);&eol; Media.params.token = 'GenieKey ' + Media.params.token;&eol; Media.setProxy(params.HTTPProxy);&eol; Media.setTags(params.event_tags_json); // Set Media.labels&eol;&eol; // Create an issue.&eol; // Numeric value of the event that triggered an action (1 for problem, 0 for recovering).&eol; // Numeric value of of the problem update status. Possible values:&eol; // 0 - Webhook was called because of problem/recovery event, 1 - Update operation.&eol; if ((params.event_source == 0 && params.event_value == 1 && params.event_update_status == 0)&eol; &pipe;&pipe; (params.event_source == 3 && params.event_value == 1)&eol; &pipe;&pipe; params.event_source == 1 &pipe;&pipe; params.event_source == 2) {&eol; fields.message = params.alert_subject;&eol; fields.alias = params.event_id;&eol; fields.description = params.alert_message;&eol; fields.priority = priority;&eol; fields.source = 'Zabbix';&eol;&eol; if (params.event_source === '0') {&eol; fields.details = {&eol; 'Zabbix server': params.zbxurl,&eol; Problem: params.zbxurl + 'tr_events.php?triggerid=' + params.trigger_id + '&eventid=' + params.event_id&eol; };&eol; }&eol; else {&eol; fields.details = {'Zabbix server': params.zbxurl};&eol; }&eol;&eol; if (typeof params.opsgenie_teams === 'string') {&eol; responders = params.opsgenie_teams.split(',');&eol; fields.responders = responders.map(function(team) {&eol; return {type: 'team', name: team.trim()};&eol; });&eol; }&eol;&eol; fields.tags = Media.labels;&eol; if (typeof params.opsgenie_tags === 'string') {&eol; tags = params.opsgenie_tags.split(',');&eol; tags.forEach(function(item) {&eol; fields.tags.push(item.trim());&eol; });&eol; }&eol;&eol; resp = Media.request('post', '', fields);&eol; if (typeof resp.response !== 'object' &pipe;&pipe; typeof resp.response.result === 'undefined') {&eol; throw 'Cannot create ' + Media.name + ' issue. Check debug log for more information.';&eol; }&eol;&eol; if (resp.status === 202) {&eol; resp = Media.getAlertId(resp.response.requestId);&eol; if (params.event_source == 0 && params.event_value == 1 && params.event_update_status == 0) {&eol; result.tags.__zbx_ops_issuekey = resp.response.data.alertId;&eol; result.tags.__zbx_ops_issuelink = Media.params.web + 'alert/detail/' + resp.response.data.alertId;&eol; }&eol; }&eol; else {&eol; throw Media.name + ' response code is unexpected. Check debug log for more information.';&eol; }&eol; }&eol; // Update a created issue.&eol; else {&eol; fields.user = (params.event_value != 0) ? params.zbxuser : '';&eol; fields.note = params.alert_message;&eol;&eol; resp = Media.request('post', params.event_id + '/notes?identifierType=alias', fields);&eol; if (typeof resp.response !== 'object' &pipe;&pipe; typeof resp.response.result === 'undefined') {&eol; throw 'Cannot update ' + Media.name + ' issue. Check debug log for more information.';&eol; }&eol;&eol; if (resp.status === 202) {&eol; resp = Media.getAlertId(resp.response.requestId);&eol; }&eol; else {&eol; throw Media.name + ' response code is unexpected. Check debug log for more information.';&eol; }&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ ' + Media.name + ' Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_ops_issuelink} |Opsgenie: {EVENT.TAGS.__zbx_ops_issuekey} |Please refer to https://docs.opsgenie.com/docs/alert-api and https://www.zabbix.com/documentation/5.0/manual/config/notifications/media/webhook#example_scripts.&eol; &eol;Set global macro {$ZABBIX.URL} with your Zabbix server URL.&eol;Add dedicated user with media type "Opsgenie".&eol;Change the values of the variables opsgenie_api (https://api.opsgenie.com/v2/alerts or https://api.eu.opsgenie.com/v2/alerts),&eol;opsgenie_web (for example, https://myzabbix.app.opsgenie.com), opsgenie_token. |
ROW |7 |4 |PagerDuty | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |try {&eol;&eol; var params = JSON.parse(value),&eol; req = new CurlHttpRequest(),&eol; fields = {},&eol; resp = '';&eol;&eol; // Correspondence between the PagerDuty and Zabbix severity level&eol; var severityMapping = [&eol; 'info', // Not classified&eol; 'info', // Information&eol; 'warning', // Warning&eol; 'warning', // Average&eol; 'error', // High&eol; 'critical' // Disaster&eol; ];&eol;&eol; if (!severityMapping[params.severity]) {&eol; params.severity = '0';&eol; }&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; req.SetProxy(params.HTTPProxy);&eol; }&eol;&eol; if (isNaN(parseInt(params.eventid)) &pipe;&pipe; params.eventid < 1) {&eol; throw 'incorrect value for variable "eventid". The value must be a positive number.';&eol; }&eol; if (params.eventname.length < 1) {&eol; throw 'incorrect value for variable "eventname". The value must be a non-empty string.';&eol; }&eol; if (isNaN(parseInt(params.severity)) &pipe;&pipe; (params.severity < 0 && params.severity > 5)) {&eol; throw 'incorrect value for variable "severity". The value must be a number 0..5.';&eol; }&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.eventvalue !== '0' && params.eventvalue !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "eventvalue" parameter given: "' + params.eventvalue + '".\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source === '0') {&eol; if (params.hostname.length < 1) {&eol; throw 'incorrect value for variable "hostname". The value must be a non-empty string.';&eol; }&eol; if (isNaN(parseInt(params.triggerid)) &pipe;&pipe; params.triggerid < 1) {&eol; throw 'incorrect value for variable "triggerid". The value must be a positive number.';&eol; }&eol; if (params.eventack != 'Yes' && params.eventack != 'No') {&eol; throw 'incorrect value for variable "eventack". The value must be Yes or No.';&eol; }&eol; if (isNaN(parseInt(params.eventupdate)) &pipe;&pipe; (params.eventupdate < 0 &pipe;&pipe; params.eventupdate > 1)) {&eol; throw 'incorrect value for variable "eventupdate". The value must be 0 or 1.';&eol; }&eol; }&eol;&eol;&eol;&eol; req.AddHeader('Content-Type: application/json');&eol;&eol; fields.routing_key = params.token;&eol; fields.dedup_key = params.eventid;&eol;&eol; if (((params.eventvalue == 1) && (params.eventupdate == 0)) &pipe;&pipe; params.event_source !== '0') {&eol; fields.event_action = 'trigger';&eol; fields.payload = {&eol; summary: params.eventname,&eol; source: (params.event_source === '1') ? 'Discovery' : params.hostname + ' : ' + params.hostip,&eol; severity: severityMapping[params.severity],&eol; };&eol; &eol; if (params.event_source === '0') {&eol; fields.payload.custom_details = {&eol; 'Event date': params.eventdate,&eol; 'Event time': params.eventtime,&eol; 'Trigger description': params.triggerdesc,&eol; 'Trigger opdata': params.triggeropdata,&eol; 'Event tags': params.eventtags,&eol; 'Event host': params.hostname,&eol; 'Event host ip': params.hostip&eol; };&eol; fields.links = [{&eol; href: params.url + '/tr_events.php?triggerid=' + params.triggerid + '&eventid=' + params.eventid,&eol; text: 'Event link'&eol; }];&eol; }&eol; else {&eol; fields.payload.custom_details = {&eol; 'Alert message': params.alert_message&eol; };&eol; }&eol;&eol; fields.client = 'Zabbix';&eol; fields.client_url = params.url;&eol; }&eol; else if ((params.eventvalue == 1) && (params.eventupdate == 1) && (params.eventack == 'Yes'))&eol; fields.event_action = 'acknowledge';&eol; else if (params.eventvalue == 0)&eol; fields.event_action = 'resolve';&eol; else&eol; throw 'incorrect values. Update message without ack will not be sent.';&eol;&eol; Zabbix.Log(4, '[PagerDuty Webhook] Sending request:' + JSON.stringify(fields));&eol; resp = req.Post('https://events.pagerduty.com/v2/enqueue',&eol; JSON.stringify(fields)&eol; );&eol; Zabbix.Log(4, '[PagerDuty Webhook] Receiving response:' + resp);&eol;&eol; try {&eol; resp = JSON.parse(resp);&eol; }&eol; catch (error) {&eol; throw 'incorrect response. PagerDuty returned a non-JSON object.';&eol; }&eol;&eol; if (req.Status() != 202) {&eol; if (typeof resp === 'object' && typeof resp.errors === 'object' && typeof resp.errors[0] === 'string') {&eol; throw resp.errors[0];&eol; }&eol; else {&eol; throw 'Unknown error.';&eol; }&eol; }&eol;&eol; if (resp.status != 'success') {&eol; throw 'Unknown error.';&eol; }&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[PagerDuty Webhook] Notification failed : ' + error);&eol; throw 'PagerDuty notification failed : ' + error;&eol;}|30s |0 |0 | | |Please refer to https://v2.developer.pagerduty.com/docs/send-an-event-events-api-v2 and https://www.zabbix.com/documentation/5.0/manual/config/notifications/media/webhook#example_scripts.&eol; &eol;Set global macro {$ZABBIX.URL} with your Zabbix server URL.&eol;Add a dedicated user with the media type "PagerDuty" and place the integration key in the "token" parameter to integrate into the service. |
ROW |8 |4 |Pushover | | | | | | | |0 |25 |0 |0 |0 |0 | |0 |3 |10s |1 |try {&eol; var params = JSON.parse(value),&eol; request = new CurlHttpRequest(),&eol; data,&eol; response,&eol; severities = [&eol; {name: 'not_classified', color: '#97AAB3'},&eol; {name: 'information', color: '#7499FF'},&eol; {name: 'warning', color: '#FFC859'},&eol; {name: 'average', color: '#FFA059'},&eol; {name: 'high', color: '#E97659'},&eol; {name: 'disaster', color: '#E45959'},&eol; {name: 'resolved', color: '#009900'},&eol; {name: 'default', color: '#000000'}&eol; ],&eol; priority;&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; request.SetProxy(params.HTTPProxy);&eol; }&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; priority = params['priority_' + severities[params.event_nseverity].name] &pipe;&pipe; params.priority_default;&eol;&eol; if (isNaN(priority) &pipe;&pipe; priority < -2 &pipe;&pipe; priority > 2) {&eol; throw '"priority" should be -2..2';&eol; }&eol;&eol; if (params.event_source === '0' && isNaN(params.triggerid)) {&eol; throw 'field "triggerid" is not a number';&eol; }&eol;&eol; if (isNaN(params.eventid)) {&eol; throw 'field "eventid" is not a number';&eol; }&eol;&eol; if (typeof params.message !== 'string' &pipe;&pipe; params.message.trim() === '') {&eol; throw 'field "message" cannot be empty';&eol; }&eol;&eol; data = {&eol; token: params.token,&eol; user: params.user,&eol; title: params.title,&eol; message: params.message,&eol; url: (params.event_source === '0') &eol; ? params.url + '/tr_events.php?triggerid=' + params.triggerid + '&eventid=' + params.eventid&eol; : params.url,&eol; url_title: params.url_title,&eol; priority: priority&eol; };&eol;&eol; if (priority == 2) {&eol; if (isNaN(params.retry) &pipe;&pipe; params.retry < 30) {&eol; throw 'field "retry" should be a number with value of at least 30 if "priority" is set to 2';&eol; }&eol;&eol; if (isNaN(params.expire) &pipe;&pipe; params.expire > 10800) {&eol; throw 'field "expire" should be a number with value of at most 10800 if "priority" is set to 2';&eol; }&eol;&eol; data.retry = params.retry;&eol; data.expire = params.expire;&eol; }&eol;&eol; data = JSON.stringify(data);&eol; Zabbix.Log(4, '[ Pushover Webhook ] Sending request: ' + params.endpoint + '\n' + data);&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; response = request.Post(params.endpoint, data);&eol;&eol; Zabbix.Log(4, '[ Pushover Webhook ] Received response with status code ' + request.Status() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ Pushover Webhook ] Failed to parse response received from Pushover');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() != 200 &pipe;&pipe; response === null &pipe;&pipe; typeof response !== 'object' &pipe;&pipe; response.status !== 1) {&eol; if (response !== null && typeof response === 'object' && typeof response.errors === 'object'&eol; && typeof response.errors[0] === 'string') {&eol; throw response.errors[0];&eol; }&eol; else {&eol; throw 'Unknown error. Check debug log for more information.';&eol; }&eol; }&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.Log(4, '[ Pushover Webhook ] Pushover notification failed: ' + error);&eol; throw 'Pushover notification failed: ' + error;&eol;}|30s |0 |0 | | |Please refer to setup guide here: https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/templates/media/pushover&eol;&eol;Set token parameter with to your Pushover application key.&eol;When assigning Pushover media to the Zabbix user - add user key into send to field. |
-ROW |9 |4 |Slack | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var SEVERITY_COLORS = [&eol; '#97AAB3', '#7499FF', '#FFC859',&eol; '#FFA059', '#E97659', '#E45959'&eol;];&eol;&eol;var RESOLVE_COLOR = '#009900';&eol;&eol;var SLACK_MODE_HANDLERS = {&eol; alarm: handlerAlarm,&eol; event: handlerEvent&eol;};&eol;&eol;&eol;if (!String.prototype.format) {&eol; String.prototype.format = function() {&eol; var args = arguments;&eol;&eol; return this.replace(/{(\d+)}/g, function(match, number) {&eol; return number in args&eol; ? args[number]&eol; : match&eol; ;&eol; });&eol; };&eol;}&eol;&eol;function isEventProblem(params) {&eol; return params.event_value == 1&eol; && params.event_update_status == 0&eol; ;&eol;}&eol;&eol;function isEventUpdate(params) {&eol; return params.event_value == 1&eol; && params.event_update_status == 1&eol; ;&eol;}&eol;&eol;function isEventResolve(params) {&eol; return params.event_value == 0;&eol;}&eol;&eol;function getPermalink(channelId, messageTimestamp) {&eol; var req = new CurlHttpRequest();&eol;&eol; req.AddHeader('Content-Type: application/x-www-form-urlencoded; charset=utf-8');&eol;&eol; var resp = JSON.parse(req.Get(&eol; '{0}?token={1}&channel={2}&message_ts={3}'.format(&eol; Slack.getPermalink,&eol; params.bot_token,&eol; channelId,&eol; messageTimestamp&eol; )&eol; ));&eol;&eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol;&eol; return resp.permalink;&eol;}&eol;&eol;function createProblemURL(zabbix_url, triggerid, eventid, event_source) {&eol; var problem_url = '';&eol; if (event_source === '0') {&eol; problem_url = '{0}/tr_events.php?triggerid={1}&eventid={2}'&eol; .format(&eol; zabbix_url,&eol; triggerid,&eol; eventid&eol; );&eol; }&eol; else {&eol; problem_url = zabbix_url;&eol; }&eol;&eol; return problem_url;&eol;}&eol;&eol;function getTagValue(event_tags, key) {&eol; var pattern = new RegExp('(' + key + ':.+)');&eol; var tag_value = event_tags&eol; .split(',')&eol; .filter(function (v) {&eol; return v.match(pattern);&eol; })&eol; .map(function (v) {&eol; return v.split(':')[1];&eol; })[0]&eol; &pipe;&pipe; 0;&eol;&eol; return tag_value;&eol;}&eol;&eol;function handlerAlarm(params) {&eol; var fields = {&eol; channel: params.channel,&eol; as_user: params.slack_as_user,&eol; };&eol;&eol; if (isEventProblem(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol;&eol; result.tags.__message_ts = resp.ts;&eol; result.tags.__channel_id = resp.channel;&eol; result.tags.__channel_name = params.channel;&eol; result.tags.__message_link = getPermalink(resp.channel, resp.ts);&eol; }&eol; else if (isEventUpdate(params)) {&eol; fields.thread_ts = getTagValue(params.event_tags, 'message_ts');&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_update_date,&eol; params.event_update_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source),&eol; true&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol;&eol; }&eol; else if (isEventResolve(params)) {&eol; fields.channel = getTagValue(params.event_tags, 'channel_id');&eol; fields.text = '';&eol; fields.ts = getTagValue(params.event_tags, 'message_ts');&eol; fields.attachments = [&eol; createMessage(&eol; RESOLVE_COLOR,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.Post(Slack.chatUpdate, JSON.stringify(fields)));&eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol; }&eol;}&eol;&eol;function handlerEvent(params) {&eol; var fields = {&eol; channel: params.channel,&eol; as_user: params.slack_as_user&eol; };&eol;&eol; if (isEventProblem(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol;&eol; result.tags.__channel_name = params.channel;&eol; result.tags.__message_link = getPermalink(resp.channel, resp.ts);&eol;&eol; }&eol; else if (isEventUpdate(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_update_date,&eol; params.event_update_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source),&eol; false&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol;&eol; }&eol; else if (isEventResolve(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; RESOLVE_COLOR,&eol; params.event_recovery_date,&eol; params.event_recovery_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.Status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol; }&eol;}&eol;&eol;function createMessage(&eol; event_severity_color,&eol; event_date,&eol; event_time,&eol; problem_url,&eol; isShort,&eol; messageText&eol;) {&eol; var message = {&eol; fallback: params.alert_subject,&eol; title: params.alert_subject,&eol; color: event_severity_color,&eol; title_link: problem_url,&eol; pretext: messageText &pipe;&pipe; '',&eol;&eol; fields: [&eol; {&eol; title: 'Host',&eol; value: '{0} [{1}]'.format(params.host_name, params.host_conn),&eol; short: true&eol; },&eol; {&eol; title: 'Event time',&eol; value: '{0} {1}'.format(event_date, event_time),&eol; short: true&eol; }&eol; ],&eol; };&eol;&eol; if (params.event_source === '0') {&eol; message.fields.push(&eol; {&eol; title: 'Severity',&eol; value: params.event_severity,&eol; short: true&eol; },&eol; {&eol; title: 'Opdata',&eol; value: params.event_opdata,&eol; short: true&eol; }&eol; );&eol; }&eol;&eol; if (!isShort && params.event_source === '0') {&eol; message['actions'] = [&eol; {&eol; type: 'button',&eol; text: 'Open in Zabbix',&eol; url: problem_url&eol; }&eol; ];&eol;&eol; message.fields.push(&eol; {&eol; title: 'Event tags',&eol; value: params.event_tags.replace(/__.+?:(.+?,&pipe;.+)/g, '') &pipe;&pipe; 'None',&eol; short: true&eol; },&eol; {&eol; title: 'Trigger description',&eol; value: params.trigger_description,&eol; short: true&eol; }&eol; );&eol; }&eol;&eol; if (params.event_source !== '0' &pipe;&pipe; params.event_update_status === '1') {&eol; message.fields.push(&eol; {&eol; title: 'Details',&eol; value: params.alert_message,&eol; short: false&eol; }&eol; );&eol; }&eol;&eol; return message;&eol;}&eol;&eol;function validateParams(params) {&eol; if (typeof params.bot_token !== 'string' &pipe;&pipe; params.bot_token.trim() === '') {&eol; throw 'Field "bot_token" cannot be empty';&eol; }&eol;&eol; if (typeof params.channel !== 'string' &pipe;&pipe; params.channel.trim() === '') {&eol; throw 'Field "channel" cannot be empty';&eol; }&eol;&eol; if (isNaN(params.event_id)) {&eol; throw 'Field "event_id" is not a number';&eol; }&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; if (params.event_source !== '0') {&eol; params.event_nseverity = '0';&eol; params.event_severity = 'Not classified';&eol; params.event_update_status = '0';&eol; params.slack_mode = 'event';&eol; }&eol;&eol; if (params.event_source === '1' &pipe;&pipe; params.event_source === '2') {&eol; params.event_value = '1';&eol; }&eol;&eol; if (params.event_source === '1') {&eol; params.host_name = params.discovery_host_dns;&eol; params.host_ip = params.discovery_host_ip;&eol; }&eol;&eol; if (!~[0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity))) {&eol; throw 'Incorrect "event_nseverity" parameter given: ' + params.event_nseverity + '\nMust be 0-5.';&eol; }&eol;&eol; if (typeof params.event_severity !== 'string' &pipe;&pipe; params.event_severity.trim() === '') {&eol; throw 'Field "event_severity" cannot be empty';&eol; }&eol;&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_value !== '0' && params.event_value !== '1') {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (typeof params.host_conn !== 'string' &pipe;&pipe; params.host_conn.trim() === '') {&eol; throw 'Field "host_conn" cannot be empty';&eol; }&eol;&eol; if (typeof params.host_name !== 'string' &pipe;&pipe; params.host_name.trim() === '') {&eol; throw 'Field "host_name" cannot be empty';&eol; }&eol;&eol; if (!~['true', 'false'].indexOf(params.slack_as_user.toLowerCase())) {&eol; throw 'Incorrect "slack_as_user" parameter given: ' + params.slack_as_user + '\nMust be "true" or "false".';&eol; }&eol;&eol; if (!~['alarm', 'event'].indexOf(params.slack_mode)) {&eol; throw 'Incorrect "slack_mode" parameter given: ' + params.slack_mode + '\nMust be "alarm" or "event".';&eol; }&eol;&eol; if (isNaN(params.trigger_id) && params.event_source === '0') {&eol; throw 'field "trigger_id" is not a number';&eol; }&eol;&eol; if (typeof params.zabbix_url !== 'string' &pipe;&pipe; params.zabbix_url.trim() === '') {&eol; throw 'Field "zabbix_url" cannot be empty';&eol; }&eol;&eol; if (!/^(http&pipe;https):\/\/.+/.test(params.zabbix_url)) {&eol; throw 'Field "zabbix_url" must contain a schema';&eol; }&eol;}&eol;&eol;try {&eol; var params = JSON.parse(value);&eol;&eol; validateParams(params);&eol;&eol; var req = new CurlHttpRequest(),&eol; result = {tags: {}};&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; req.SetProxy(params.HTTPProxy);&eol; }&eol;&eol; req.AddHeader('Content-Type: application/json; charset=utf-8');&eol; req.AddHeader('Authorization: Bearer ' + params.bot_token);&eol;&eol; var slack_endpoint = 'https://slack.com/api/';&eol;&eol; var Slack = {&eol; postMessage: slack_endpoint + 'chat.postMessage',&eol; getPermalink: slack_endpoint + 'chat.getPermalink',&eol; chatUpdate: slack_endpoint + 'chat.update'&eol; };&eol;&eol; params.slack_mode = params.slack_mode.toLowerCase();&eol; params.slack_mode = params.slack_mode in SLACK_MODE_HANDLERS&eol; ? params.slack_mode&eol; : 'alarm';&eol;&eol; SLACK_MODE_HANDLERS[params.slack_mode](params);&eol;&eol; if (params.event_source === '0') {&eol; return JSON.stringify(result);&eol; }&eol; else {&eol; return 'OK';&eol; }&eol;}&eol;catch (error) {&eol; Zabbix.Log(4, '[ Slack Webhook ] Slack notification failed : ' + error);&eol; throw 'Slack notification failed : ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__message_link} |Open in Slack: {EVENT.TAGS.__channel_name} | |
+ROW |9 |4 |Slack | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var SEVERITY_COLORS = [&eol; '#97AAB3', '#7499FF', '#FFC859',&eol; '#FFA059', '#E97659', '#E45959'&eol;];&eol;&eol;var RESOLVE_COLOR = '#009900';&eol;&eol;var SLACK_MODE_HANDLERS = {&eol; alarm: handlerAlarm,&eol; event: handlerEvent&eol;};&eol;&eol;&eol;if (!String.prototype.format) {&eol; String.prototype.format = function() {&eol; var args = arguments;&eol;&eol; return this.replace(/{(\d+)}/g, function(match, number) {&eol; return number in args&eol; ? args[number]&eol; : match&eol; ;&eol; });&eol; };&eol;}&eol;&eol;function isEventProblem(params) {&eol; return params.event_value == 1&eol; && params.event_update_status == 0&eol; ;&eol;}&eol;&eol;function isEventUpdate(params) {&eol; return params.event_value == 1&eol; && params.event_update_status == 1&eol; ;&eol;}&eol;&eol;function isEventResolve(params) {&eol; return params.event_value == 0;&eol;}&eol;&eol;function getPermalink(channelId, messageTimestamp) {&eol; var req = new CurlHttpRequest();&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; req.SetProxy(params.HTTPProxy);&eol; }&eol;&eol; req.AddHeader('Content-Type: application/x-www-form-urlencoded; charset=utf-8');&eol; req.AddHeader('Authorization: Bearer ' + params.bot_token);&eol;&eol; var query = '{0}?channel={1}&message_ts={2}'.format(&eol; Slack.getPermalink,&eol; encodeURIComponent(channelId),&eol; encodeURIComponent(messageTimestamp)),&eol; resp = JSON.parse(req.Get(query));&eol;&eol; if (req.Status() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw 'message was created, but getting message link was failed with reason "' + resp.error + '"';&eol; }&eol;&eol; return resp.permalink;&eol;}&eol;&eol;function createProblemURL(zabbix_url, triggerid, eventid, event_source) {&eol; var problem_url = '';&eol; if (event_source === '0') {&eol; problem_url = '{0}/tr_events.php?triggerid={1}&eventid={2}'&eol; .format(&eol; zabbix_url,&eol; triggerid,&eol; eventid&eol; );&eol; }&eol; else {&eol; problem_url = zabbix_url;&eol; }&eol;&eol; return problem_url;&eol;}&eol;&eol;function handlerAlarm(params) {&eol; var fields = {&eol; channel: params.channel,&eol; as_user: params.slack_as_user,&eol; };&eol;&eol; if (isEventProblem(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.Status() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol;&eol; result.tags.__message_ts = resp.ts;&eol; result.tags.__channel_id = resp.channel;&eol; result.tags.__channel_name = params.channel;&eol; result.tags.__message_link = getPermalink(resp.channel, resp.ts);&eol; }&eol; else if (isEventUpdate(params)) {&eol; fields.thread_ts = params.message_ts;&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_update_date,&eol; params.event_update_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source),&eol; true&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol; if (req.Status() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol;&eol; }&eol; else if (isEventResolve(params)) {&eol; fields.channel = params.channel_id;&eol; fields.text = '';&eol; fields.ts = params.message_ts;&eol; fields.attachments = [&eol; createMessage(&eol; RESOLVE_COLOR,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.Post(Slack.chatUpdate, JSON.stringify(fields)));&eol; if (req.Status() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol; }&eol;}&eol;&eol;function handlerEvent(params) {&eol; var fields = {&eol; channel: params.channel,&eol; as_user: params.slack_as_user&eol; };&eol;&eol; if (isEventProblem(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.Status() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol;&eol; result.tags.__channel_name = params.channel;&eol; result.tags.__message_link = getPermalink(resp.channel, resp.ts);&eol;&eol; }&eol; else if (isEventUpdate(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_update_date,&eol; params.event_update_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source),&eol; false&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.Status() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol;&eol; }&eol; else if (isEventResolve(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; RESOLVE_COLOR,&eol; params.event_recovery_date,&eol; params.event_recovery_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.Status() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol; }&eol;}&eol;&eol;function createMessage(&eol; event_severity_color,&eol; event_date,&eol; event_time,&eol; problem_url,&eol; isShort,&eol; messageText&eol;) {&eol; var message = {&eol; fallback: params.alert_subject,&eol; title: params.alert_subject,&eol; color: event_severity_color,&eol; title_link: problem_url,&eol; pretext: messageText &pipe;&pipe; '',&eol;&eol; fields: [&eol; {&eol; title: 'Host',&eol; value: '{0} [{1}]'.format(params.host_name, params.host_conn),&eol; short: true&eol; },&eol; {&eol; title: 'Event time',&eol; value: '{0} {1}'.format(event_date, event_time),&eol; short: true&eol; }&eol; ],&eol; };&eol;&eol; if (params.event_source === '0') {&eol; message.fields.push(&eol; {&eol; title: 'Severity',&eol; value: params.event_severity,&eol; short: true&eol; },&eol; {&eol; title: 'Opdata',&eol; value: params.event_opdata,&eol; short: true&eol; }&eol; );&eol; }&eol;&eol; if (!isShort && params.event_source === '0') {&eol; message['actions'] = [&eol; {&eol; type: 'button',&eol; text: 'Open in Zabbix',&eol; url: problem_url&eol; }&eol; ];&eol;&eol; message.fields.push(&eol; {&eol; title: 'Event tags',&eol; value: params.event_tags.replace(/__.+?:(.+?,&pipe;.+)/g, '') &pipe;&pipe; 'None',&eol; short: true&eol; },&eol; {&eol; title: 'Trigger description',&eol; value: params.trigger_description,&eol; short: true&eol; }&eol; );&eol; }&eol;&eol; if (params.event_source !== '0' &pipe;&pipe; params.event_update_status === '1') {&eol; message.fields.push(&eol; {&eol; title: 'Details',&eol; value: params.alert_message,&eol; short: false&eol; }&eol; );&eol; }&eol;&eol; return message;&eol;}&eol;&eol;function validateParams(params) {&eol; if (typeof params.bot_token !== 'string' &pipe;&pipe; params.bot_token.trim() === '') {&eol; throw 'Field "bot_token" cannot be empty';&eol; }&eol;&eol; if (typeof params.channel !== 'string' &pipe;&pipe; params.channel.trim() === '') {&eol; throw 'Field "channel" cannot be empty';&eol; }&eol;&eol; if (isNaN(params.event_id)) {&eol; throw 'Field "event_id" is not a number';&eol; }&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; if (params.event_source !== '0') {&eol; params.event_nseverity = '0';&eol; params.event_severity = 'Not classified';&eol; params.event_update_status = '0';&eol; params.slack_mode = 'event';&eol; }&eol;&eol; if (params.event_source === '1' &pipe;&pipe; params.event_source === '2') {&eol; params.event_value = '1';&eol; }&eol;&eol; if (params.event_source === '1') {&eol; params.host_name = params.discovery_host_dns;&eol; params.host_ip = params.discovery_host_ip;&eol; }&eol;&eol; if (!~[0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity))) {&eol; throw 'Incorrect "event_nseverity" parameter given: ' + params.event_nseverity + '\nMust be 0-5.';&eol; }&eol;&eol; if (typeof params.event_severity !== 'string' &pipe;&pipe; params.event_severity.trim() === '') {&eol; throw 'Field "event_severity" cannot be empty';&eol; }&eol;&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_value !== '0' && params.event_value !== '1') {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (typeof params.host_conn !== 'string' &pipe;&pipe; params.host_conn.trim() === '') {&eol; throw 'Field "host_conn" cannot be empty';&eol; }&eol;&eol; if (typeof params.host_name !== 'string' &pipe;&pipe; params.host_name.trim() === '') {&eol; throw 'Field "host_name" cannot be empty';&eol; }&eol;&eol; if (!~['true', 'false'].indexOf(params.slack_as_user.toLowerCase())) {&eol; throw 'Incorrect "slack_as_user" parameter given: ' + params.slack_as_user + '\nMust be "true" or "false".';&eol; }&eol;&eol; if (!~['alarm', 'event'].indexOf(params.slack_mode)) {&eol; throw 'Incorrect "slack_mode" parameter given: ' + params.slack_mode + '\nMust be "alarm" or "event".';&eol; }&eol;&eol; if (isNaN(params.trigger_id) && params.event_source === '0') {&eol; throw 'field "trigger_id" is not a number';&eol; }&eol;&eol; if (typeof params.zabbix_url !== 'string' &pipe;&pipe; params.zabbix_url.trim() === '') {&eol; throw 'Field "zabbix_url" cannot be empty';&eol; }&eol;&eol; if (!/^(http&pipe;https):\/\/.+/.test(params.zabbix_url)) {&eol; throw 'Field "zabbix_url" must contain a schema';&eol; }&eol;}&eol;&eol;try {&eol; var params = JSON.parse(value);&eol;&eol; validateParams(params);&eol;&eol; var req = new CurlHttpRequest(),&eol; result = {tags: {}};&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; req.SetProxy(params.HTTPProxy);&eol; }&eol;&eol; req.AddHeader('Content-Type: application/json; charset=utf-8');&eol; req.AddHeader('Authorization: Bearer ' + params.bot_token);&eol;&eol; var slack_endpoint = 'https://slack.com/api/';&eol;&eol; var Slack = {&eol; postMessage: slack_endpoint + 'chat.postMessage',&eol; getPermalink: slack_endpoint + 'chat.getPermalink',&eol; chatUpdate: slack_endpoint + 'chat.update'&eol; };&eol;&eol; params.slack_mode = params.slack_mode.toLowerCase();&eol; params.slack_mode = params.slack_mode in SLACK_MODE_HANDLERS&eol; ? params.slack_mode&eol; : 'alarm';&eol;&eol; SLACK_MODE_HANDLERS[params.slack_mode](params);&eol;&eol; if (params.event_source === '0') {&eol; return JSON.stringify(result);&eol; }&eol; else {&eol; return 'OK';&eol; }&eol;}&eol;catch (error) {&eol; Zabbix.Log(4, '[ Slack Webhook ] Slack notification failed : ' + error);&eol; throw 'Slack notification failed : ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__message_link} |Open in Slack: {EVENT.TAGS.__channel_name} | |
ROW |10 |4 |Discord | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var SEVERITY_COLORS = [&eol; '#97AAB3', // Not classified.&eol; '#7499FF', // Information.&eol; '#FFC859', // Warning.&eol; '#FFA059', // Average.&eol; '#E97659', // High.&eol; '#E45959', // Disaster.&eol; '#009900' // Resolved.&eol;];&eol;&eol;function stringTruncate(str, len) {&eol; return str.length > len ? str.substring(0, len - 3) + '...' : str;&eol;}&eol;&eol;try {&eol; Zabbix.Log(4, '[ Discord Webhook ] Executed with params: ' + value);&eol;&eol; var params = JSON.parse(value);&eol;&eol; if (!params.discord_endpoint) {&eol; throw 'Cannot get discord_endpoint';&eol; }&eol; else {&eol; params.discord_endpoint = params.discord_endpoint.replace('/api/', '/api/v7/') + '?wait=True';&eol; }&eol;&eol; params.zabbix_url = (params.zabbix_url.endsWith('/'))&eol; ? params.zabbix_url.slice(0, -1) : params.zabbix_url;&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; // Set params to true for non trigger-based events.&eol; if (params.event_source !== '0') {&eol; params.use_default_message = 'true';&eol; params.event_nseverity = '0';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: "' + params.event_value + '".\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: "' + params.event_update_status + '".\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_value == 0) {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; if (!SEVERITY_COLORS[params.event_nseverity]) {&eol; throw 'Incorrect "event_nseverity" parameter given: ' + params.event_nseverity + '\nMust be 0-5.';&eol; }&eol;&eol; var color = parseInt(SEVERITY_COLORS[params.event_nseverity].replace('#', ''), 16),&eol; fields = [],&eol; body = {&eol; embeds: [&eol; {&eol; color: color &pipe;&pipe; 0,&eol; url: (params.event_source === '0')&eol; ? params.zabbix_url + '/tr_events.php?triggerid=' + params.trigger_id +&eol; '&eventid=' + params.event_id&eol; : params.zabbix_url&eol; }&eol; ]&eol; };&eol;&eol; // Default message from {ALERT.MESSAGE}.&eol; if (params.use_default_message.toLowerCase() == 'true') {&eol; body.embeds[0].title = stringTruncate(params.alert_subject, 256);&eol; body.embeds[0].description = stringTruncate(params.alert_message, 2048);&eol; }&eol; else {&eol; fields.push(&eol; {&eol; name: 'Host',&eol; value: params.host_name + ' [' + params.host_ip + ']'&eol; }&eol; );&eol;&eol; // Resolved message.&eol; if (params.event_value == 0 && params.event_update_status == 0) {&eol; body.embeds[0].title = stringTruncate('OK: ' + params.event_name, 256);&eol; fields.push(&eol; {&eol; name: 'Recovery time',&eol; value: params.event_recovery_time + ' ' + params.event_recovery_date,&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; // Problem message.&eol; else if (params.event_value == 1 && params.event_update_status == 0) {&eol; body.embeds[0].title = stringTruncate('PROBLEM: ' + params.event_name, 256);&eol; fields.push(&eol; {&eol; name: 'Event time',&eol; value: params.event_time + ' ' + params.event_date,&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; // Update message.&eol; else if (params.event_update_status == 1) {&eol; body.embeds[0].title = stringTruncate('UPDATE: ' + params.event_name, 256);&eol; body.embeds[0].description = params.event_update_user + ' ' + params.event_update_action + '.';&eol;&eol; if (params.event_update_message) {&eol; body.embeds[0].description += ' Comment:\n>>> ' + params.event_update_message;&eol; }&eol;&eol; body.embeds[0].description = stringTruncate(body.embeds[0].description, 2048);&eol;&eol; fields.push(&eol; {&eol; name: 'Event update time',&eol; value: params.event_update_time + ' ' + params.event_update_date,&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; fields.push(&eol; {&eol; name: 'Severity',&eol; value: params.event_severity,&eol; inline: 'True'&eol; }&eol; );&eol;&eol; if (params.event_opdata) {&eol; fields.push(&eol; {&eol; name: 'Operational data',&eol; value: stringTruncate(params.event_opdata, 1024),&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; if (params.event_value == 1 && params.event_update_status == 0 && params.trigger_description) {&eol; fields.push(&eol; {&eol; name: 'Trigger description',&eol; value: stringTruncate(params.trigger_description, 1024)&eol; }&eol; );&eol; }&eol;&eol; body.embeds[0].footer = {&eol; text: 'Event ID: ' + params.event_id&eol; };&eol;&eol; if (params.event_tags) {&eol; body.embeds[0].footer.text += '\nEvent tags: ' + params.event_tags;&eol; }&eol; body.embeds[0].footer.text = stringTruncate(body.embeds[0].footer.text, 2048);&eol; }&eol;&eol; if (fields.length > 0) {&eol; body.embeds[0].fields = fields;&eol; }&eol;&eol; var req = new CurlHttpRequest();&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; req.SetProxy(params.HTTPProxy);&eol; }&eol;&eol; req.AddHeader('Content-Type: application/json');&eol;&eol; var resp = req.Post(params.discord_endpoint, JSON.stringify(body)),&eol; data = JSON.parse(resp);&eol;&eol; Zabbix.Log(4, '[ Discord Webhook ] JSON: ' + JSON.stringify(body));&eol; Zabbix.Log(4, '[ Discord Webhook ] Response: ' + resp);&eol;&eol; if (data.id) {&eol; return resp;&eol; }&eol; else {&eol; var message = ((typeof data.message === 'string') ? data.message : 'Unknown error');&eol;&eol; Zabbix.Log(3, '[ Discord Webhook ] FAILED with response: ' + resp);&eol; throw message + '. For more details check zabbix server log.';&eol; }&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ Discord Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |0 |0 | | | |
ROW |11 |4 |SIGNL4 | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |// SIGNL4 Webhook&eol;try {&eol; var response,&eol; payload,&eol; params = JSON.parse(value),&eol; endpoint = 'https://connect.signl4.com/webhook/',&eol; request = new CurlHttpRequest();&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; request.SetProxy(params.HTTPProxy);&eol; }&eol;&eol; if (typeof params.teamsecret === 'string' && params.teamsecret.trim() !== '') {&eol; endpoint += params.teamsecret;&eol; delete params.teamsecret;&eol; }&eol; else {&eol; throw 'The team secret of your SIGNL4 team cannot be empty.';&eol; }&eol;&eol; if (typeof params.Severity === 'string' && params.Severity === '{EVENT.SEVERITY}') {&eol; params.Severity = 'Not classified';&eol; }&eol;&eol; if (typeof params.User === 'string' && params.User === '{USER.FULLNAME}') {&eol; params.User = '';&eol; }&eol;&eol; if (typeof params.Event_Update_Action === 'string' && params.Event_Update_Action === '{EVENT.UPDATE.ACTION}') {&eol; params.Event_Update_Action = '';&eol; }&eol;&eol; // Assemble X-S4-ExternalID for two-way integration&eol; // Format: "ZabbixEventID: 222 ZabbixURL: https://your-zabbix-server/zabbix/"&eol; params['X-S4-ExternalID'] = 'ZabbixEventID: ' + params.Event_ID;&eol; if (typeof params.Zabbix_URL === 'string' && params.Zabbix_URL.indexOf('http') == 0) {&eol; // Make sure the URL ends with '/'&eol; if (params.Zabbix_URL.charAt(params.Zabbix_URL.length - 1) != '/') {&eol; params.Zabbix_URL = params.Zabbix_URL + '/';&eol; }&eol;&eol; params['X-S4-ExternalID'] = params['X-S4-ExternalID'] + ' ZabbixURL: ' + params.Zabbix_URL;&eol;&eol; // Add Link parameter&eol; params['Link'] = params.Zabbix_URL + "tr_events.php?triggerid="+params.Trigger_ID + "&eventid=" + params.Event_ID;&eol; }&eol;&eol; // Check if this is a new problem or a recovery&eol; if (params.Trigger_Status == 'OK') {&eol; params['X-S4-Status'] = 'resolved';&eol; }&eol; else {&eol; params['X-S4-Status'] = 'new';&eol; }&eol;&eol; payload = JSON.stringify(params);&eol; Zabbix.Log(4, '[ SIGNL4 Webhook ] Sending request: ' + payload);&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; response = request.Post(endpoint, 'payload=' + payload);&eol;&eol; Zabbix.Log(4, '[ SIGNL4 Webhook ] Received response with status code ' +&eol; request.Status() + '\n' + response&eol; );&eol;&eol; if (request.Status() !== 201) {&eol; throw 'Request failed with status code ' + request.Status() +&eol; '. Check debug log for more information.';&eol; }&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.Log(4, '[ SIGNL4 Webhook ] ERROR: ' + error);&eol;&eol; throw 'Sending failed: ' + error;&eol;}|30s |0 |0 | | |SIGNL4 is a mobile alert notification app for powerful alerting, alert management and mobile assignment of work items. It offers alerting via app push, SMS and voice calls including escalations, tracking, and duty scheduling.&eol;&eol;Get the app at https://www.signl4.com.&eol;&eol;Find out more including an integration video here: https://www.signl4.com/blog/portfolio_item/zabbix-mobile-alert-notification-duty-schedule-escalation/&eol; |
ROW |12 |4 |Jira | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Jira = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Jira.params = params;&eol; if (typeof Jira.params.url === 'string') {&eol; if (!Jira.params.url.endsWith('/')) {&eol; Jira.params.url += '/';&eol; }&eol;&eol; Jira.params.url += 'rest/api/latest/';&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; Jira.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; setTags: function(event_tags_json) {&eol; if (typeof event_tags_json !== 'undefined' && event_tags_json !== ''&eol; && event_tags_json !== '{EVENT.TAGSJSON}') {&eol; try {&eol; var tags = JSON.parse(event_tags_json),&eol; label;&eol;&eol; Jira.labels = [];&eol;&eol; tags.forEach(function (tag) {&eol; if (typeof tag.tag !== 'undefined' && typeof tag.value !== 'undefined'&eol; && !tag.tag.startsWith('__zbx')) {&eol; label = (tag.tag + (tag.value ? (':' + tag.value) : '')).replace(/\s/g, '_');&eol; if (label.length < 256) {&eol; Jira.labels.push(label);&eol; }&eol; }&eol; });&eol; }&eol; catch (error) {&eol; // Code is not missing here.&eol; }&eol; }&eol; },&eol;&eol; escapeMarkup: function (str) {&eol; var length = str.length,&eol; result = '',&eol; markup = ['{', '&pipe;', '}', '~', '_', '\\', '[', ']', '^', '<', '>', '?', '!', '#', '+', '*', '&'];&eol;&eol; for (var i = 0; i < length; i++) {&eol; var char = str[i];&eol;&eol; result += (markup.indexOf(char) !== -1) ? ('&#' + str[i].charCodeAt() + ';') : char;&eol; }&eol;&eol; return result;&eol; },&eol;&eol; addCustomFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; var schema = Jira.getSchema(),&eol; path = ['projects', 0, 'issuetypes', 0, 'fields'],&eol; field;&eol;&eol; while ((field = path.shift()) !== undefined) {&eol; schema = schema[field];&eol; if (typeof schema === 'undefined') {&eol; schema = null;&eol; break;&eol; }&eol; }&eol;&eol; if (schema) {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; if (typeof schema[field] === 'object' && typeof schema[field].schema === 'object') {&eol; switch (schema[field].schema.type) {&eol; case 'number':&eol; data.fields[field] = parseInt(fields[field]);&eol; break;&eol;&eol; case 'datetime':&eol; if (fields[field].match(/\d+[.-]\d+[.-]\d+T\d+:\d+:\d+/) !== null) {&eol; data.fields[field] = fields[field].replace(/\./g, '-');&eol; }&eol; break;&eol;&eol; case 'option':&eol; data.fields[field] = {value: fields[field]};&eol; break;&eol;&eol; case 'array':&eol; if (schema[field].schema.items === 'option') {&eol; data.fields[field] = [{value: fields[field]}];&eol; }&eol; else {&eol; data.fields[field] = [fields[field]];&eol; }&eol; break;&eol;&eol; default:&eol; data.fields[field] = fields[field];&eol; }&eol; }&eol; });&eol; }&eol; else {&eol; Zabbix.Log(4, '[ Jira Webhook ] Failed to retrieve field schema.');&eol; }&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'user', 'password', 'project_key', 'issue_type'].forEach(function (field) {&eol; if (typeof Jira.params !== 'object' &pipe;&pipe; typeof Jira.params[field] === 'undefined'&eol; &pipe;&pipe; Jira.params[field] === '' ) {&eol; throw 'Required Jira param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Jira.params.url + query,&eol; request = new CurlHttpRequest();&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('Authorization: Basic ' + btoa(Jira.params.user + ':' + Jira.params.password));&eol;&eol; if (typeof Jira.HTTPProxy !== 'undefined' && Jira.HTTPProxy !== '') {&eol; request.SetProxy(Jira.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ Jira Webhook ] Sending request: ' + url + ((typeof data === 'string') ? ('\n' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ Jira Webhook ] Received response with status code ' + request.Status() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ Jira Webhook ] Failed to parse response received from Jira');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.errors !== 'undefined'&eol; && Object.keys(response.errors).length > 0) {&eol; message += ': ' + JSON.stringify(response.errors);&eol; }&eol; else if (response !== null && typeof response.errorMessages !== 'undefined'&eol; && Object.keys(response.errorMessages).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessages);&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; getSchema: function() {&eol; var result = Jira.request('get', 'issue/createmeta?expand=projects.issuetypes.fields&projectKeys=' +&eol; encodeURIComponent(Jira.params.project_key) + '&issuetypeNames=' +&eol; encodeURIComponent(Jira.params.issue_type));&eol;&eol; return result.response;&eol; },&eol;&eol; createIssue: function(summary, description, fields) {&eol; var data = {&eol; fields: {&eol; project: {&eol; key: Jira.params.project_key&eol; },&eol; issuetype: {&eol; name: Jira.params.issue_type&eol; },&eol; summary: summary,&eol; description: description&eol; }&eol; };&eol;&eol; if (Jira.labels && Jira.labels.length > 0) {&eol; data.fields.labels = Jira.labels;&eol; }&eol; var result = Jira.request('post', 'issue', Jira.addCustomFields(data, fields));&eol;&eol; if (typeof result.response !== 'object' &pipe;&pipe; typeof result.response.key === 'undefined') {&eol; throw 'Cannot create Jira issue. Check debug log for more information.';&eol; }&eol;&eol; return result.response.key;&eol; },&eol;&eol; updateIssue: function(summary, fields, update) {&eol; var data = {fields: {}};&eol;&eol; if (summary) {&eol; data.fields.summary = summary;&eol; }&eol;&eol; Jira.request('put', 'issue/' + encodeURIComponent(Jira.params.issue_key), Jira.addCustomFields(data, fields));&eol; Jira.commentIssue(update);&eol; },&eol;&eol; commentIssue: function(update) {&eol; var data = {};&eol;&eol; if (typeof update === 'string') {&eol; data.body = update;&eol; Jira.request('post', 'issue/' + encodeURIComponent(Jira.params.issue_key) + '/comment', data);&eol; }&eol; else if (update.status === '1') {&eol; data.body = update.user + ' ' + update.action + '.';&eol;&eol; if (update.message) {&eol; data.body += '\nMessage: {quote}' + Jira.escapeMarkup(update.message) + '{quote}';&eol; }&eol;&eol; Jira.request('post', 'issue/' + encodeURIComponent(Jira.params.issue_key) + '/comment', data);&eol; }&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; jira = {},&eol; update = {},&eol; result = {tags: {}},&eol; required_params = ['alert_subject', 'summary', 'event_recovery_value', 'event_source', 'event_value'];&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('jira_')) {&eol; jira[key.substring(5)] = params[key];&eol; }&eol; else if (key.startsWith('customfield_')) {&eol; fields[key] = params[key];&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key] === '') {&eol; throw 'Parameter "' + key + '" can\'t be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_recovery_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; Jira.setParams(jira);&eol; Jira.setProxy(params.HTTPProxy);&eol; Jira.setTags(params.event_tags_json);&eol;&eol; // Create issue for non trigger-based events.&eol; if (params.event_source !== '0' && params.event_recovery_value !== '0') {&eol; Jira.createIssue(params.alert_subject, params.alert_message);&eol; }&eol; // Create issue for trigger-based events.&eol; else if (params.event_value === '1' && update.status === '0' && !jira.issue_key.startsWith(jira.project_key)) {&eol; var key = Jira.createIssue(params.alert_subject,&eol; (Object.keys(fields).length ? params.trigger_description : params.alert_message), fields);&eol;&eol;&eol; result.tags.__zbx_jira_issuekey = key;&eol; result.tags.__zbx_jira_issuelink = params.jira_url +&eol; (params.jira_url.endsWith('/') ? '' : '/') + 'browse/' + key;&eol; }&eol; // Update created issue for trigger-based event.&eol; else {&eol; if (!jira.issue_key.startsWith(jira.project_key)) {&eol; throw 'Incorrect Issue key given: ' + jira.issue_key;&eol; }&eol; Jira.updateIssue(params.alert_subject, fields,&eol; ((params.event_value === '0' && !Object.keys(fields).length)&eol; ? params.alert_message : update));&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ Jira Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_jira_issuelink} |Jira: {EVENT.TAGS.__zbx_jira_issuekey} | |
@@ -590,6 +590,8 @@ ROW |529 |29 |send_to
ROW |530 |29 |telauto |true |
ROW |531 |29 |text |{ALERT.MESSAGE} |
ROW |532 |29 |username |<PLACE USERNAME> |
+ROW |533 |9 |channel_id |{EVENT.TAGS.__channel_id} |
+ROW |534 |9 |message_ts |{EVENT.TAGS.__message_ts} |
TABLE |media_type_message
FIELDS|mediatype_messageid|mediatypeid|eventsource|recovery|subject |message |
diff --git a/create/src/templates.tmpl b/create/src/templates.tmpl
index 158985d921e..5ca27064666 100644
--- a/create/src/templates.tmpl
+++ b/create/src/templates.tmpl
@@ -223,10 +223,10 @@ ROW |5 |10332 |{#DATACENTER.NAME} (vm) |NULL |NU
ROW |6 |10332 |{#HV.NAME} |NULL |NULL |
ROW |24 |10364 |MongoDB sharded cluster/{#REPLICASET}|NULL |NULL |
ROW |26 |10365 |MongoDB sharded cluster/{#ID} |NULL |NULL |
-ROW |28 |10331 | |12 |NULL |
-ROW |29 |10332 | |12 |NULL |
-ROW |30 |10364 | |13 |NULL |
-ROW |31 |10365 | |13 |NULL |
+ROW |32 |10331 | |12 |NULL |
+ROW |33 |10332 | |12 |NULL |
+ROW |34 |10364 | |13 |NULL |
+ROW |35 |10365 | |13 |NULL |
TABLE |screens
FIELDS|screenid|name |hsize|vsize|templateid|userid|private|
@@ -329,322 +329,322 @@ ROW |5544 |41 |0 |1022 |500 |100 |0 |1 |1
ROW |5545 |41 |0 |1023 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
ROW |5546 |41 |0 |1021 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
ROW |5547 |41 |0 |1024 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5932 |25 |0 |1174 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5933 |25 |0 |1176 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5934 |25 |20 |1172 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5935 |25 |20 |1173 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5936 |25 |0 |1175 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5937 |26 |0 |838 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5938 |26 |0 |839 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5939 |26 |20 |836 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5940 |26 |20 |837 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5941 |26 |0 |840 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5942 |59 |0 |1125 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5943 |59 |0 |1129 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5944 |59 |0 |1128 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5945 |59 |0 |1126 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5946 |59 |0 |1127 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5947 |48 |20 |1075 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5948 |49 |20 |1078 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5949 |49 |20 |1076 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5950 |49 |20 |1079 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5951 |49 |20 |1077 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5952 |50 |20 |1080 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5953 |51 |20 |1081 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5954 |52 |20 |1084 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5955 |52 |20 |1082 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5956 |52 |20 |1085 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5957 |52 |20 |1083 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5958 |53 |20 |1086 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5959 |27 |0 |841 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5960 |27 |0 |843 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5961 |27 |0 |842 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5962 |28 |0 |845 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5963 |28 |0 |847 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5964 |28 |0 |846 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5965 |62 |0 |1419 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5966 |62 |0 |1414 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5967 |62 |0 |1421 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5968 |62 |0 |1423 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5969 |62 |0 |1420 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5970 |63 |0 |1422 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5971 |63 |0 |1425 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5972 |63 |0 |1415 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5973 |63 |0 |1418 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5974 |63 |0 |1416 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5975 |63 |0 |1424 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5976 |64 |0 |1432 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5977 |64 |0 |1428 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5978 |64 |0 |1434 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5979 |64 |0 |1436 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5980 |64 |0 |1433 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5981 |65 |0 |1435 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5982 |65 |0 |1438 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5983 |65 |0 |1429 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5984 |65 |0 |1431 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5985 |65 |0 |1430 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5986 |65 |0 |1437 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5987 |22 |0 |806 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |5988 |22 |0 |804 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |5989 |22 |0 |805 |500 |100 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |5990 |22 |0 |803 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |5991 |21 |0 |802 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |5992 |21 |0 |799 |500 |100 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5993 |21 |0 |800 |500 |114 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |5994 |21 |0 |798 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |5995 |21 |0 |797 |500 |160 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5996 |21 |0 |801 |500 |160 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5997 |17 |0 |532 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |5998 |17 |0 |530 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |5999 |17 |0 |531 |500 |100 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6000 |17 |0 |529 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6001 |4 |0 |392 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6002 |4 |0 |404 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6003 |4 |0 |406 |500 |114 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6004 |4 |0 |410 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6005 |4 |0 |527 |500 |160 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6006 |4 |0 |788 |500 |160 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6007 |5 |0 |469 |500 |148 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6008 |5 |0 |471 |500 |100 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6009 |5 |0 |498 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6010 |5 |0 |540 |500 |100 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6011 |7 |0 |463 |500 |120 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6012 |7 |0 |462 |500 |106 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6013 |7 |0 |541 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6014 |7 |0 |464 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6015 |6 |0 |475 |500 |114 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6016 |6 |0 |474 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6017 |6 |0 |542 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6018 |18 |0 |487 |750 |100 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6019 |18 |0 |543 |750 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6020 |9 |0 |457 |500 |120 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6021 |9 |0 |456 |500 |106 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6022 |9 |0 |544 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6023 |9 |0 |458 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6024 |9 |1 |22838 |500 |100 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6025 |9 |1 |22837 |500 |100 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6026 |10 |0 |481 |500 |114 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6027 |10 |0 |480 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |6028 |10 |0 |545 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6029 |10 |0 |482 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6030 |10 |1 |22998 |500 |100 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6031 |10 |1 |22997 |500 |100 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6032 |57 |0 |1112 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6033 |57 |0 |1113 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6034 |57 |0 |1110 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6035 |57 |0 |1109 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6036 |57 |0 |1111 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6037 |57 |0 |1114 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6038 |60 |0 |1139 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6039 |60 |0 |1140 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6040 |60 |0 |1137 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6041 |60 |0 |1136 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6042 |60 |0 |1138 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6043 |60 |0 |1141 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6044 |58 |0 |1118 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6045 |58 |0 |1119 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6046 |58 |0 |1116 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6047 |58 |0 |1115 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6048 |58 |0 |1117 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6049 |58 |0 |1120 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6050 |23 |20 |821 |500 |200 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6051 |23 |20 |816 |500 |200 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6052 |23 |20 |814 |500 |200 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6053 |23 |20 |820 |500 |200 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6054 |23 |20 |817 |500 |200 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6055 |23 |20 |815 |500 |200 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6056 |23 |20 |818 |500 |200 |0 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6057 |23 |20 |819 |500 |200 |1 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6058 |24 |0 |824 |500 |200 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6059 |24 |0 |827 |500 |200 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6060 |24 |0 |825 |500 |200 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6061 |24 |0 |828 |500 |200 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6062 |24 |0 |826 |500 |200 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6063 |24 |0 |829 |500 |200 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6064 |24 |0 |822 |500 |200 |0 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6065 |24 |0 |823 |500 |200 |1 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |6066 |61 |20 |1212 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6067 |61 |20 |1210 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6068 |61 |20 |1213 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6069 |61 |20 |1211 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6070 |54 |0 |1091 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6071 |54 |0 |1095 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6072 |54 |0 |1092 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6073 |54 |0 |1094 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6074 |54 |0 |1099 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6075 |54 |0 |1100 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6076 |54 |0 |1101 |500 |100 |0 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6077 |54 |0 |1102 |500 |100 |1 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6078 |54 |20 |1090 |500 |100 |0 |4 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6079 |55 |0 |1093 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6080 |55 |0 |1098 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6081 |55 |0 |1096 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6082 |55 |0 |1097 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6083 |47 |0 |1071 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6084 |47 |20 |1061 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6085 |47 |20 |1066 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6086 |45 |20 |741 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6087 |43 |20 |745 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6088 |46 |20 |766 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6089 |66 |20 |1476 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6090 |67 |0 |1479 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6091 |67 |20 |1478 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6092 |67 |20 |1477 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6093 |3 |0 |903 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6094 |3 |0 |909 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6095 |3 |0 |918 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6096 |3 |0 |921 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6097 |3 |20 |888 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6098 |3 |20 |1218 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6099 |3 |20 |1215 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6100 |3 |20 |1221 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6101 |3 |20 |900 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6102 |30 |20 |899 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6103 |31 |20 |934 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6104 |32 |0 |937 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6105 |32 |0 |941 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6106 |32 |0 |947 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6107 |32 |0 |949 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6108 |32 |20 |927 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6109 |32 |20 |1226 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6110 |32 |20 |1224 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6111 |32 |20 |1228 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6112 |32 |20 |935 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6113 |33 |0 |957 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6114 |33 |0 |959 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6115 |33 |0 |962 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6116 |33 |0 |963 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6117 |33 |20 |953 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6118 |33 |20 |954 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6119 |33 |20 |955 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6120 |33 |20 |956 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6121 |33 |20 |952 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6122 |34 |20 |952 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6123 |29 |0 |881 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6124 |29 |20 |869 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6125 |29 |0 |877 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6126 |29 |0 |879 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6127 |29 |20 |873 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6128 |29 |20 |867 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6129 |29 |19 |29033 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6130 |29 |20 |865 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6131 |19 |0 |977 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6132 |19 |1 |29485 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6133 |19 |0 |979 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6134 |19 |0 |981 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6135 |19 |20 |965 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6136 |19 |20 |1230 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6137 |19 |20 |1232 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6138 |19 |20 |1247 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6139 |35 |20 |1246 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6140 |36 |20 |1248 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6141 |37 |0 |995 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6142 |37 |1 |29592 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6143 |37 |0 |997 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6144 |37 |0 |999 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6145 |37 |20 |983 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6146 |37 |20 |1234 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6147 |37 |20 |1236 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6148 |37 |20 |1249 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6149 |69 |3 |33570 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6150 |69 |3 |33585 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6151 |69 |3 |33580 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6152 |69 |3 |33591 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6153 |69 |3 |33592 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6154 |69 |3 |33594 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6155 |69 |0 |1489 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6156 |69 |0 |1491 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6157 |69 |0 |1490 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6158 |70 |3 |33621 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6159 |70 |3 |33636 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6160 |70 |3 |33631 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6161 |70 |3 |33642 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6162 |70 |3 |33643 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6163 |70 |3 |33645 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6164 |70 |0 |1492 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6165 |70 |0 |1494 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6166 |70 |0 |1493 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6167 |71 |3 |33672 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6168 |71 |3 |33687 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6169 |71 |3 |33682 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6170 |71 |3 |33693 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6171 |71 |3 |33694 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6172 |71 |3 |33696 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6173 |71 |0 |1495 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6174 |71 |0 |1497 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6175 |71 |0 |1496 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6176 |72 |3 |33723 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6177 |72 |3 |33738 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6178 |72 |3 |33733 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6179 |72 |3 |33744 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6180 |72 |3 |33745 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6181 |72 |3 |33747 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6182 |72 |0 |1498 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6183 |72 |0 |1500 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6184 |72 |0 |1499 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6185 |73 |3 |33774 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6186 |73 |3 |33789 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6187 |73 |3 |33784 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6188 |73 |3 |33795 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6189 |73 |3 |33796 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6190 |73 |3 |33798 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6191 |73 |0 |1501 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6192 |73 |0 |1503 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6193 |73 |0 |1502 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6194 |74 |3 |33825 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6195 |74 |3 |33840 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6196 |74 |3 |33835 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6197 |74 |3 |33846 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6198 |74 |3 |33847 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6199 |74 |3 |33849 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6200 |74 |0 |1504 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6201 |74 |0 |1506 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6202 |74 |0 |1505 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6203 |75 |3 |33876 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6204 |75 |3 |33891 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6205 |75 |3 |33886 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6206 |75 |3 |33897 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6207 |75 |3 |33898 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6208 |75 |3 |33900 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6209 |75 |0 |1507 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6210 |75 |0 |1509 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6211 |75 |0 |1508 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6212 |68 |3 |33434 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6213 |68 |3 |33449 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6214 |68 |3 |33444 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6215 |68 |3 |33455 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6216 |68 |3 |33456 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6217 |68 |3 |33458 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6218 |68 |0 |1510 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6219 |68 |0 |1482 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6220 |68 |0 |1481 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6221 |76 |3 |33932 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6222 |76 |3 |33947 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6223 |76 |3 |33942 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6224 |76 |3 |33953 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6225 |76 |3 |33954 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6226 |76 |3 |33956 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6227 |76 |0 |1511 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6228 |76 |0 |1513 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6229 |76 |0 |1512 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6230 |77 |3 |33983 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6231 |77 |3 |33998 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6232 |77 |3 |33993 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6233 |77 |3 |34004 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6234 |77 |3 |34005 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6235 |77 |3 |34007 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6236 |77 |0 |1514 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6237 |77 |0 |1516 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6238 |77 |0 |1515 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6239 |78 |3 |34034 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6240 |78 |3 |34049 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6241 |78 |3 |34044 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6242 |78 |3 |34055 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6243 |78 |3 |34056 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6244 |78 |3 |34058 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |6245 |78 |0 |1517 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6246 |78 |0 |1519 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |6247 |78 |0 |1518 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6248 |25 |0 |1174 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6249 |25 |0 |1176 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6250 |25 |20 |1172 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6251 |25 |20 |1173 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6252 |25 |0 |1175 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6253 |26 |0 |838 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6254 |26 |0 |839 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6255 |26 |20 |836 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6256 |26 |20 |837 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6257 |26 |0 |840 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6258 |59 |0 |1125 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6259 |59 |0 |1129 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6260 |59 |0 |1128 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6261 |59 |0 |1126 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6262 |59 |0 |1127 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6263 |48 |20 |1075 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6264 |49 |20 |1078 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6265 |49 |20 |1076 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6266 |49 |20 |1079 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6267 |49 |20 |1077 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6268 |50 |20 |1080 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6269 |51 |20 |1081 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6270 |52 |20 |1084 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6271 |52 |20 |1082 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6272 |52 |20 |1085 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6273 |52 |20 |1083 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6274 |53 |20 |1086 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6275 |27 |0 |841 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6276 |27 |0 |843 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6277 |27 |0 |842 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6278 |28 |0 |845 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6279 |28 |0 |847 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6280 |28 |0 |846 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6281 |62 |0 |1419 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6282 |62 |0 |1414 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6283 |62 |0 |1421 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6284 |62 |0 |1423 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6285 |62 |0 |1420 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6286 |63 |0 |1422 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6287 |63 |0 |1425 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6288 |63 |0 |1415 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6289 |63 |0 |1418 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6290 |63 |0 |1416 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6291 |63 |0 |1424 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6292 |64 |0 |1432 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6293 |64 |0 |1428 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6294 |64 |0 |1434 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6295 |64 |0 |1436 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6296 |64 |0 |1433 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6297 |65 |0 |1435 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6298 |65 |0 |1438 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6299 |65 |0 |1429 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6300 |65 |0 |1431 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6301 |65 |0 |1430 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6302 |65 |0 |1437 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6303 |22 |0 |806 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6304 |22 |0 |804 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6305 |22 |0 |805 |500 |100 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6306 |22 |0 |803 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6307 |21 |0 |802 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6308 |21 |0 |799 |500 |100 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6309 |21 |0 |800 |500 |114 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6310 |21 |0 |798 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6311 |21 |0 |797 |500 |160 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6312 |21 |0 |801 |500 |160 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6313 |17 |0 |532 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6314 |17 |0 |530 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6315 |17 |0 |531 |500 |100 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6316 |17 |0 |529 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6317 |4 |0 |392 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6318 |4 |0 |404 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6319 |4 |0 |406 |500 |114 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6320 |4 |0 |410 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6321 |4 |0 |527 |500 |160 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6322 |4 |0 |788 |500 |160 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6323 |5 |0 |469 |500 |148 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6324 |5 |0 |471 |500 |100 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6325 |5 |0 |498 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6326 |5 |0 |540 |500 |100 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6327 |7 |0 |463 |500 |120 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6328 |7 |0 |462 |500 |106 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6329 |7 |0 |541 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6330 |7 |0 |464 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6331 |6 |0 |475 |500 |114 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6332 |6 |0 |474 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6333 |6 |0 |542 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6334 |18 |0 |487 |750 |100 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6335 |18 |0 |543 |750 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6336 |9 |0 |457 |500 |120 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6337 |9 |0 |456 |500 |106 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6338 |9 |0 |544 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6339 |9 |0 |458 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6340 |9 |1 |22838 |500 |100 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6341 |9 |1 |22837 |500 |100 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6342 |10 |0 |481 |500 |114 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6343 |10 |0 |480 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |6344 |10 |0 |545 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6345 |10 |0 |482 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6346 |10 |1 |22998 |500 |100 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6347 |10 |1 |22997 |500 |100 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6348 |57 |0 |1112 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6349 |57 |0 |1113 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6350 |57 |0 |1110 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6351 |57 |0 |1109 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6352 |57 |0 |1111 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6353 |57 |0 |1114 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6354 |60 |0 |1139 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6355 |60 |0 |1140 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6356 |60 |0 |1137 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6357 |60 |0 |1136 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6358 |60 |0 |1138 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6359 |60 |0 |1141 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6360 |58 |0 |1118 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6361 |58 |0 |1119 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6362 |58 |0 |1116 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6363 |58 |0 |1115 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6364 |58 |0 |1117 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6365 |58 |0 |1120 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6366 |23 |20 |821 |500 |200 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6367 |23 |20 |816 |500 |200 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6368 |23 |20 |814 |500 |200 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6369 |23 |20 |820 |500 |200 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6370 |23 |20 |817 |500 |200 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6371 |23 |20 |815 |500 |200 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6372 |23 |20 |818 |500 |200 |0 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6373 |23 |20 |819 |500 |200 |1 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6374 |24 |0 |824 |500 |200 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6375 |24 |0 |827 |500 |200 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6376 |24 |0 |825 |500 |200 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6377 |24 |0 |828 |500 |200 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6378 |24 |0 |826 |500 |200 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6379 |24 |0 |829 |500 |200 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6380 |24 |0 |822 |500 |200 |0 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6381 |24 |0 |823 |500 |200 |1 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |6382 |61 |20 |1212 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6383 |61 |20 |1210 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6384 |61 |20 |1213 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6385 |61 |20 |1211 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6386 |54 |0 |1091 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6387 |54 |0 |1095 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6388 |54 |0 |1092 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6389 |54 |0 |1094 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6390 |54 |0 |1099 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6391 |54 |0 |1100 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6392 |54 |0 |1101 |500 |100 |0 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6393 |54 |0 |1102 |500 |100 |1 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6394 |54 |20 |1090 |500 |100 |0 |4 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6395 |55 |0 |1093 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6396 |55 |0 |1098 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6397 |55 |0 |1096 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6398 |55 |0 |1097 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6399 |47 |0 |1071 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6400 |47 |20 |1061 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6401 |47 |20 |1066 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6402 |45 |20 |741 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6403 |43 |20 |745 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6404 |46 |20 |766 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6405 |66 |20 |1476 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6406 |67 |0 |1479 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6407 |67 |20 |1478 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6408 |67 |20 |1477 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6409 |3 |0 |903 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6410 |3 |0 |909 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6411 |3 |0 |918 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6412 |3 |0 |921 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6413 |3 |20 |888 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6414 |3 |20 |1218 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6415 |3 |20 |1215 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6416 |3 |20 |1221 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6417 |3 |20 |900 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6418 |30 |20 |899 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6419 |31 |20 |934 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6420 |32 |0 |937 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6421 |32 |0 |941 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6422 |32 |0 |947 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6423 |32 |0 |949 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6424 |32 |20 |927 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6425 |32 |20 |1226 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6426 |32 |20 |1224 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6427 |32 |20 |1228 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6428 |32 |20 |935 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6429 |33 |0 |957 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6430 |33 |0 |959 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6431 |33 |0 |962 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6432 |33 |0 |963 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6433 |33 |20 |953 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6434 |33 |20 |954 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6435 |33 |20 |955 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6436 |33 |20 |956 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6437 |33 |20 |952 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6438 |34 |20 |952 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6439 |29 |0 |881 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6440 |29 |20 |869 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6441 |29 |0 |877 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6442 |29 |0 |879 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6443 |29 |20 |873 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6444 |29 |20 |867 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6445 |29 |19 |29033 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6446 |29 |20 |865 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6447 |19 |0 |977 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6448 |19 |1 |29485 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6449 |19 |0 |979 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6450 |19 |0 |981 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6451 |19 |20 |965 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6452 |19 |20 |1230 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6453 |19 |20 |1232 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6454 |19 |20 |1247 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6455 |35 |20 |1246 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6456 |36 |20 |1248 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6457 |37 |0 |995 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6458 |37 |1 |29592 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6459 |37 |0 |997 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6460 |37 |0 |999 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6461 |37 |20 |983 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6462 |37 |20 |1234 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6463 |37 |20 |1236 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6464 |37 |20 |1249 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6465 |69 |3 |33570 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6466 |69 |3 |33585 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6467 |69 |3 |33580 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6468 |69 |3 |33591 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6469 |69 |3 |33592 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6470 |69 |3 |33594 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6471 |69 |0 |1489 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6472 |69 |0 |1491 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6473 |69 |0 |1490 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6474 |70 |3 |33621 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6475 |70 |3 |33636 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6476 |70 |3 |33631 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6477 |70 |3 |33642 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6478 |70 |3 |33643 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6479 |70 |3 |33645 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6480 |70 |0 |1492 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6481 |70 |0 |1494 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6482 |70 |0 |1493 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6483 |71 |3 |33672 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6484 |71 |3 |33687 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6485 |71 |3 |33682 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6486 |71 |3 |33693 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6487 |71 |3 |33694 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6488 |71 |3 |33696 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6489 |71 |0 |1495 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6490 |71 |0 |1497 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6491 |71 |0 |1496 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6492 |72 |3 |33723 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6493 |72 |3 |33738 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6494 |72 |3 |33733 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6495 |72 |3 |33744 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6496 |72 |3 |33745 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6497 |72 |3 |33747 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6498 |72 |0 |1498 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6499 |72 |0 |1500 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6500 |72 |0 |1499 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6501 |73 |3 |33774 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6502 |73 |3 |33789 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6503 |73 |3 |33784 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6504 |73 |3 |33795 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6505 |73 |3 |33796 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6506 |73 |3 |33798 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6507 |73 |0 |1501 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6508 |73 |0 |1503 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6509 |73 |0 |1502 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6510 |74 |3 |33825 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6511 |74 |3 |33840 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6512 |74 |3 |33835 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6513 |74 |3 |33846 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6514 |74 |3 |33847 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6515 |74 |3 |33849 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6516 |74 |0 |1504 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6517 |74 |0 |1506 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6518 |74 |0 |1505 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6519 |75 |3 |33876 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6520 |75 |3 |33891 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6521 |75 |3 |33886 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6522 |75 |3 |33897 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6523 |75 |3 |33898 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6524 |75 |3 |33900 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6525 |75 |0 |1507 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6526 |75 |0 |1509 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6527 |75 |0 |1508 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6528 |68 |3 |33434 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6529 |68 |3 |33449 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6530 |68 |3 |33444 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6531 |68 |3 |33455 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6532 |68 |3 |33456 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6533 |68 |3 |33458 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6534 |68 |0 |1510 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6535 |68 |0 |1482 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6536 |68 |0 |1481 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6537 |76 |3 |33932 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6538 |76 |3 |33947 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6539 |76 |3 |33942 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6540 |76 |3 |33953 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6541 |76 |3 |33954 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6542 |76 |3 |33956 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6543 |76 |0 |1511 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6544 |76 |0 |1513 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6545 |76 |0 |1512 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6546 |77 |3 |33983 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6547 |77 |3 |33998 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6548 |77 |3 |33993 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6549 |77 |3 |34004 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6550 |77 |3 |34005 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6551 |77 |3 |34007 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6552 |77 |0 |1514 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6553 |77 |0 |1516 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6554 |77 |0 |1515 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6555 |78 |3 |34034 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6556 |78 |3 |34049 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6557 |78 |3 |34044 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6558 |78 |3 |34055 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6559 |78 |3 |34056 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6560 |78 |3 |34058 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |6561 |78 |0 |1517 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6562 |78 |0 |1519 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |6563 |78 |0 |1518 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
TABLE |applications
FIELDS|applicationid|hostid|name |flags|
@@ -3953,42 +3953,38 @@ ROW |33430 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}
ROW |33431 |15 | |10251 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[hrStorageUsed.{#SNMPINDEX}]")/last("vm.memory.total[hrStorageSize.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33433 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10371 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33434 |20 |1.3.6.1.2.1.1.3.0 |10371 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33435 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10371 |Serial number |system.sn[upsAdvIdentSerialNumber] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33435 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10371 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33436 |20 |1.3.6.1.2.1.1.2.0 |10371 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33437 |20 |1.3.6.1.2.1.1.5.0 |10371 |System name |system.name |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33438 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10371 |Model |system.model[upsBasicIdentModel] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33438 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10371 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33439 |20 |1.3.6.1.2.1.1.6.0 |10371 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33440 |20 |1.3.6.1.2.1.1.1.0 |10371 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33441 |20 |1.3.6.1.2.1.1.4.0 |10371 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33442 |17 | |10371 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33443 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10371 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33444 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10371 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33444 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10371 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33445 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10371 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33446 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10371 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33446 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10371 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33447 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10371 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33448 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10371 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33449 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10371 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33450 |3 | |10371 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33451 |3 | |10371 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33452 |3 | |10371 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33453 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10371 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33454 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10371 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33455 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10371 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33456 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10371 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33457 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10371 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33458 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10371 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33458 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10371 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33459 |5 | |10371 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33460 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10371 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33461 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10371 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33462 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10371 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33463 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10371 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33464 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10371 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33465 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10371 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33466 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10371 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33465 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10371 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33466 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10371 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33467 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10371 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33468 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10371 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33469 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10371 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33470 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10371 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33470 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10371 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33471 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10371 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33472 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10371 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33473 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10371 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4026,30 +4022,26 @@ ROW |33525 |15 |
ROW |33568 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10373 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33569 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10373 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33570 |20 |1.3.6.1.2.1.1.3.0 |10373 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33571 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10373 |Serial number |system.sn[upsAdvIdentSerialNumber] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33571 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10373 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33572 |20 |1.3.6.1.2.1.1.2.0 |10373 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33573 |20 |1.3.6.1.2.1.1.5.0 |10373 |System name |system.name |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33574 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10373 |Model |system.model[upsBasicIdentModel] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33574 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10373 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33575 |20 |1.3.6.1.2.1.1.6.0 |10373 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33576 |20 |1.3.6.1.2.1.1.1.0 |10373 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33577 |20 |1.3.6.1.2.1.1.4.0 |10373 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33578 |17 | |10373 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33579 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10373 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33580 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10373 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33580 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10373 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33581 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10373 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33582 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10373 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33582 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10373 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33583 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10373 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33584 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10373 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33585 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10373 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33586 |3 | |10373 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33587 |3 | |10373 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33588 |3 | |10373 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33589 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10373 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33590 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10373 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33591 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10373 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33592 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10373 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33593 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10373 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33594 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10373 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33594 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10373 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33595 |5 | |10373 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33596 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10373 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33597 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10373 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4057,12 +4049,12 @@ ROW |33598 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2
ROW |33599 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10373 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33600 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10373 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33601 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10373 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33602 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10373 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33603 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10373 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33602 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10373 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33603 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10373 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33604 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10373 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33605 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10373 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33606 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10373 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33607 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10373 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33607 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10373 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33608 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10373 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33609 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10373 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33610 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10373 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4077,30 +4069,26 @@ ROW |33618 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX}
ROW |33619 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10374 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33620 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10374 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33621 |20 |1.3.6.1.2.1.1.3.0 |10374 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33622 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10374 |Serial number |system.sn[upsAdvIdentSerialNumber] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33622 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10374 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33623 |20 |1.3.6.1.2.1.1.2.0 |10374 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33624 |20 |1.3.6.1.2.1.1.5.0 |10374 |System name |system.name |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33625 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10374 |Model |system.model[upsBasicIdentModel] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33625 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10374 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33626 |20 |1.3.6.1.2.1.1.6.0 |10374 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33627 |20 |1.3.6.1.2.1.1.1.0 |10374 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33628 |20 |1.3.6.1.2.1.1.4.0 |10374 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33629 |17 | |10374 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33630 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10374 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33631 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10374 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33631 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10374 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33632 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10374 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33633 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10374 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33633 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10374 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33634 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10374 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33635 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10374 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33636 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10374 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33637 |3 | |10374 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33638 |3 | |10374 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33639 |3 | |10374 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33640 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10374 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33641 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10374 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33642 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10374 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33643 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10374 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33644 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10374 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33645 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10374 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33645 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10374 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33646 |5 | |10374 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33647 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10374 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33648 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10374 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4108,12 +4096,12 @@ ROW |33649 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2
ROW |33650 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10374 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33651 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10374 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33652 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10374 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33653 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10374 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33654 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10374 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33653 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10374 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33654 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10374 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33655 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10374 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33656 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10374 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33657 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10374 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33658 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10374 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33658 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10374 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33659 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10374 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33660 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10374 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33661 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10374 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4128,30 +4116,26 @@ ROW |33669 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX}
ROW |33670 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10375 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33671 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10375 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33672 |20 |1.3.6.1.2.1.1.3.0 |10375 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33673 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10375 |Serial number |system.sn[upsAdvIdentSerialNumber] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33673 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10375 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33674 |20 |1.3.6.1.2.1.1.2.0 |10375 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33675 |20 |1.3.6.1.2.1.1.5.0 |10375 |System name |system.name |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33676 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10375 |Model |system.model[upsBasicIdentModel] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33676 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10375 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33677 |20 |1.3.6.1.2.1.1.6.0 |10375 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33678 |20 |1.3.6.1.2.1.1.1.0 |10375 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33679 |20 |1.3.6.1.2.1.1.4.0 |10375 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33680 |17 | |10375 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33681 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10375 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33682 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10375 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33682 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10375 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33683 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10375 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33684 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10375 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33684 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10375 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33685 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10375 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33686 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10375 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33687 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10375 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33688 |3 | |10375 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33689 |3 | |10375 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33690 |3 | |10375 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33691 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10375 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33692 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10375 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33693 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10375 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33694 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10375 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33695 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10375 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33696 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10375 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33696 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10375 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33697 |5 | |10375 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33698 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10375 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33699 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10375 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4159,12 +4143,12 @@ ROW |33700 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2
ROW |33701 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10375 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33702 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10375 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33703 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10375 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33704 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10375 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33705 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10375 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33704 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10375 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33705 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10375 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33706 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10375 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33707 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10375 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33708 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10375 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33709 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10375 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33709 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10375 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33710 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10375 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33711 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10375 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33712 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10375 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4179,30 +4163,26 @@ ROW |33720 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX}
ROW |33721 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10376 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33722 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10376 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33723 |20 |1.3.6.1.2.1.1.3.0 |10376 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33724 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10376 |Serial number |system.sn[upsAdvIdentSerialNumber] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33724 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10376 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33725 |20 |1.3.6.1.2.1.1.2.0 |10376 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33726 |20 |1.3.6.1.2.1.1.5.0 |10376 |System name |system.name |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33727 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10376 |Model |system.model[upsBasicIdentModel] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33727 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10376 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33728 |20 |1.3.6.1.2.1.1.6.0 |10376 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33729 |20 |1.3.6.1.2.1.1.1.0 |10376 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33730 |20 |1.3.6.1.2.1.1.4.0 |10376 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33731 |17 | |10376 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33732 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10376 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33733 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10376 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33733 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10376 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33734 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10376 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33735 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10376 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33735 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10376 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33736 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10376 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33737 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10376 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33738 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10376 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33739 |3 | |10376 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33740 |3 | |10376 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33741 |3 | |10376 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33742 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10376 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33743 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10376 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33744 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10376 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33745 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10376 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33746 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10376 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33747 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10376 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33747 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10376 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33748 |5 | |10376 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33749 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10376 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33750 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10376 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4210,12 +4190,12 @@ ROW |33751 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2
ROW |33752 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10376 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33753 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10376 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33754 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10376 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33755 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10376 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33756 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10376 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33755 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10376 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33756 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10376 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33757 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10376 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33758 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10376 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33759 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10376 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33760 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10376 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33760 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10376 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33761 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10376 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33762 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10376 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33763 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10376 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4230,30 +4210,26 @@ ROW |33771 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX}
ROW |33772 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10377 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33773 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10377 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33774 |20 |1.3.6.1.2.1.1.3.0 |10377 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33775 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10377 |Serial number |system.sn[upsAdvIdentSerialNumber] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33775 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10377 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33776 |20 |1.3.6.1.2.1.1.2.0 |10377 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33777 |20 |1.3.6.1.2.1.1.5.0 |10377 |System name |system.name |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33778 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10377 |Model |system.model[upsBasicIdentModel] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33778 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10377 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33779 |20 |1.3.6.1.2.1.1.6.0 |10377 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33780 |20 |1.3.6.1.2.1.1.1.0 |10377 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33781 |20 |1.3.6.1.2.1.1.4.0 |10377 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33782 |17 | |10377 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33783 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10377 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33784 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10377 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33784 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10377 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33785 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10377 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33786 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10377 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33786 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10377 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33787 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10377 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33788 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10377 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33789 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10377 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33790 |3 | |10377 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33791 |3 | |10377 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33792 |3 | |10377 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33793 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10377 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33794 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10377 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33795 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10377 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33796 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10377 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33797 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10377 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33798 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10377 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33798 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10377 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33799 |5 | |10377 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33800 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10377 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33801 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10377 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4261,12 +4237,12 @@ ROW |33802 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2
ROW |33803 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10377 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33804 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10377 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33805 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10377 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33806 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10377 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33807 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10377 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33806 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10377 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33807 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10377 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33808 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10377 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33809 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10377 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33810 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10377 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33811 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10377 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33811 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10377 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33812 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10377 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33813 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10377 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33814 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10377 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4281,30 +4257,26 @@ ROW |33822 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX}
ROW |33823 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10378 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33824 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10378 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33825 |20 |1.3.6.1.2.1.1.3.0 |10378 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33826 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10378 |Serial number |system.sn[upsAdvIdentSerialNumber] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33826 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10378 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33827 |20 |1.3.6.1.2.1.1.2.0 |10378 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33828 |20 |1.3.6.1.2.1.1.5.0 |10378 |System name |system.name |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33829 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10378 |Model |system.model[upsBasicIdentModel] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33829 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10378 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33830 |20 |1.3.6.1.2.1.1.6.0 |10378 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33831 |20 |1.3.6.1.2.1.1.1.0 |10378 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33832 |20 |1.3.6.1.2.1.1.4.0 |10378 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33833 |17 | |10378 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33834 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10378 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33835 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10378 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33835 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10378 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33836 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10378 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33837 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10378 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33837 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10378 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33838 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10378 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33839 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10378 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33840 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10378 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33841 |3 | |10378 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33842 |3 | |10378 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33843 |3 | |10378 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33844 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10378 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33845 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10378 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33846 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10378 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33847 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10378 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33848 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10378 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33849 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10378 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33849 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10378 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33850 |5 | |10378 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33851 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10378 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33852 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10378 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4312,12 +4284,12 @@ ROW |33853 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2
ROW |33854 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10378 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33855 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10378 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33856 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10378 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33857 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10378 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33858 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10378 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33857 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10378 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33858 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10378 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33859 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10378 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33860 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10378 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33861 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10378 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33862 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10378 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33862 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10378 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33863 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10378 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33864 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10378 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33865 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10378 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4332,30 +4304,26 @@ ROW |33873 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX}
ROW |33874 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10379 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33875 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10379 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33876 |20 |1.3.6.1.2.1.1.3.0 |10379 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33877 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10379 |Serial number |system.sn[upsAdvIdentSerialNumber] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33877 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10379 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33878 |20 |1.3.6.1.2.1.1.2.0 |10379 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33879 |20 |1.3.6.1.2.1.1.5.0 |10379 |System name |system.name |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33880 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10379 |Model |system.model[upsBasicIdentModel] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33880 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10379 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33881 |20 |1.3.6.1.2.1.1.6.0 |10379 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33882 |20 |1.3.6.1.2.1.1.1.0 |10379 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33883 |20 |1.3.6.1.2.1.1.4.0 |10379 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33884 |17 | |10379 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33885 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10379 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33886 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10379 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33886 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10379 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33887 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10379 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33888 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10379 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33888 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10379 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33889 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10379 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33890 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10379 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33891 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10379 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33892 |3 | |10379 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33893 |3 | |10379 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33894 |3 | |10379 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33895 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10379 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33896 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10379 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33897 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10379 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33898 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10379 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33899 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10379 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33900 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10379 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33900 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10379 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33901 |5 | |10379 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33902 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10379 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33903 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10379 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4363,12 +4331,12 @@ ROW |33904 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2
ROW |33905 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10379 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33906 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10379 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33907 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10379 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33908 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10379 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33909 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10379 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33908 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10379 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33909 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10379 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33910 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10379 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33911 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10379 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33912 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10379 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33913 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10379 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33913 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10379 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33914 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10379 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33915 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10379 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33916 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10379 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4388,30 +4356,26 @@ ROW |33929 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX}
ROW |33930 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10380 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33931 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10380 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33932 |20 |1.3.6.1.2.1.1.3.0 |10380 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33933 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10380 |Serial number |system.sn[upsAdvIdentSerialNumber] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33933 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10380 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33934 |20 |1.3.6.1.2.1.1.2.0 |10380 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33935 |20 |1.3.6.1.2.1.1.5.0 |10380 |System name |system.name |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33936 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10380 |Model |system.model[upsBasicIdentModel] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33936 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10380 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33937 |20 |1.3.6.1.2.1.1.6.0 |10380 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33938 |20 |1.3.6.1.2.1.1.1.0 |10380 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33939 |20 |1.3.6.1.2.1.1.4.0 |10380 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33940 |17 | |10380 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33941 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10380 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33942 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10380 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33942 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10380 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33943 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10380 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33944 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10380 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33944 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10380 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33945 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10380 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33946 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10380 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33947 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10380 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33948 |3 | |10380 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33949 |3 | |10380 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33950 |3 | |10380 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33951 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10380 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33952 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10380 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33953 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10380 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33954 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10380 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33955 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10380 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33956 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10380 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33956 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10380 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33957 |5 | |10380 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33958 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10380 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33959 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10380 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4419,12 +4383,12 @@ ROW |33960 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2
ROW |33961 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10380 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33962 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10380 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33963 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10380 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33964 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10380 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33965 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10380 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33964 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10380 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33965 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10380 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33966 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10380 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33967 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10380 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33968 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10380 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33969 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10380 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33969 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10380 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33970 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10380 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33971 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10380 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33972 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10380 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4439,30 +4403,26 @@ ROW |33980 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX}
ROW |33981 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10381 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33982 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10381 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33983 |20 |1.3.6.1.2.1.1.3.0 |10381 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33984 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10381 |Serial number |system.sn[upsAdvIdentSerialNumber] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33984 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10381 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33985 |20 |1.3.6.1.2.1.1.2.0 |10381 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33986 |20 |1.3.6.1.2.1.1.5.0 |10381 |System name |system.name |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33987 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10381 |Model |system.model[upsBasicIdentModel] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33987 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10381 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33988 |20 |1.3.6.1.2.1.1.6.0 |10381 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33989 |20 |1.3.6.1.2.1.1.1.0 |10381 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33990 |20 |1.3.6.1.2.1.1.4.0 |10381 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33991 |17 | |10381 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33992 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10381 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33993 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10381 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33993 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10381 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33994 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10381 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33995 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10381 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33995 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10381 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33996 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10381 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33997 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10381 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33998 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10381 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33999 |3 | |10381 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34000 |3 | |10381 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34001 |3 | |10381 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34002 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10381 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34003 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10381 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34004 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10381 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34005 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10381 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34006 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10381 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34007 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10381 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34007 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10381 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34008 |5 | |10381 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34009 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10381 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34010 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10381 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4470,12 +4430,12 @@ ROW |34011 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2
ROW |34012 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10381 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34013 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10381 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34014 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10381 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34015 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10381 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34016 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10381 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34015 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10381 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34016 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10381 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34017 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10381 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34018 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10381 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34019 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10381 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34020 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10381 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34020 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10381 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34021 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10381 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34022 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10381 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34023 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10381 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4490,30 +4450,26 @@ ROW |34031 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX}
ROW |34032 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10382 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34033 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10382 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34034 |20 |1.3.6.1.2.1.1.3.0 |10382 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34035 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10382 |Serial number |system.sn[upsAdvIdentSerialNumber] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34035 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10382 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34036 |20 |1.3.6.1.2.1.1.2.0 |10382 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34037 |20 |1.3.6.1.2.1.1.5.0 |10382 |System name |system.name |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34038 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10382 |Model |system.model[upsBasicIdentModel] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34038 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10382 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34039 |20 |1.3.6.1.2.1.1.6.0 |10382 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34040 |20 |1.3.6.1.2.1.1.1.0 |10382 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34041 |20 |1.3.6.1.2.1.1.4.0 |10382 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34042 |17 | |10382 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34043 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10382 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34044 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10382 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34044 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10382 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34045 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10382 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34046 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10382 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34046 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10382 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34047 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10382 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34048 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10382 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34049 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10382 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34050 |3 | |10382 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34051 |3 | |10382 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34052 |3 | |10382 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34053 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10382 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34054 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10382 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34055 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10382 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34056 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10382 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34057 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10382 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34058 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10382 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34058 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10382 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34059 |5 | |10382 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34060 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10382 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34061 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10382 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4521,12 +4477,12 @@ ROW |34062 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2
ROW |34063 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10382 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34064 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10382 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34065 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10382 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34066 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10382 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34067 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10382 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34066 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10382 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34067 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10382 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34068 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10382 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34069 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10382 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34070 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10382 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34071 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10382 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34071 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10382 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34072 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10382 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34073 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10382 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34074 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10382 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4538,6 +4494,17 @@ ROW |34079 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX}
ROW |34080 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10382 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34081 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10382 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34082 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10382 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34083 |20 |1.3.6.1.2.1.1.5.0 |10373 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34084 |20 |1.3.6.1.2.1.1.5.0 |10374 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34085 |20 |1.3.6.1.2.1.1.5.0 |10375 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34086 |20 |1.3.6.1.2.1.1.5.0 |10376 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34087 |20 |1.3.6.1.2.1.1.5.0 |10377 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34088 |20 |1.3.6.1.2.1.1.5.0 |10378 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34089 |20 |1.3.6.1.2.1.1.5.0 |10379 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34090 |20 |1.3.6.1.2.1.1.5.0 |10371 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34091 |20 |1.3.6.1.2.1.1.5.0 |10380 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34092 |20 |1.3.6.1.2.1.1.5.0 |10381 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34093 |20 |1.3.6.1.2.1.1.5.0 |10382 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
TABLE |items
FIELDS|itemid|type|snmp_oid|hostid|name |key_ |delay|history|trends|status|value_type|trapper_hosts|units |formula|logtimefmt|templateid|valuemapid|params|ipmi_sensor|authtype|username|password|publickey|privatekey|flags|interfaceid|description |inventory_link|lifetime|evaltype|jmx_endpoint|master_itemid|timeout|url |query_fields|posts|status_codes|follow_redirects|post_type|headers|retrieve_mode|request_method|output_format|verify_peer|verify_host|allow_traps|discover|
@@ -9649,9 +9616,6 @@ ROW |18177 |{21623}=2
ROW |18178 |{21624}=4 |Battery has an internal error condition | |0 |3 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18179 |{21625}=3 |Battery is Low | |0 |3 |The UPS will be unable to sustain the current load, and its services will be lost if power is not restored. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18180 |{21626} > {$BATTERY.TEMP.MAX.WARN} |Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current temperature: {ITEM.LASTVALUE1} |0 |
-ROW |18181 |{21627}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |18182 |{21628}>{$ICMP.LOSS.WARN} and {21628}<100 |High ICMP ping loss | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 |
-ROW |18183 |{21629}>{$ICMP.RESPONSE_TIME.WARN} |High ICMP ping response time | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
ROW |18184 |{21630} > 0 and ({21630} > {$UPS.INPUT_FREQ.MAX.WARN} or {21631} < {$UPS.INPUT_FREQ.MIN.WARN}) |Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current frequency: {ITEM.LASTVALUE1} |0 |
ROW |18185 |{21632} > 0 and ({21632} > {$UPS.INPUT_VOLT.MAX.WARN} or {21633} < {$UPS.INPUT_VOLT.MIN.WARN}) |Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current voltage: {ITEM.LASTVALUE1} |0 |
ROW |18186 |{21634} > {$UPS.OUTPUT.MAX.WARN} |Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD}) | |0 |4 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 |Current load: {ITEM.LASTVALUE1} |0 |
@@ -9666,7 +9630,6 @@ ROW |18194 |{21642}=3
ROW |18195 |{21643}=7 |UPS is Off | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18196 |{21644}=16 |UPS is Emergency Static Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18197 |{21645}=10 |UPS is Hardware Failure Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |18198 |{21646}=1 and {21647}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |18199 |{21648}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |18200 |{21649}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |18201 |{21650}=1 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay | |0 |2 |The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |NULL |0 |2 |0 | |0 | |0 |Current bit set: {ITEM.LASTVALUE1} |0 |
@@ -9705,9 +9668,6 @@ ROW |18234 |{21697}=2
ROW |18235 |{21698}=4 |Battery has an internal error condition | |0 |3 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18236 |{21699}=3 |Battery is Low | |0 |3 |The UPS will be unable to sustain the current load, and its services will be lost if power is not restored. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18237 |{21700} > {$BATTERY.TEMP.MAX.WARN} |Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current temperature: {ITEM.LASTVALUE1} |0 |
-ROW |18238 |{21701}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |18239 |{21702}>{$ICMP.LOSS.WARN} and {21702}<100 |High ICMP ping loss | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 |
-ROW |18240 |{21703}>{$ICMP.RESPONSE_TIME.WARN} |High ICMP ping response time | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
ROW |18241 |{21704} > 0 and ({21704} > {$UPS.INPUT_FREQ.MAX.WARN} or {21705} < {$UPS.INPUT_FREQ.MIN.WARN}) |Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current frequency: {ITEM.LASTVALUE1} |0 |
ROW |18242 |{21706} > 0 and ({21706} > {$UPS.INPUT_VOLT.MAX.WARN} or {21707} < {$UPS.INPUT_VOLT.MIN.WARN}) |Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current voltage: {ITEM.LASTVALUE1} |0 |
ROW |18243 |{21708} > {$UPS.OUTPUT.MAX.WARN} |Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD}) | |0 |4 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 |Current load: {ITEM.LASTVALUE1} |0 |
@@ -9722,7 +9682,6 @@ ROW |18251 |{21716}=3
ROW |18252 |{21717}=7 |UPS is Off | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18253 |{21718}=16 |UPS is Emergency Static Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18254 |{21719}=10 |UPS is Hardware Failure Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |18255 |{21720}=1 and {21721}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |18256 |{21722}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |18257 |{21723}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |18258 |{21724}=1 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay | |0 |2 |The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |NULL |0 |2 |0 | |0 | |0 |Current bit set: {ITEM.LASTVALUE1} |0 |
@@ -9741,9 +9700,6 @@ ROW |18270 |{21738}=2
ROW |18271 |{21739}=4 |Battery has an internal error condition | |0 |3 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18272 |{21740}=3 |Battery is Low | |0 |3 |The UPS will be unable to sustain the current load, and its services will be lost if power is not restored. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18273 |{21741} > {$BATTERY.TEMP.MAX.WARN} |Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current temperature: {ITEM.LASTVALUE1} |0 |
-ROW |18274 |{21742}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |18275 |{21743}>{$ICMP.LOSS.WARN} and {21743}<100 |High ICMP ping loss | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 |
-ROW |18276 |{21744}>{$ICMP.RESPONSE_TIME.WARN} |High ICMP ping response time | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
ROW |18277 |{21745} > 0 and ({21745} > {$UPS.INPUT_FREQ.MAX.WARN} or {21746} < {$UPS.INPUT_FREQ.MIN.WARN}) |Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current frequency: {ITEM.LASTVALUE1} |0 |
ROW |18278 |{21747} > 0 and ({21747} > {$UPS.INPUT_VOLT.MAX.WARN} or {21748} < {$UPS.INPUT_VOLT.MIN.WARN}) |Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current voltage: {ITEM.LASTVALUE1} |0 |
ROW |18279 |{21749} > {$UPS.OUTPUT.MAX.WARN} |Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD}) | |0 |4 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 |Current load: {ITEM.LASTVALUE1} |0 |
@@ -9758,7 +9714,6 @@ ROW |18287 |{21757}=3
ROW |18288 |{21758}=7 |UPS is Off | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18289 |{21759}=16 |UPS is Emergency Static Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18290 |{21760}=10 |UPS is Hardware Failure Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |18291 |{21761}=1 and {21762}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |18292 |{21763}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |18293 |{21764}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |18294 |{21765}=1 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay | |0 |2 |The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |NULL |0 |2 |0 | |0 | |0 |Current bit set: {ITEM.LASTVALUE1} |0 |
@@ -9777,9 +9732,6 @@ ROW |18306 |{21779}=2
ROW |18307 |{21780}=4 |Battery has an internal error condition | |0 |3 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18308 |{21781}=3 |Battery is Low | |0 |3 |The UPS will be unable to sustain the current load, and its services will be lost if power is not restored. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18309 |{21782} > {$BATTERY.TEMP.MAX.WARN} |Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current temperature: {ITEM.LASTVALUE1} |0 |
-ROW |18310 |{21783}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |18311 |{21784}>{$ICMP.LOSS.WARN} and {21784}<100 |High ICMP ping loss | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 |
-ROW |18312 |{21785}>{$ICMP.RESPONSE_TIME.WARN} |High ICMP ping response time | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
ROW |18313 |{21786} > 0 and ({21786} > {$UPS.INPUT_FREQ.MAX.WARN} or {21787} < {$UPS.INPUT_FREQ.MIN.WARN}) |Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current frequency: {ITEM.LASTVALUE1} |0 |
ROW |18314 |{21788} > 0 and ({21788} > {$UPS.INPUT_VOLT.MAX.WARN} or {21789} < {$UPS.INPUT_VOLT.MIN.WARN}) |Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current voltage: {ITEM.LASTVALUE1} |0 |
ROW |18315 |{21790} > {$UPS.OUTPUT.MAX.WARN} |Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD}) | |0 |4 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 |Current load: {ITEM.LASTVALUE1} |0 |
@@ -9794,7 +9746,6 @@ ROW |18323 |{21798}=3
ROW |18324 |{21799}=7 |UPS is Off | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18325 |{21800}=16 |UPS is Emergency Static Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18326 |{21801}=10 |UPS is Hardware Failure Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |18327 |{21802}=1 and {21803}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |18328 |{21804}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |18329 |{21805}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |18330 |{21806}=1 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay | |0 |2 |The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |NULL |0 |2 |0 | |0 | |0 |Current bit set: {ITEM.LASTVALUE1} |0 |
@@ -9813,9 +9764,6 @@ ROW |18342 |{21820}=2
ROW |18343 |{21821}=4 |Battery has an internal error condition | |0 |3 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18344 |{21822}=3 |Battery is Low | |0 |3 |The UPS will be unable to sustain the current load, and its services will be lost if power is not restored. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18345 |{21823} > {$BATTERY.TEMP.MAX.WARN} |Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current temperature: {ITEM.LASTVALUE1} |0 |
-ROW |18346 |{21824}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |18347 |{21825}>{$ICMP.LOSS.WARN} and {21825}<100 |High ICMP ping loss | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 |
-ROW |18348 |{21826}>{$ICMP.RESPONSE_TIME.WARN} |High ICMP ping response time | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
ROW |18349 |{21827} > 0 and ({21827} > {$UPS.INPUT_FREQ.MAX.WARN} or {21828} < {$UPS.INPUT_FREQ.MIN.WARN}) |Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current frequency: {ITEM.LASTVALUE1} |0 |
ROW |18350 |{21829} > 0 and ({21829} > {$UPS.INPUT_VOLT.MAX.WARN} or {21830} < {$UPS.INPUT_VOLT.MIN.WARN}) |Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current voltage: {ITEM.LASTVALUE1} |0 |
ROW |18351 |{21831} > {$UPS.OUTPUT.MAX.WARN} |Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD}) | |0 |4 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 |Current load: {ITEM.LASTVALUE1} |0 |
@@ -9830,7 +9778,6 @@ ROW |18359 |{21839}=3
ROW |18360 |{21840}=7 |UPS is Off | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18361 |{21841}=16 |UPS is Emergency Static Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18362 |{21842}=10 |UPS is Hardware Failure Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |18363 |{21843}=1 and {21844}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |18364 |{21845}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |18365 |{21846}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |18366 |{21847}=1 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay | |0 |2 |The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |NULL |0 |2 |0 | |0 | |0 |Current bit set: {ITEM.LASTVALUE1} |0 |
@@ -9849,9 +9796,6 @@ ROW |18378 |{21861}=2
ROW |18379 |{21862}=4 |Battery has an internal error condition | |0 |3 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18380 |{21863}=3 |Battery is Low | |0 |3 |The UPS will be unable to sustain the current load, and its services will be lost if power is not restored. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18381 |{21864} > {$BATTERY.TEMP.MAX.WARN} |Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current temperature: {ITEM.LASTVALUE1} |0 |
-ROW |18382 |{21865}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |18383 |{21866}>{$ICMP.LOSS.WARN} and {21866}<100 |High ICMP ping loss | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 |
-ROW |18384 |{21867}>{$ICMP.RESPONSE_TIME.WARN} |High ICMP ping response time | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
ROW |18385 |{21868} > 0 and ({21868} > {$UPS.INPUT_FREQ.MAX.WARN} or {21869} < {$UPS.INPUT_FREQ.MIN.WARN}) |Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current frequency: {ITEM.LASTVALUE1} |0 |
ROW |18386 |{21870} > 0 and ({21870} > {$UPS.INPUT_VOLT.MAX.WARN} or {21871} < {$UPS.INPUT_VOLT.MIN.WARN}) |Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current voltage: {ITEM.LASTVALUE1} |0 |
ROW |18387 |{21872} > {$UPS.OUTPUT.MAX.WARN} |Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD}) | |0 |4 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 |Current load: {ITEM.LASTVALUE1} |0 |
@@ -9866,7 +9810,6 @@ ROW |18395 |{21880}=3
ROW |18396 |{21881}=7 |UPS is Off | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18397 |{21882}=16 |UPS is Emergency Static Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18398 |{21883}=10 |UPS is Hardware Failure Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |18399 |{21884}=1 and {21885}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |18400 |{21886}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |18401 |{21887}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |18402 |{21888}=1 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay | |0 |2 |The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |NULL |0 |2 |0 | |0 | |0 |Current bit set: {ITEM.LASTVALUE1} |0 |
@@ -9885,9 +9828,6 @@ ROW |18414 |{21902}=2
ROW |18415 |{21903}=4 |Battery has an internal error condition | |0 |3 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18416 |{21904}=3 |Battery is Low | |0 |3 |The UPS will be unable to sustain the current load, and its services will be lost if power is not restored. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18417 |{21905} > {$BATTERY.TEMP.MAX.WARN} |Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current temperature: {ITEM.LASTVALUE1} |0 |
-ROW |18418 |{21906}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |18419 |{21907}>{$ICMP.LOSS.WARN} and {21907}<100 |High ICMP ping loss | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 |
-ROW |18420 |{21908}>{$ICMP.RESPONSE_TIME.WARN} |High ICMP ping response time | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
ROW |18421 |{21909} > 0 and ({21909} > {$UPS.INPUT_FREQ.MAX.WARN} or {21910} < {$UPS.INPUT_FREQ.MIN.WARN}) |Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current frequency: {ITEM.LASTVALUE1} |0 |
ROW |18422 |{21911} > 0 and ({21911} > {$UPS.INPUT_VOLT.MAX.WARN} or {21912} < {$UPS.INPUT_VOLT.MIN.WARN}) |Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current voltage: {ITEM.LASTVALUE1} |0 |
ROW |18423 |{21913} > {$UPS.OUTPUT.MAX.WARN} |Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD}) | |0 |4 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 |Current load: {ITEM.LASTVALUE1} |0 |
@@ -9902,7 +9842,6 @@ ROW |18431 |{21921}=3
ROW |18432 |{21922}=7 |UPS is Off | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18433 |{21923}=16 |UPS is Emergency Static Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18434 |{21924}=10 |UPS is Hardware Failure Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |18435 |{21925}=1 and {21926}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |18436 |{21927}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |18437 |{21928}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |18438 |{21929}=1 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay | |0 |2 |The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |NULL |0 |2 |0 | |0 | |0 |Current bit set: {ITEM.LASTVALUE1} |0 |
@@ -9921,9 +9860,6 @@ ROW |18450 |{21943}=2
ROW |18451 |{21944}=4 |Battery has an internal error condition | |0 |3 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18452 |{21945}=3 |Battery is Low | |0 |3 |The UPS will be unable to sustain the current load, and its services will be lost if power is not restored. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18453 |{21946} > {$BATTERY.TEMP.MAX.WARN} |Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current temperature: {ITEM.LASTVALUE1} |0 |
-ROW |18454 |{21947}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |18455 |{21948}>{$ICMP.LOSS.WARN} and {21948}<100 |High ICMP ping loss | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 |
-ROW |18456 |{21949}>{$ICMP.RESPONSE_TIME.WARN} |High ICMP ping response time | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
ROW |18457 |{21950} > 0 and ({21950} > {$UPS.INPUT_FREQ.MAX.WARN} or {21951} < {$UPS.INPUT_FREQ.MIN.WARN}) |Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current frequency: {ITEM.LASTVALUE1} |0 |
ROW |18458 |{21952} > 0 and ({21952} > {$UPS.INPUT_VOLT.MAX.WARN} or {21953} < {$UPS.INPUT_VOLT.MIN.WARN}) |Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current voltage: {ITEM.LASTVALUE1} |0 |
ROW |18459 |{21954} > {$UPS.OUTPUT.MAX.WARN} |Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD}) | |0 |4 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 |Current load: {ITEM.LASTVALUE1} |0 |
@@ -9938,7 +9874,6 @@ ROW |18467 |{21962}=3
ROW |18468 |{21963}=7 |UPS is Off | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18469 |{21964}=16 |UPS is Emergency Static Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18470 |{21965}=10 |UPS is Hardware Failure Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |18471 |{21966}=1 and {21967}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |18472 |{21968}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |18473 |{21969}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |18474 |{21970}=1 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay | |0 |2 |The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |NULL |0 |2 |0 | |0 | |0 |Current bit set: {ITEM.LASTVALUE1} |0 |
@@ -9960,9 +9895,6 @@ ROW |18489 |{21988}=2
ROW |18490 |{21989}=4 |Battery has an internal error condition | |0 |3 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18491 |{21990}=3 |Battery is Low | |0 |3 |The UPS will be unable to sustain the current load, and its services will be lost if power is not restored. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18492 |{21991} > {$BATTERY.TEMP.MAX.WARN} |Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current temperature: {ITEM.LASTVALUE1} |0 |
-ROW |18493 |{21992}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |18494 |{21993}>{$ICMP.LOSS.WARN} and {21993}<100 |High ICMP ping loss | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 |
-ROW |18495 |{21994}>{$ICMP.RESPONSE_TIME.WARN} |High ICMP ping response time | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
ROW |18496 |{21995} > 0 and ({21995} > {$UPS.INPUT_FREQ.MAX.WARN} or {21996} < {$UPS.INPUT_FREQ.MIN.WARN}) |Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current frequency: {ITEM.LASTVALUE1} |0 |
ROW |18497 |{21997} > 0 and ({21997} > {$UPS.INPUT_VOLT.MAX.WARN} or {21998} < {$UPS.INPUT_VOLT.MIN.WARN}) |Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current voltage: {ITEM.LASTVALUE1} |0 |
ROW |18498 |{21999} > {$UPS.OUTPUT.MAX.WARN} |Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD}) | |0 |4 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 |Current load: {ITEM.LASTVALUE1} |0 |
@@ -9977,7 +9909,6 @@ ROW |18506 |{22007}=3
ROW |18507 |{22008}=7 |UPS is Off | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18508 |{22009}=16 |UPS is Emergency Static Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18509 |{22010}=10 |UPS is Hardware Failure Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |18510 |{22011}=1 and {22012}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |18511 |{22013}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |18512 |{22014}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |18513 |{22015}=1 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay | |0 |2 |The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |NULL |0 |2 |0 | |0 | |0 |Current bit set: {ITEM.LASTVALUE1} |0 |
@@ -9996,9 +9927,6 @@ ROW |18525 |{22029}=2
ROW |18526 |{22030}=4 |Battery has an internal error condition | |0 |3 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18527 |{22031}=3 |Battery is Low | |0 |3 |The UPS will be unable to sustain the current load, and its services will be lost if power is not restored. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18528 |{22032} > {$BATTERY.TEMP.MAX.WARN} |Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current temperature: {ITEM.LASTVALUE1} |0 |
-ROW |18529 |{22033}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |18530 |{22034}>{$ICMP.LOSS.WARN} and {22034}<100 |High ICMP ping loss | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 |
-ROW |18531 |{22035}>{$ICMP.RESPONSE_TIME.WARN} |High ICMP ping response time | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
ROW |18532 |{22036} > 0 and ({22036} > {$UPS.INPUT_FREQ.MAX.WARN} or {22037} < {$UPS.INPUT_FREQ.MIN.WARN}) |Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current frequency: {ITEM.LASTVALUE1} |0 |
ROW |18533 |{22038} > 0 and ({22038} > {$UPS.INPUT_VOLT.MAX.WARN} or {22039} < {$UPS.INPUT_VOLT.MIN.WARN}) |Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current voltage: {ITEM.LASTVALUE1} |0 |
ROW |18534 |{22040} > {$UPS.OUTPUT.MAX.WARN} |Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD}) | |0 |4 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 |Current load: {ITEM.LASTVALUE1} |0 |
@@ -10013,7 +9941,6 @@ ROW |18542 |{22048}=3
ROW |18543 |{22049}=7 |UPS is Off | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18544 |{22050}=16 |UPS is Emergency Static Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18545 |{22051}=10 |UPS is Hardware Failure Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |18546 |{22052}=1 and {22053}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |18547 |{22054}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |18548 |{22055}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |18549 |{22056}=1 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay | |0 |2 |The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |NULL |0 |2 |0 | |0 | |0 |Current bit set: {ITEM.LASTVALUE1} |0 |
@@ -10032,9 +9959,6 @@ ROW |18561 |{22070}=2
ROW |18562 |{22071}=4 |Battery has an internal error condition | |0 |3 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18563 |{22072}=3 |Battery is Low | |0 |3 |The UPS will be unable to sustain the current load, and its services will be lost if power is not restored. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18564 |{22073} > {$BATTERY.TEMP.MAX.WARN} |Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current temperature: {ITEM.LASTVALUE1} |0 |
-ROW |18565 |{22074}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |18566 |{22075}>{$ICMP.LOSS.WARN} and {22075}<100 |High ICMP ping loss | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 |
-ROW |18567 |{22076}>{$ICMP.RESPONSE_TIME.WARN} |High ICMP ping response time | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
ROW |18568 |{22077} > 0 and ({22077} > {$UPS.INPUT_FREQ.MAX.WARN} or {22078} < {$UPS.INPUT_FREQ.MIN.WARN}) |Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current frequency: {ITEM.LASTVALUE1} |0 |
ROW |18569 |{22079} > 0 and ({22079} > {$UPS.INPUT_VOLT.MAX.WARN} or {22080} < {$UPS.INPUT_VOLT.MIN.WARN}) |Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current voltage: {ITEM.LASTVALUE1} |0 |
ROW |18570 |{22081} > {$UPS.OUTPUT.MAX.WARN} |Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD}) | |0 |4 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 |Current load: {ITEM.LASTVALUE1} |0 |
@@ -10049,7 +9973,6 @@ ROW |18578 |{22089}=3
ROW |18579 |{22090}=7 |UPS is Off | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18580 |{22091}=16 |UPS is Emergency Static Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18581 |{22092}=10 |UPS is Hardware Failure Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |18582 |{22093}=1 and {22094}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |18583 |{22095}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |18584 |{22096}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |18585 |{22097}=1 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay | |0 |2 |The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |NULL |0 |2 |0 | |0 | |0 |Current bit set: {ITEM.LASTVALUE1} |0 |
@@ -10063,6 +9986,17 @@ ROW |18592 |{22104}=2
ROW |18593 |{22105}=3 |{#EXTERNAL_SENSOR2_NAME}: Sensor has status Critical | |0 |4 |The external sensor has returned a value greater than the critical threshold. |NULL |0 |2 |0 | |0 | |0 | |0 |
ROW |18594 |{22106} > {$UPS.INPUT_VOLT.MAX.WARN} or {22107} < {$UPS.INPUT_VOLT.MIN.WARN} |{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1} |0 |
ROW |18595 |{22108} > {$UPS.INPUT_VOLT.MAX.WARN} or {22109} < {$UPS.INPUT_VOLT.MIN.WARN} |{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1} |0 |
+ROW |18596 |{22110}=1 and {22111}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18597 |{22112}=1 and {22113}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18598 |{22114}=1 and {22115}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18599 |{22116}=1 and {22117}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18600 |{22118}=1 and {22119}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18601 |{22120}=1 and {22121}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18602 |{22122}=1 and {22123}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18603 |{22124}=1 and {22125}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18604 |{22126}=1 and {22127}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18605 |{22128}=1 and {22129}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18606 |{22130}=1 and {22131}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
TABLE |triggers
FIELDS|triggerid|expression |description |url |status|priority|comments |templateid|type|flags|recovery_mode|recovery_expression |correlation_mode|correlation_tag|manual_close|opdata |discover|
@@ -10601,807 +10535,763 @@ ROW |21343 |16443 |16256 |
ROW |21344 |16270 |16269 |
ROW |21345 |16448 |16269 |
ROW |21346 |16265 |16269 |
-ROW |22731 |17682 |17683 |
-ROW |22732 |17684 |17685 |
-ROW |22733 |17686 |17687 |
-ROW |22734 |15944 |15947 |
-ROW |22735 |15944 |15943 |
-ROW |22736 |15943 |15947 |
-ROW |22737 |16888 |15947 |
-ROW |22738 |16888 |15943 |
-ROW |22739 |15948 |15949 |
-ROW |22740 |15950 |15949 |
-ROW |22741 |17219 |17218 |
-ROW |22742 |17222 |17221 |
-ROW |22743 |16743 |16744 |
-ROW |22744 |16784 |16785 |
-ROW |22745 |16790 |16791 |
-ROW |22746 |16892 |16900 |
-ROW |22747 |16894 |16900 |
-ROW |22748 |17267 |17275 |
-ROW |22749 |17272 |17276 |
-ROW |22750 |17273 |17275 |
-ROW |22751 |17274 |17276 |
-ROW |22752 |17279 |17277 |
-ROW |22753 |17282 |17280 |
-ROW |22754 |16646 |16647 |
-ROW |22755 |16809 |16810 |
-ROW |22756 |16902 |16904 |
-ROW |22757 |16904 |16905 |
-ROW |22758 |16909 |16906 |
-ROW |22759 |16910 |16912 |
-ROW |22760 |16912 |16913 |
-ROW |22761 |16917 |16914 |
-ROW |22762 |16752 |16753 |
-ROW |22763 |15955 |15957 |
-ROW |22764 |15955 |15954 |
-ROW |22765 |15954 |15957 |
-ROW |22766 |15956 |15957 |
-ROW |22767 |15956 |15954 |
-ROW |22768 |16678 |15957 |
-ROW |22769 |16678 |15954 |
-ROW |22770 |15961 |15960 |
-ROW |22771 |15962 |15960 |
-ROW |22772 |16679 |15960 |
-ROW |22773 |17225 |17231 |
-ROW |22774 |17228 |17231 |
-ROW |22775 |17236 |17233 |
-ROW |22776 |17966 |17968 |
-ROW |22777 |17966 |17967 |
-ROW |22778 |17967 |17968 |
-ROW |22779 |17973 |17968 |
-ROW |22780 |17973 |17967 |
-ROW |22781 |17975 |17968 |
-ROW |22782 |17975 |17967 |
-ROW |22783 |17985 |17986 |
-ROW |22784 |17987 |17986 |
-ROW |22785 |17992 |17986 |
-ROW |22786 |17081 |17083 |
-ROW |22787 |17082 |17081 |
-ROW |22788 |17082 |17083 |
-ROW |22789 |17082 |17084 |
-ROW |22790 |17084 |17083 |
-ROW |22791 |17117 |17127 |
-ROW |22792 |17118 |17117 |
-ROW |22793 |17118 |17127 |
-ROW |22794 |17119 |17127 |
-ROW |22795 |17120 |17119 |
-ROW |22796 |17120 |17127 |
-ROW |22797 |17122 |17121 |
-ROW |22798 |17123 |17127 |
-ROW |22799 |17124 |17123 |
-ROW |22800 |17124 |17127 |
-ROW |22801 |17126 |17125 |
-ROW |22802 |17128 |17144 |
-ROW |22803 |17129 |17128 |
-ROW |22804 |17129 |17144 |
-ROW |22805 |17130 |17144 |
-ROW |22806 |17131 |17130 |
-ROW |22807 |17131 |17144 |
-ROW |22808 |17132 |17144 |
-ROW |22809 |17133 |17132 |
-ROW |22810 |17133 |17144 |
-ROW |22811 |17134 |17144 |
-ROW |22812 |17135 |17134 |
-ROW |22813 |17135 |17144 |
-ROW |22814 |17136 |17144 |
-ROW |22815 |17137 |17136 |
-ROW |22816 |17137 |17144 |
-ROW |22817 |17139 |17138 |
-ROW |22818 |17140 |17144 |
-ROW |22819 |17141 |17140 |
-ROW |22820 |17141 |17144 |
-ROW |22821 |17142 |17144 |
-ROW |22822 |17143 |17142 |
-ROW |22823 |17143 |17144 |
-ROW |22824 |17145 |17144 |
-ROW |22825 |17146 |17144 |
-ROW |22826 |17146 |17145 |
-ROW |22827 |17147 |17144 |
-ROW |22828 |17148 |17144 |
-ROW |22829 |17148 |17147 |
-ROW |22830 |17306 |17307 |
-ROW |22831 |16920 |16921 |
-ROW |22832 |16833 |16920 |
-ROW |22833 |17748 |17747 |
-ROW |22834 |17750 |17749 |
-ROW |22835 |17753 |17754 |
-ROW |22836 |17755 |17754 |
-ROW |22837 |17765 |17766 |
-ROW |22838 |18007 |18005 |
-ROW |22839 |18019 |18017 |
-ROW |22840 |16929 |16928 |
-ROW |22841 |16940 |17153 |
-ROW |22842 |16719 |16721 |
-ROW |22843 |16975 |16723 |
-ROW |22844 |16729 |16728 |
-ROW |22845 |16730 |16728 |
-ROW |22846 |16756 |16758 |
-ROW |22847 |16979 |16759 |
-ROW |22848 |16765 |16764 |
-ROW |22849 |16766 |16764 |
-ROW |22850 |16734 |16736 |
-ROW |22851 |16983 |16732 |
-ROW |22852 |16741 |16740 |
-ROW |22853 |16742 |16740 |
-ROW |22854 |17173 |17172 |
-ROW |22855 |17175 |17176 |
-ROW |22856 |17180 |17179 |
-ROW |22857 |17711 |17712 |
-ROW |22858 |17713 |17714 |
-ROW |22859 |17030 |17017 |
-ROW |22860 |17035 |17036 |
-ROW |22861 |17039 |17038 |
-ROW |22862 |17044 |17043 |
-ROW |22863 |17715 |17716 |
-ROW |22864 |17717 |17718 |
-ROW |22865 |15928 |15933 |
-ROW |22866 |15931 |15933 |
-ROW |22867 |16683 |16687 |
-ROW |22868 |14252 |14251 |
-ROW |22869 |14294 |14293 |
-ROW |22870 |14312 |14311 |
-ROW |22871 |14328 |14327 |
-ROW |22872 |14348 |14347 |
-ROW |22873 |14357 |14356 |
-ROW |22874 |14390 |14389 |
-ROW |22875 |14404 |14403 |
-ROW |22876 |14452 |14451 |
-ROW |22877 |14469 |14468 |
-ROW |22878 |14487 |14486 |
-ROW |22879 |14506 |14505 |
-ROW |22880 |14535 |14534 |
-ROW |22881 |14545 |14544 |
-ROW |22882 |14583 |14582 |
-ROW |22883 |14599 |14598 |
-ROW |22884 |14616 |14615 |
-ROW |22885 |14653 |14652 |
-ROW |22886 |14674 |14673 |
-ROW |22887 |14692 |14691 |
-ROW |22888 |14705 |14704 |
-ROW |22889 |14718 |14717 |
-ROW |22890 |14907 |14906 |
-ROW |22891 |15221 |15220 |
-ROW |22892 |15702 |15701 |
-ROW |22893 |15724 |15723 |
-ROW |22894 |15756 |15755 |
-ROW |22895 |15820 |15819 |
-ROW |22896 |15841 |15840 |
-ROW |22897 |15991 |15990 |
-ROW |22898 |16018 |16017 |
-ROW |22899 |16454 |16453 |
-ROW |22900 |17721 |17720 |
-ROW |22901 |17936 |17935 |
-ROW |22902 |14253 |14252 |
-ROW |22903 |14295 |14294 |
-ROW |22904 |14313 |14312 |
-ROW |22905 |14329 |14328 |
-ROW |22906 |14349 |14348 |
-ROW |22907 |14358 |14357 |
-ROW |22908 |14391 |14390 |
-ROW |22909 |14405 |14404 |
-ROW |22910 |14453 |14452 |
-ROW |22911 |14470 |14469 |
-ROW |22912 |14488 |14487 |
-ROW |22913 |14507 |14506 |
-ROW |22914 |14536 |14535 |
-ROW |22915 |14546 |14545 |
-ROW |22916 |14584 |14583 |
-ROW |22917 |14600 |14599 |
-ROW |22918 |14617 |14616 |
-ROW |22919 |14654 |14653 |
-ROW |22920 |14675 |14674 |
-ROW |22921 |14693 |14692 |
-ROW |22922 |14706 |14705 |
-ROW |22923 |14719 |14718 |
-ROW |22924 |14908 |14907 |
-ROW |22925 |15222 |15221 |
-ROW |22926 |15703 |15702 |
-ROW |22927 |15725 |15724 |
-ROW |22928 |15757 |15756 |
-ROW |22929 |15821 |15820 |
-ROW |22930 |15842 |15841 |
-ROW |22931 |15992 |15991 |
-ROW |22932 |16019 |16018 |
-ROW |22933 |16455 |16454 |
-ROW |22934 |17722 |17721 |
-ROW |22935 |17937 |17936 |
-ROW |22936 |14253 |14251 |
-ROW |22937 |14295 |14293 |
-ROW |22938 |14313 |14311 |
-ROW |22939 |14329 |14327 |
-ROW |22940 |14349 |14347 |
-ROW |22941 |14358 |14356 |
-ROW |22942 |14391 |14389 |
-ROW |22943 |14405 |14403 |
-ROW |22944 |14453 |14451 |
-ROW |22945 |14470 |14468 |
-ROW |22946 |14488 |14486 |
-ROW |22947 |14507 |14505 |
-ROW |22948 |14536 |14534 |
-ROW |22949 |14546 |14544 |
-ROW |22950 |14584 |14582 |
-ROW |22951 |14600 |14598 |
-ROW |22952 |14617 |14615 |
-ROW |22953 |14654 |14652 |
-ROW |22954 |14675 |14673 |
-ROW |22955 |14693 |14691 |
-ROW |22956 |14706 |14704 |
-ROW |22957 |14719 |14717 |
-ROW |22958 |14908 |14906 |
-ROW |22959 |15222 |15220 |
-ROW |22960 |15703 |15701 |
-ROW |22961 |15725 |15723 |
-ROW |22962 |15757 |15755 |
-ROW |22963 |15821 |15819 |
-ROW |22964 |15842 |15840 |
-ROW |22965 |15992 |15990 |
-ROW |22966 |16019 |16017 |
-ROW |22967 |16455 |16453 |
-ROW |22968 |17722 |17720 |
-ROW |22969 |17937 |17935 |
-ROW |22970 |16287 |16289 |
-ROW |22971 |16279 |16285 |
-ROW |22972 |16290 |16348 |
-ROW |22973 |16291 |16349 |
-ROW |22974 |16292 |16350 |
-ROW |22975 |16293 |16351 |
-ROW |22976 |16294 |16352 |
-ROW |22977 |16295 |16353 |
-ROW |22978 |16296 |16354 |
-ROW |22979 |16297 |16355 |
-ROW |22980 |16298 |16356 |
-ROW |22981 |16299 |16357 |
-ROW |22982 |16300 |16358 |
-ROW |22983 |16301 |16359 |
-ROW |22984 |16302 |16360 |
-ROW |22985 |16303 |16361 |
-ROW |22986 |16304 |16362 |
-ROW |22987 |16305 |16363 |
-ROW |22988 |16306 |16364 |
-ROW |22989 |16307 |16365 |
-ROW |22990 |16308 |16366 |
-ROW |22991 |16309 |16367 |
-ROW |22992 |16311 |16369 |
-ROW |22993 |16312 |16370 |
-ROW |22994 |16313 |16371 |
-ROW |22995 |16314 |16372 |
-ROW |22996 |16315 |16373 |
-ROW |22997 |16316 |16374 |
-ROW |22998 |16317 |16375 |
-ROW |22999 |16318 |16376 |
-ROW |23000 |16457 |16458 |
-ROW |23001 |17724 |17725 |
-ROW |23002 |17939 |17940 |
-ROW |23003 |16289 |14293 |
-ROW |23004 |16285 |14717 |
-ROW |23005 |16348 |14311 |
-ROW |23006 |16349 |14327 |
-ROW |23007 |16350 |14347 |
-ROW |23008 |16351 |14356 |
-ROW |23009 |16352 |14389 |
-ROW |23010 |16353 |14403 |
-ROW |23011 |16354 |14451 |
-ROW |23012 |16355 |14468 |
-ROW |23013 |16356 |14486 |
-ROW |23014 |16357 |14505 |
-ROW |23015 |16358 |14534 |
-ROW |23016 |16359 |14544 |
-ROW |23017 |16360 |14582 |
-ROW |23018 |16361 |14598 |
-ROW |23019 |16362 |14615 |
-ROW |23020 |16363 |14652 |
-ROW |23021 |16364 |14673 |
-ROW |23022 |16365 |14691 |
-ROW |23023 |16366 |14704 |
-ROW |23024 |16367 |14906 |
-ROW |23025 |16369 |15220 |
-ROW |23026 |16370 |15701 |
-ROW |23027 |16371 |15723 |
-ROW |23028 |16372 |15755 |
-ROW |23029 |16373 |15819 |
-ROW |23030 |16374 |15840 |
-ROW |23031 |16375 |15990 |
-ROW |23032 |16376 |16017 |
-ROW |23033 |16458 |16453 |
-ROW |23034 |17725 |17720 |
-ROW |23035 |17940 |17935 |
-ROW |23036 |16631 |16630 |
-ROW |23037 |16640 |16636 |
-ROW |23038 |16642 |16638 |
-ROW |23039 |16643 |16639 |
-ROW |23040 |15695 |16863 |
-ROW |23041 |17798 |16863 |
-ROW |23042 |17799 |16863 |
-ROW |23043 |15694 |16868 |
-ROW |23044 |15696 |16864 |
-ROW |23045 |15697 |16865 |
-ROW |23046 |17800 |16864 |
-ROW |23047 |17801 |16865 |
-ROW |23048 |17802 |16868 |
-ROW |23049 |17803 |16864 |
-ROW |23050 |17804 |16865 |
-ROW |23051 |17805 |16868 |
-ROW |23052 |15671 |16841 |
-ROW |23053 |17806 |16841 |
-ROW |23054 |17807 |16841 |
-ROW |23055 |15672 |16842 |
-ROW |23056 |15673 |16843 |
-ROW |23057 |15674 |16844 |
-ROW |23058 |15675 |16845 |
-ROW |23059 |15676 |16846 |
-ROW |23060 |15677 |16847 |
-ROW |23061 |15678 |16848 |
-ROW |23062 |15679 |16849 |
-ROW |23063 |15680 |16850 |
-ROW |23064 |15681 |16851 |
-ROW |23065 |15682 |16852 |
-ROW |23066 |15683 |16853 |
-ROW |23067 |15684 |16854 |
-ROW |23068 |15685 |16855 |
-ROW |23069 |15686 |16856 |
-ROW |23070 |15687 |16857 |
-ROW |23071 |15689 |16858 |
-ROW |23072 |15691 |16860 |
-ROW |23073 |15708 |16861 |
-ROW |23074 |15997 |16862 |
-ROW |23075 |17808 |16842 |
-ROW |23076 |17809 |16843 |
-ROW |23077 |17810 |16844 |
-ROW |23078 |17811 |16845 |
-ROW |23079 |17812 |16846 |
-ROW |23080 |17813 |16847 |
-ROW |23081 |17814 |16848 |
-ROW |23082 |17815 |16849 |
-ROW |23083 |17816 |16850 |
-ROW |23084 |17817 |16851 |
-ROW |23085 |17818 |16852 |
-ROW |23086 |17819 |16853 |
-ROW |23087 |17820 |16854 |
-ROW |23088 |17821 |16855 |
-ROW |23089 |17822 |16856 |
-ROW |23090 |17823 |16857 |
-ROW |23091 |17824 |16858 |
-ROW |23092 |17826 |16860 |
-ROW |23093 |17827 |16861 |
-ROW |23094 |17828 |16862 |
-ROW |23095 |17829 |16842 |
-ROW |23096 |17830 |16843 |
-ROW |23097 |17831 |16844 |
-ROW |23098 |17832 |16845 |
-ROW |23099 |17833 |16846 |
-ROW |23100 |17834 |16847 |
-ROW |23101 |17835 |16848 |
-ROW |23102 |17836 |16849 |
-ROW |23103 |17837 |16850 |
-ROW |23104 |17838 |16851 |
-ROW |23105 |17839 |16852 |
-ROW |23106 |17840 |16853 |
-ROW |23107 |17841 |16854 |
-ROW |23108 |17842 |16855 |
-ROW |23109 |17843 |16856 |
-ROW |23110 |17844 |16857 |
-ROW |23111 |17845 |16858 |
-ROW |23112 |17847 |16860 |
-ROW |23113 |17848 |16861 |
-ROW |23114 |17849 |16862 |
-ROW |23115 |15698 |16866 |
-ROW |23116 |17850 |16866 |
-ROW |23117 |17851 |16866 |
-ROW |23118 |16028 |16867 |
-ROW |23119 |17852 |16867 |
-ROW |23120 |17853 |16867 |
-ROW |23121 |17857 |17858 |
-ROW |23122 |17863 |17864 |
-ROW |23123 |14318 |14319 |
-ROW |23124 |17311 |15717 |
-ROW |23125 |17311 |17312 |
-ROW |23126 |17312 |15717 |
-ROW |23127 |17313 |15717 |
-ROW |23128 |17313 |17314 |
-ROW |23129 |17314 |15717 |
-ROW |23130 |17315 |17316 |
-ROW |23131 |17317 |17318 |
-ROW |23132 |17319 |17320 |
-ROW |23133 |17321 |17322 |
-ROW |23134 |15721 |15720 |
-ROW |23135 |15394 |15393 |
-ROW |23136 |15392 |15391 |
-ROW |23137 |17194 |14339 |
-ROW |23138 |15382 |15381 |
-ROW |23139 |15380 |15379 |
-ROW |23140 |16504 |16505 |
-ROW |23141 |14372 |14373 |
-ROW |23142 |15386 |15385 |
-ROW |23143 |15384 |15383 |
-ROW |23144 |14380 |14381 |
-ROW |23145 |18024 |18023 |
-ROW |23146 |18025 |18024 |
-ROW |23147 |18025 |18023 |
-ROW |23148 |18028 |18027 |
-ROW |23149 |18034 |18033 |
-ROW |23150 |18036 |18041 |
-ROW |23151 |18037 |18041 |
-ROW |23152 |18038 |18041 |
-ROW |23153 |18039 |18041 |
-ROW |23154 |18040 |18041 |
-ROW |23155 |18044 |18043 |
-ROW |23156 |18046 |18045 |
-ROW |23157 |18048 |18047 |
-ROW |23158 |18051 |18050 |
-ROW |23159 |18052 |18051 |
-ROW |23160 |18052 |18050 |
-ROW |23161 |18055 |18054 |
-ROW |23162 |18061 |18060 |
-ROW |23163 |18063 |18068 |
-ROW |23164 |18064 |18068 |
-ROW |23165 |18065 |18068 |
-ROW |23166 |18066 |18068 |
-ROW |23167 |18067 |18068 |
-ROW |23168 |18071 |18070 |
-ROW |23169 |18073 |18072 |
-ROW |23170 |18075 |18074 |
-ROW |23171 |18078 |18077 |
-ROW |23172 |18079 |18078 |
-ROW |23173 |18079 |18077 |
-ROW |23174 |18082 |18081 |
-ROW |23175 |18088 |18087 |
-ROW |23176 |18090 |18095 |
-ROW |23177 |18091 |18095 |
-ROW |23178 |18092 |18095 |
-ROW |23179 |18093 |18095 |
-ROW |23180 |18094 |18095 |
-ROW |23181 |18098 |18097 |
-ROW |23182 |18100 |18099 |
-ROW |23183 |18102 |18101 |
-ROW |23184 |18105 |18104 |
-ROW |23185 |18106 |18105 |
-ROW |23186 |18106 |18104 |
-ROW |23187 |18109 |18108 |
-ROW |23188 |18115 |18114 |
-ROW |23189 |18117 |18122 |
-ROW |23190 |18118 |18122 |
-ROW |23191 |18119 |18122 |
-ROW |23192 |18120 |18122 |
-ROW |23193 |18121 |18122 |
-ROW |23194 |18125 |18124 |
-ROW |23195 |18127 |18126 |
-ROW |23196 |18129 |18128 |
-ROW |23197 |18132 |18131 |
-ROW |23198 |18133 |18132 |
-ROW |23199 |18133 |18131 |
-ROW |23200 |18136 |18135 |
-ROW |23201 |18142 |18141 |
-ROW |23202 |18144 |18149 |
-ROW |23203 |18145 |18149 |
-ROW |23204 |18146 |18149 |
-ROW |23205 |18147 |18149 |
-ROW |23206 |18148 |18149 |
-ROW |23207 |18152 |18151 |
-ROW |23208 |18154 |18153 |
-ROW |23209 |18156 |18155 |
-ROW |23210 |15347 |15346 |
-ROW |23211 |15345 |15344 |
-ROW |23212 |17196 |17195 |
-ROW |23213 |15363 |15360 |
-ROW |23214 |15364 |15361 |
-ROW |23215 |15365 |15362 |
-ROW |23216 |15357 |15354 |
-ROW |23217 |15358 |15355 |
-ROW |23218 |15359 |15356 |
-ROW |23219 |17200 |17197 |
-ROW |23220 |17201 |17198 |
-ROW |23221 |17202 |17199 |
-ROW |23222 |15334 |15333 |
-ROW |23223 |15332 |15331 |
-ROW |23224 |14460 |14461 |
-ROW |23225 |14476 |14477 |
-ROW |23226 |14495 |14496 |
-ROW |23227 |14511 |17203 |
-ROW |23228 |14551 |14552 |
-ROW |23229 |15374 |15373 |
-ROW |23230 |15376 |15375 |
-ROW |23231 |14914 |14915 |
-ROW |23232 |14589 |14590 |
-ROW |23233 |15338 |15337 |
-ROW |23234 |17205 |17204 |
-ROW |23235 |14624 |14625 |
-ROW |23236 |18159 |18158 |
-ROW |23237 |18160 |18159 |
-ROW |23238 |18160 |18158 |
-ROW |23239 |18163 |18164 |
-ROW |23240 |18164 |18158 |
-ROW |23241 |18166 |18169 |
-ROW |23242 |18167 |18169 |
-ROW |23243 |18168 |18169 |
-ROW |23244 |18171 |18172 |
-ROW |23245 |18175 |18174 |
-ROW |23246 |14664 |14665 |
-ROW |23247 |17207 |17208 |
-ROW |23248 |16547 |16546 |
-ROW |23249 |17323 |17324 |
-ROW |23250 |17325 |17326 |
-ROW |23251 |17374 |17375 |
-ROW |23252 |17376 |17377 |
-ROW |23253 |17378 |17379 |
-ROW |23254 |17380 |17381 |
-ROW |23255 |17382 |17383 |
-ROW |23256 |17384 |17385 |
-ROW |23257 |17432 |17433 |
-ROW |23258 |17434 |17435 |
-ROW |23259 |17436 |17437 |
-ROW |23260 |17438 |17439 |
-ROW |23261 |17440 |17441 |
-ROW |23262 |17442 |17443 |
-ROW |23263 |17476 |17477 |
-ROW |23264 |17478 |17479 |
-ROW |23265 |17480 |17481 |
-ROW |23266 |17482 |17483 |
-ROW |23267 |17484 |17485 |
-ROW |23268 |17500 |17501 |
-ROW |23269 |17502 |17503 |
-ROW |23270 |17504 |17505 |
-ROW |23271 |17565 |17566 |
-ROW |23272 |17567 |17568 |
-ROW |23273 |17569 |17570 |
-ROW |23274 |17571 |17572 |
-ROW |23275 |17573 |17574 |
-ROW |23276 |17606 |17607 |
-ROW |23277 |17608 |17609 |
-ROW |23278 |17610 |17611 |
-ROW |23279 |17612 |17613 |
-ROW |23280 |17645 |17646 |
-ROW |23281 |17647 |17648 |
-ROW |23282 |17649 |17650 |
-ROW |23283 |17651 |17652 |
-ROW |23284 |17653 |17654 |
-ROW |23285 |17655 |17656 |
-ROW |23286 |17212 |17211 |
-ROW |23287 |16551 |16552 |
-ROW |23288 |17888 |17890 |
-ROW |23289 |17891 |17893 |
-ROW |23290 |17894 |17896 |
-ROW |23291 |17888 |17889 |
-ROW |23292 |17891 |17892 |
-ROW |23293 |17894 |17895 |
-ROW |23294 |16031 |16563 |
-ROW |23295 |16045 |16564 |
-ROW |23296 |16046 |16565 |
-ROW |23297 |16039 |16040 |
-ROW |23298 |16061 |16063 |
-ROW |23299 |16062 |16064 |
-ROW |23300 |16042 |16579 |
-ROW |23301 |16067 |16580 |
-ROW |23302 |16068 |16581 |
-ROW |23303 |16041 |16042 |
-ROW |23304 |16065 |16067 |
-ROW |23305 |16066 |16068 |
-ROW |23306 |16041 |16579 |
-ROW |23307 |16065 |16580 |
-ROW |23308 |16066 |16581 |
-ROW |23309 |17890 |17889 |
-ROW |23310 |17893 |17892 |
-ROW |23311 |17896 |17895 |
-ROW |23312 |16070 |16069 |
-ROW |23313 |16072 |16071 |
-ROW |23314 |16076 |16994 |
-ROW |23315 |17897 |16994 |
-ROW |23316 |16079 |16077 |
-ROW |23317 |16080 |16078 |
-ROW |23318 |16083 |16081 |
-ROW |23319 |16084 |16082 |
-ROW |23320 |16091 |16997 |
-ROW |23321 |16092 |16998 |
-ROW |23322 |17898 |16997 |
-ROW |23323 |17899 |16998 |
-ROW |23324 |17900 |17902 |
-ROW |23325 |17903 |17905 |
-ROW |23326 |17900 |17901 |
-ROW |23327 |17903 |17904 |
-ROW |23328 |16097 |16569 |
-ROW |23329 |16110 |16570 |
-ROW |23330 |16105 |16106 |
-ROW |23331 |16118 |16119 |
-ROW |23332 |16108 |16582 |
-ROW |23333 |16121 |16583 |
-ROW |23334 |16107 |16108 |
-ROW |23335 |16120 |16121 |
-ROW |23336 |16107 |16582 |
-ROW |23337 |16120 |16583 |
-ROW |23338 |17902 |17901 |
-ROW |23339 |17905 |17904 |
-ROW |23340 |16123 |16122 |
-ROW |23341 |16125 |16124 |
-ROW |23342 |16129 |17002 |
-ROW |23343 |17906 |17002 |
-ROW |23344 |16131 |16130 |
-ROW |23345 |16133 |16132 |
-ROW |23346 |16137 |17004 |
-ROW |23347 |17907 |17004 |
-ROW |23348 |17908 |17910 |
-ROW |23349 |17908 |17909 |
-ROW |23350 |16141 |16142 |
-ROW |23351 |16146 |16573 |
-ROW |23352 |16143 |16584 |
-ROW |23353 |17910 |17909 |
-ROW |23354 |16152 |16883 |
-ROW |23355 |16153 |16883 |
-ROW |23356 |17911 |16883 |
-ROW |23357 |17912 |16883 |
-ROW |23358 |16156 |16155 |
-ROW |23359 |16158 |16157 |
-ROW |23360 |17913 |17915 |
-ROW |23361 |17916 |17918 |
-ROW |23362 |17913 |17914 |
-ROW |23363 |17916 |17917 |
-ROW |23364 |17915 |17914 |
-ROW |23365 |17918 |17917 |
-ROW |23366 |16009 |16008 |
-ROW |23367 |16011 |16010 |
-ROW |23368 |16014 |16013 |
-ROW |23369 |16016 |16015 |
-ROW |23370 |17005 |16160 |
-ROW |23371 |17007 |16171 |
-ROW |23372 |17919 |17920 |
-ROW |23373 |17921 |17922 |
-ROW |23374 |16161 |16160 |
-ROW |23375 |16172 |16171 |
-ROW |23376 |16162 |16161 |
-ROW |23377 |16173 |16172 |
-ROW |23378 |16162 |16160 |
-ROW |23379 |16173 |16171 |
-ROW |23380 |16166 |17920 |
-ROW |23381 |16177 |17922 |
-ROW |23382 |16167 |17920 |
-ROW |23383 |16178 |17922 |
-ROW |23384 |16183 |16182 |
-ROW |23385 |17657 |17050 |
-ROW |23386 |17923 |17050 |
-ROW |23387 |17924 |17050 |
-ROW |23388 |17009 |17662 |
-ROW |23389 |17009 |17661 |
-ROW |23390 |16190 |16189 |
-ROW |23391 |17658 |17054 |
-ROW |23392 |17925 |17054 |
-ROW |23393 |17926 |17054 |
-ROW |23394 |17010 |17664 |
-ROW |23395 |17010 |17663 |
-ROW |23396 |17011 |16209 |
-ROW |23397 |17013 |16220 |
-ROW |23398 |17927 |17928 |
-ROW |23399 |17929 |17930 |
-ROW |23400 |16210 |16209 |
-ROW |23401 |16221 |16220 |
-ROW |23402 |16211 |16210 |
-ROW |23403 |16222 |16221 |
-ROW |23404 |16211 |16209 |
-ROW |23405 |16222 |16220 |
-ROW |23406 |16215 |17928 |
-ROW |23407 |16226 |17930 |
-ROW |23408 |16216 |17928 |
-ROW |23409 |16227 |17930 |
-ROW |23410 |16232 |16231 |
-ROW |23411 |17659 |17058 |
-ROW |23412 |17931 |17058 |
-ROW |23413 |17932 |17058 |
-ROW |23414 |17015 |17666 |
-ROW |23415 |17015 |17665 |
-ROW |23416 |16239 |16238 |
-ROW |23417 |17660 |17062 |
-ROW |23418 |17933 |17062 |
-ROW |23419 |17934 |17062 |
-ROW |23420 |17016 |17668 |
-ROW |23421 |17016 |17667 |
-ROW |23422 |18239 |18238 |
-ROW |23423 |18240 |18239 |
-ROW |23424 |18240 |18238 |
-ROW |23425 |18256 |18257 |
-ROW |23426 |18257 |18238 |
-ROW |23427 |18275 |18274 |
-ROW |23428 |18276 |18275 |
-ROW |23429 |18276 |18274 |
-ROW |23430 |18292 |18293 |
-ROW |23431 |18293 |18274 |
-ROW |23432 |18311 |18310 |
-ROW |23433 |18312 |18311 |
-ROW |23434 |18312 |18310 |
-ROW |23435 |18328 |18329 |
-ROW |23436 |18329 |18310 |
-ROW |23437 |18347 |18346 |
-ROW |23438 |18348 |18347 |
-ROW |23439 |18348 |18346 |
-ROW |23440 |18364 |18365 |
-ROW |23441 |18365 |18346 |
-ROW |23442 |18383 |18382 |
-ROW |23443 |18384 |18383 |
-ROW |23444 |18384 |18382 |
-ROW |23445 |18400 |18401 |
-ROW |23446 |18401 |18382 |
-ROW |23447 |18419 |18418 |
-ROW |23448 |18420 |18419 |
-ROW |23449 |18420 |18418 |
-ROW |23450 |18436 |18437 |
-ROW |23451 |18437 |18418 |
-ROW |23452 |18455 |18454 |
-ROW |23453 |18456 |18455 |
-ROW |23454 |18456 |18454 |
-ROW |23455 |18472 |18473 |
-ROW |23456 |18473 |18454 |
-ROW |23457 |18182 |18181 |
-ROW |23458 |18183 |18182 |
-ROW |23459 |18183 |18181 |
-ROW |23460 |18199 |18200 |
-ROW |23461 |18200 |18181 |
-ROW |23462 |18494 |18493 |
-ROW |23463 |18495 |18494 |
-ROW |23464 |18495 |18493 |
-ROW |23465 |18511 |18512 |
-ROW |23466 |18512 |18493 |
-ROW |23467 |18530 |18529 |
-ROW |23468 |18531 |18530 |
-ROW |23469 |18531 |18529 |
-ROW |23470 |18547 |18548 |
-ROW |23471 |18548 |18529 |
-ROW |23472 |18566 |18565 |
-ROW |23473 |18567 |18566 |
-ROW |23474 |18567 |18565 |
-ROW |23475 |18583 |18584 |
-ROW |23476 |18584 |18565 |
-ROW |23477 |16768 |16769 |
-ROW |23478 |16768 |16770 |
-ROW |23479 |16769 |16770 |
-ROW |23480 |16771 |16772 |
-ROW |23481 |16771 |16773 |
-ROW |23482 |16772 |16773 |
-ROW |23483 |16488 |16487 |
-ROW |23484 |16485 |16484 |
-ROW |23485 |16486 |16484 |
-ROW |23486 |16486 |16485 |
-ROW |23487 |16480 |16479 |
-ROW |23488 |16482 |16481 |
-ROW |23489 |16475 |16474 |
-ROW |23490 |16471 |16472 |
-ROW |23491 |16468 |16469 |
-ROW |23492 |16459 |16460 |
-ROW |23493 |16462 |16463 |
-ROW |23494 |16465 |16466 |
-ROW |23495 |16477 |16476 |
-ROW |23496 |15729 |15728 |
-ROW |23497 |15730 |15728 |
-ROW |23498 |15730 |15729 |
-ROW |23499 |15752 |15754 |
-ROW |23500 |15753 |15754 |
-ROW |23501 |15753 |15752 |
-ROW |23502 |15742 |15741 |
-ROW |23503 |15750 |15749 |
-ROW |23504 |15751 |15750 |
-ROW |23505 |15751 |15749 |
-ROW |23506 |15746 |15743 |
-ROW |23507 |15744 |15743 |
-ROW |23508 |15740 |15739 |
-ROW |23509 |17214 |17213 |
-ROW |23510 |17216 |17215 |
-ROW |23511 |15748 |15747 |
-ROW |23512 |16440 |16439 |
-ROW |23513 |17768 |15790 |
-ROW |23514 |17769 |15787 |
-ROW |23515 |17770 |15787 |
-ROW |23516 |17770 |17769 |
-ROW |23517 |15786 |15785 |
-ROW |23518 |15784 |15783 |
-ROW |23519 |15794 |15792 |
-ROW |23520 |15793 |15792 |
-ROW |23521 |15782 |15781 |
-ROW |23522 |15797 |15796 |
-ROW |23523 |15825 |15824 |
-ROW |23524 |15826 |15824 |
-ROW |23525 |15826 |15825 |
-ROW |23526 |15828 |15829 |
-ROW |23527 |15831 |15832 |
-ROW |23528 |15834 |15835 |
-ROW |23529 |15845 |15846 |
-ROW |23530 |17251 |17255 |
-ROW |23531 |17254 |17255 |
+ROW |23532 |17682 |17683 |
+ROW |23533 |17684 |17685 |
+ROW |23534 |17686 |17687 |
+ROW |23535 |15944 |15947 |
+ROW |23536 |15944 |15943 |
+ROW |23537 |15943 |15947 |
+ROW |23538 |16888 |15947 |
+ROW |23539 |16888 |15943 |
+ROW |23540 |15948 |15949 |
+ROW |23541 |15950 |15949 |
+ROW |23542 |17219 |17218 |
+ROW |23543 |17222 |17221 |
+ROW |23544 |16743 |16744 |
+ROW |23545 |16784 |16785 |
+ROW |23546 |16790 |16791 |
+ROW |23547 |16892 |16900 |
+ROW |23548 |16894 |16900 |
+ROW |23549 |17267 |17275 |
+ROW |23550 |17272 |17276 |
+ROW |23551 |17273 |17275 |
+ROW |23552 |17274 |17276 |
+ROW |23553 |17279 |17277 |
+ROW |23554 |17282 |17280 |
+ROW |23555 |16646 |16647 |
+ROW |23556 |16809 |16810 |
+ROW |23557 |16902 |16904 |
+ROW |23558 |16904 |16905 |
+ROW |23559 |16909 |16906 |
+ROW |23560 |16910 |16912 |
+ROW |23561 |16912 |16913 |
+ROW |23562 |16917 |16914 |
+ROW |23563 |16752 |16753 |
+ROW |23564 |15955 |15957 |
+ROW |23565 |15955 |15954 |
+ROW |23566 |15954 |15957 |
+ROW |23567 |15956 |15957 |
+ROW |23568 |15956 |15954 |
+ROW |23569 |16678 |15957 |
+ROW |23570 |16678 |15954 |
+ROW |23571 |15961 |15960 |
+ROW |23572 |15962 |15960 |
+ROW |23573 |16679 |15960 |
+ROW |23574 |17225 |17231 |
+ROW |23575 |17228 |17231 |
+ROW |23576 |17236 |17233 |
+ROW |23577 |17966 |17968 |
+ROW |23578 |17966 |17967 |
+ROW |23579 |17967 |17968 |
+ROW |23580 |17973 |17968 |
+ROW |23581 |17973 |17967 |
+ROW |23582 |17975 |17968 |
+ROW |23583 |17975 |17967 |
+ROW |23584 |17985 |17986 |
+ROW |23585 |17987 |17986 |
+ROW |23586 |17992 |17986 |
+ROW |23587 |17081 |17083 |
+ROW |23588 |17082 |17081 |
+ROW |23589 |17082 |17083 |
+ROW |23590 |17082 |17084 |
+ROW |23591 |17084 |17083 |
+ROW |23592 |17117 |17127 |
+ROW |23593 |17118 |17117 |
+ROW |23594 |17118 |17127 |
+ROW |23595 |17119 |17127 |
+ROW |23596 |17120 |17119 |
+ROW |23597 |17120 |17127 |
+ROW |23598 |17122 |17121 |
+ROW |23599 |17123 |17127 |
+ROW |23600 |17124 |17123 |
+ROW |23601 |17124 |17127 |
+ROW |23602 |17126 |17125 |
+ROW |23603 |17128 |17144 |
+ROW |23604 |17129 |17128 |
+ROW |23605 |17129 |17144 |
+ROW |23606 |17130 |17144 |
+ROW |23607 |17131 |17130 |
+ROW |23608 |17131 |17144 |
+ROW |23609 |17132 |17144 |
+ROW |23610 |17133 |17132 |
+ROW |23611 |17133 |17144 |
+ROW |23612 |17134 |17144 |
+ROW |23613 |17135 |17134 |
+ROW |23614 |17135 |17144 |
+ROW |23615 |17136 |17144 |
+ROW |23616 |17137 |17136 |
+ROW |23617 |17137 |17144 |
+ROW |23618 |17139 |17138 |
+ROW |23619 |17140 |17144 |
+ROW |23620 |17141 |17140 |
+ROW |23621 |17141 |17144 |
+ROW |23622 |17142 |17144 |
+ROW |23623 |17143 |17142 |
+ROW |23624 |17143 |17144 |
+ROW |23625 |17145 |17144 |
+ROW |23626 |17146 |17144 |
+ROW |23627 |17146 |17145 |
+ROW |23628 |17147 |17144 |
+ROW |23629 |17148 |17144 |
+ROW |23630 |17148 |17147 |
+ROW |23631 |17306 |17307 |
+ROW |23632 |16920 |16921 |
+ROW |23633 |16833 |16920 |
+ROW |23634 |17748 |17747 |
+ROW |23635 |17750 |17749 |
+ROW |23636 |17753 |17754 |
+ROW |23637 |17755 |17754 |
+ROW |23638 |17765 |17766 |
+ROW |23639 |18007 |18005 |
+ROW |23640 |18019 |18017 |
+ROW |23641 |16929 |16928 |
+ROW |23642 |16940 |17153 |
+ROW |23643 |16719 |16721 |
+ROW |23644 |16975 |16723 |
+ROW |23645 |16729 |16728 |
+ROW |23646 |16730 |16728 |
+ROW |23647 |16756 |16758 |
+ROW |23648 |16979 |16759 |
+ROW |23649 |16765 |16764 |
+ROW |23650 |16766 |16764 |
+ROW |23651 |16734 |16736 |
+ROW |23652 |16983 |16732 |
+ROW |23653 |16741 |16740 |
+ROW |23654 |16742 |16740 |
+ROW |23655 |17173 |17172 |
+ROW |23656 |17175 |17176 |
+ROW |23657 |17180 |17179 |
+ROW |23658 |17711 |17712 |
+ROW |23659 |17713 |17714 |
+ROW |23660 |17030 |17017 |
+ROW |23661 |17035 |17036 |
+ROW |23662 |17039 |17038 |
+ROW |23663 |17044 |17043 |
+ROW |23664 |17715 |17716 |
+ROW |23665 |17717 |17718 |
+ROW |23666 |15928 |15933 |
+ROW |23667 |15931 |15933 |
+ROW |23668 |16683 |16687 |
+ROW |23669 |14252 |14251 |
+ROW |23670 |14294 |14293 |
+ROW |23671 |14312 |14311 |
+ROW |23672 |14328 |14327 |
+ROW |23673 |14348 |14347 |
+ROW |23674 |14357 |14356 |
+ROW |23675 |14390 |14389 |
+ROW |23676 |14404 |14403 |
+ROW |23677 |14452 |14451 |
+ROW |23678 |14469 |14468 |
+ROW |23679 |14487 |14486 |
+ROW |23680 |14506 |14505 |
+ROW |23681 |14535 |14534 |
+ROW |23682 |14545 |14544 |
+ROW |23683 |14583 |14582 |
+ROW |23684 |14599 |14598 |
+ROW |23685 |14616 |14615 |
+ROW |23686 |14653 |14652 |
+ROW |23687 |14674 |14673 |
+ROW |23688 |14692 |14691 |
+ROW |23689 |14705 |14704 |
+ROW |23690 |14718 |14717 |
+ROW |23691 |14907 |14906 |
+ROW |23692 |15221 |15220 |
+ROW |23693 |15702 |15701 |
+ROW |23694 |15724 |15723 |
+ROW |23695 |15756 |15755 |
+ROW |23696 |15820 |15819 |
+ROW |23697 |15841 |15840 |
+ROW |23698 |15991 |15990 |
+ROW |23699 |16018 |16017 |
+ROW |23700 |16454 |16453 |
+ROW |23701 |17721 |17720 |
+ROW |23702 |17936 |17935 |
+ROW |23703 |14253 |14252 |
+ROW |23704 |14295 |14294 |
+ROW |23705 |14313 |14312 |
+ROW |23706 |14329 |14328 |
+ROW |23707 |14349 |14348 |
+ROW |23708 |14358 |14357 |
+ROW |23709 |14391 |14390 |
+ROW |23710 |14405 |14404 |
+ROW |23711 |14453 |14452 |
+ROW |23712 |14470 |14469 |
+ROW |23713 |14488 |14487 |
+ROW |23714 |14507 |14506 |
+ROW |23715 |14536 |14535 |
+ROW |23716 |14546 |14545 |
+ROW |23717 |14584 |14583 |
+ROW |23718 |14600 |14599 |
+ROW |23719 |14617 |14616 |
+ROW |23720 |14654 |14653 |
+ROW |23721 |14675 |14674 |
+ROW |23722 |14693 |14692 |
+ROW |23723 |14706 |14705 |
+ROW |23724 |14719 |14718 |
+ROW |23725 |14908 |14907 |
+ROW |23726 |15222 |15221 |
+ROW |23727 |15703 |15702 |
+ROW |23728 |15725 |15724 |
+ROW |23729 |15757 |15756 |
+ROW |23730 |15821 |15820 |
+ROW |23731 |15842 |15841 |
+ROW |23732 |15992 |15991 |
+ROW |23733 |16019 |16018 |
+ROW |23734 |16455 |16454 |
+ROW |23735 |17722 |17721 |
+ROW |23736 |17937 |17936 |
+ROW |23737 |14253 |14251 |
+ROW |23738 |14295 |14293 |
+ROW |23739 |14313 |14311 |
+ROW |23740 |14329 |14327 |
+ROW |23741 |14349 |14347 |
+ROW |23742 |14358 |14356 |
+ROW |23743 |14391 |14389 |
+ROW |23744 |14405 |14403 |
+ROW |23745 |14453 |14451 |
+ROW |23746 |14470 |14468 |
+ROW |23747 |14488 |14486 |
+ROW |23748 |14507 |14505 |
+ROW |23749 |14536 |14534 |
+ROW |23750 |14546 |14544 |
+ROW |23751 |14584 |14582 |
+ROW |23752 |14600 |14598 |
+ROW |23753 |14617 |14615 |
+ROW |23754 |14654 |14652 |
+ROW |23755 |14675 |14673 |
+ROW |23756 |14693 |14691 |
+ROW |23757 |14706 |14704 |
+ROW |23758 |14719 |14717 |
+ROW |23759 |14908 |14906 |
+ROW |23760 |15222 |15220 |
+ROW |23761 |15703 |15701 |
+ROW |23762 |15725 |15723 |
+ROW |23763 |15757 |15755 |
+ROW |23764 |15821 |15819 |
+ROW |23765 |15842 |15840 |
+ROW |23766 |15992 |15990 |
+ROW |23767 |16019 |16017 |
+ROW |23768 |16455 |16453 |
+ROW |23769 |17722 |17720 |
+ROW |23770 |17937 |17935 |
+ROW |23771 |16287 |16289 |
+ROW |23772 |16279 |16285 |
+ROW |23773 |16290 |16348 |
+ROW |23774 |16291 |16349 |
+ROW |23775 |16292 |16350 |
+ROW |23776 |16293 |16351 |
+ROW |23777 |16294 |16352 |
+ROW |23778 |16295 |16353 |
+ROW |23779 |16296 |16354 |
+ROW |23780 |16297 |16355 |
+ROW |23781 |16298 |16356 |
+ROW |23782 |16299 |16357 |
+ROW |23783 |16300 |16358 |
+ROW |23784 |16301 |16359 |
+ROW |23785 |16302 |16360 |
+ROW |23786 |16303 |16361 |
+ROW |23787 |16304 |16362 |
+ROW |23788 |16305 |16363 |
+ROW |23789 |16306 |16364 |
+ROW |23790 |16307 |16365 |
+ROW |23791 |16308 |16366 |
+ROW |23792 |16309 |16367 |
+ROW |23793 |16311 |16369 |
+ROW |23794 |16312 |16370 |
+ROW |23795 |16313 |16371 |
+ROW |23796 |16314 |16372 |
+ROW |23797 |16315 |16373 |
+ROW |23798 |16316 |16374 |
+ROW |23799 |16317 |16375 |
+ROW |23800 |16318 |16376 |
+ROW |23801 |16457 |16458 |
+ROW |23802 |17724 |17725 |
+ROW |23803 |17939 |17940 |
+ROW |23804 |16289 |14293 |
+ROW |23805 |16285 |14717 |
+ROW |23806 |16348 |14311 |
+ROW |23807 |16349 |14327 |
+ROW |23808 |16350 |14347 |
+ROW |23809 |16351 |14356 |
+ROW |23810 |16352 |14389 |
+ROW |23811 |16353 |14403 |
+ROW |23812 |16354 |14451 |
+ROW |23813 |16355 |14468 |
+ROW |23814 |16356 |14486 |
+ROW |23815 |16357 |14505 |
+ROW |23816 |16358 |14534 |
+ROW |23817 |16359 |14544 |
+ROW |23818 |16360 |14582 |
+ROW |23819 |16361 |14598 |
+ROW |23820 |16362 |14615 |
+ROW |23821 |16363 |14652 |
+ROW |23822 |16364 |14673 |
+ROW |23823 |16365 |14691 |
+ROW |23824 |16366 |14704 |
+ROW |23825 |16367 |14906 |
+ROW |23826 |16369 |15220 |
+ROW |23827 |16370 |15701 |
+ROW |23828 |16371 |15723 |
+ROW |23829 |16372 |15755 |
+ROW |23830 |16373 |15819 |
+ROW |23831 |16374 |15840 |
+ROW |23832 |16375 |15990 |
+ROW |23833 |16376 |16017 |
+ROW |23834 |16458 |16453 |
+ROW |23835 |17725 |17720 |
+ROW |23836 |17940 |17935 |
+ROW |23837 |16631 |16630 |
+ROW |23838 |16640 |16636 |
+ROW |23839 |16642 |16638 |
+ROW |23840 |16643 |16639 |
+ROW |23841 |15695 |16863 |
+ROW |23842 |17798 |16863 |
+ROW |23843 |17799 |16863 |
+ROW |23844 |15694 |16868 |
+ROW |23845 |15696 |16864 |
+ROW |23846 |15697 |16865 |
+ROW |23847 |17800 |16864 |
+ROW |23848 |17801 |16865 |
+ROW |23849 |17802 |16868 |
+ROW |23850 |17803 |16864 |
+ROW |23851 |17804 |16865 |
+ROW |23852 |17805 |16868 |
+ROW |23853 |15671 |16841 |
+ROW |23854 |17806 |16841 |
+ROW |23855 |17807 |16841 |
+ROW |23856 |15672 |16842 |
+ROW |23857 |15673 |16843 |
+ROW |23858 |15674 |16844 |
+ROW |23859 |15675 |16845 |
+ROW |23860 |15676 |16846 |
+ROW |23861 |15677 |16847 |
+ROW |23862 |15678 |16848 |
+ROW |23863 |15679 |16849 |
+ROW |23864 |15680 |16850 |
+ROW |23865 |15681 |16851 |
+ROW |23866 |15682 |16852 |
+ROW |23867 |15683 |16853 |
+ROW |23868 |15684 |16854 |
+ROW |23869 |15685 |16855 |
+ROW |23870 |15686 |16856 |
+ROW |23871 |15687 |16857 |
+ROW |23872 |15689 |16858 |
+ROW |23873 |15691 |16860 |
+ROW |23874 |15708 |16861 |
+ROW |23875 |15997 |16862 |
+ROW |23876 |17808 |16842 |
+ROW |23877 |17809 |16843 |
+ROW |23878 |17810 |16844 |
+ROW |23879 |17811 |16845 |
+ROW |23880 |17812 |16846 |
+ROW |23881 |17813 |16847 |
+ROW |23882 |17814 |16848 |
+ROW |23883 |17815 |16849 |
+ROW |23884 |17816 |16850 |
+ROW |23885 |17817 |16851 |
+ROW |23886 |17818 |16852 |
+ROW |23887 |17819 |16853 |
+ROW |23888 |17820 |16854 |
+ROW |23889 |17821 |16855 |
+ROW |23890 |17822 |16856 |
+ROW |23891 |17823 |16857 |
+ROW |23892 |17824 |16858 |
+ROW |23893 |17826 |16860 |
+ROW |23894 |17827 |16861 |
+ROW |23895 |17828 |16862 |
+ROW |23896 |17829 |16842 |
+ROW |23897 |17830 |16843 |
+ROW |23898 |17831 |16844 |
+ROW |23899 |17832 |16845 |
+ROW |23900 |17833 |16846 |
+ROW |23901 |17834 |16847 |
+ROW |23902 |17835 |16848 |
+ROW |23903 |17836 |16849 |
+ROW |23904 |17837 |16850 |
+ROW |23905 |17838 |16851 |
+ROW |23906 |17839 |16852 |
+ROW |23907 |17840 |16853 |
+ROW |23908 |17841 |16854 |
+ROW |23909 |17842 |16855 |
+ROW |23910 |17843 |16856 |
+ROW |23911 |17844 |16857 |
+ROW |23912 |17845 |16858 |
+ROW |23913 |17847 |16860 |
+ROW |23914 |17848 |16861 |
+ROW |23915 |17849 |16862 |
+ROW |23916 |15698 |16866 |
+ROW |23917 |17850 |16866 |
+ROW |23918 |17851 |16866 |
+ROW |23919 |16028 |16867 |
+ROW |23920 |17852 |16867 |
+ROW |23921 |17853 |16867 |
+ROW |23922 |17857 |17858 |
+ROW |23923 |17863 |17864 |
+ROW |23924 |14318 |14319 |
+ROW |23925 |17311 |15717 |
+ROW |23926 |17311 |17312 |
+ROW |23927 |17312 |15717 |
+ROW |23928 |17313 |15717 |
+ROW |23929 |17313 |17314 |
+ROW |23930 |17314 |15717 |
+ROW |23931 |17315 |17316 |
+ROW |23932 |17317 |17318 |
+ROW |23933 |17319 |17320 |
+ROW |23934 |17321 |17322 |
+ROW |23935 |15721 |15720 |
+ROW |23936 |15394 |15393 |
+ROW |23937 |15392 |15391 |
+ROW |23938 |17194 |14339 |
+ROW |23939 |15382 |15381 |
+ROW |23940 |15380 |15379 |
+ROW |23941 |16504 |16505 |
+ROW |23942 |14372 |14373 |
+ROW |23943 |15386 |15385 |
+ROW |23944 |15384 |15383 |
+ROW |23945 |14380 |14381 |
+ROW |23946 |18024 |18023 |
+ROW |23947 |18025 |18024 |
+ROW |23948 |18025 |18023 |
+ROW |23949 |18028 |18027 |
+ROW |23950 |18034 |18033 |
+ROW |23951 |18036 |18041 |
+ROW |23952 |18037 |18041 |
+ROW |23953 |18038 |18041 |
+ROW |23954 |18039 |18041 |
+ROW |23955 |18040 |18041 |
+ROW |23956 |18044 |18043 |
+ROW |23957 |18046 |18045 |
+ROW |23958 |18048 |18047 |
+ROW |23959 |18051 |18050 |
+ROW |23960 |18052 |18051 |
+ROW |23961 |18052 |18050 |
+ROW |23962 |18055 |18054 |
+ROW |23963 |18061 |18060 |
+ROW |23964 |18063 |18068 |
+ROW |23965 |18064 |18068 |
+ROW |23966 |18065 |18068 |
+ROW |23967 |18066 |18068 |
+ROW |23968 |18067 |18068 |
+ROW |23969 |18071 |18070 |
+ROW |23970 |18073 |18072 |
+ROW |23971 |18075 |18074 |
+ROW |23972 |18078 |18077 |
+ROW |23973 |18079 |18078 |
+ROW |23974 |18079 |18077 |
+ROW |23975 |18082 |18081 |
+ROW |23976 |18088 |18087 |
+ROW |23977 |18090 |18095 |
+ROW |23978 |18091 |18095 |
+ROW |23979 |18092 |18095 |
+ROW |23980 |18093 |18095 |
+ROW |23981 |18094 |18095 |
+ROW |23982 |18098 |18097 |
+ROW |23983 |18100 |18099 |
+ROW |23984 |18102 |18101 |
+ROW |23985 |18105 |18104 |
+ROW |23986 |18106 |18105 |
+ROW |23987 |18106 |18104 |
+ROW |23988 |18109 |18108 |
+ROW |23989 |18115 |18114 |
+ROW |23990 |18117 |18122 |
+ROW |23991 |18118 |18122 |
+ROW |23992 |18119 |18122 |
+ROW |23993 |18120 |18122 |
+ROW |23994 |18121 |18122 |
+ROW |23995 |18125 |18124 |
+ROW |23996 |18127 |18126 |
+ROW |23997 |18129 |18128 |
+ROW |23998 |18132 |18131 |
+ROW |23999 |18133 |18132 |
+ROW |24000 |18133 |18131 |
+ROW |24001 |18136 |18135 |
+ROW |24002 |18142 |18141 |
+ROW |24003 |18144 |18149 |
+ROW |24004 |18145 |18149 |
+ROW |24005 |18146 |18149 |
+ROW |24006 |18147 |18149 |
+ROW |24007 |18148 |18149 |
+ROW |24008 |18152 |18151 |
+ROW |24009 |18154 |18153 |
+ROW |24010 |18156 |18155 |
+ROW |24011 |15347 |15346 |
+ROW |24012 |15345 |15344 |
+ROW |24013 |17196 |17195 |
+ROW |24014 |15363 |15360 |
+ROW |24015 |15364 |15361 |
+ROW |24016 |15365 |15362 |
+ROW |24017 |15357 |15354 |
+ROW |24018 |15358 |15355 |
+ROW |24019 |15359 |15356 |
+ROW |24020 |17200 |17197 |
+ROW |24021 |17201 |17198 |
+ROW |24022 |17202 |17199 |
+ROW |24023 |15334 |15333 |
+ROW |24024 |15332 |15331 |
+ROW |24025 |14460 |14461 |
+ROW |24026 |14476 |14477 |
+ROW |24027 |14495 |14496 |
+ROW |24028 |14511 |17203 |
+ROW |24029 |14551 |14552 |
+ROW |24030 |15374 |15373 |
+ROW |24031 |15376 |15375 |
+ROW |24032 |14914 |14915 |
+ROW |24033 |14589 |14590 |
+ROW |24034 |15338 |15337 |
+ROW |24035 |17205 |17204 |
+ROW |24036 |14624 |14625 |
+ROW |24037 |18159 |18158 |
+ROW |24038 |18160 |18159 |
+ROW |24039 |18160 |18158 |
+ROW |24040 |18163 |18164 |
+ROW |24041 |18164 |18158 |
+ROW |24042 |18166 |18169 |
+ROW |24043 |18167 |18169 |
+ROW |24044 |18168 |18169 |
+ROW |24045 |18171 |18172 |
+ROW |24046 |18175 |18174 |
+ROW |24047 |14664 |14665 |
+ROW |24048 |17207 |17208 |
+ROW |24049 |16547 |16546 |
+ROW |24050 |17323 |17324 |
+ROW |24051 |17325 |17326 |
+ROW |24052 |17374 |17375 |
+ROW |24053 |17376 |17377 |
+ROW |24054 |17378 |17379 |
+ROW |24055 |17380 |17381 |
+ROW |24056 |17382 |17383 |
+ROW |24057 |17384 |17385 |
+ROW |24058 |17432 |17433 |
+ROW |24059 |17434 |17435 |
+ROW |24060 |17436 |17437 |
+ROW |24061 |17438 |17439 |
+ROW |24062 |17440 |17441 |
+ROW |24063 |17442 |17443 |
+ROW |24064 |17476 |17477 |
+ROW |24065 |17478 |17479 |
+ROW |24066 |17480 |17481 |
+ROW |24067 |17482 |17483 |
+ROW |24068 |17484 |17485 |
+ROW |24069 |17500 |17501 |
+ROW |24070 |17502 |17503 |
+ROW |24071 |17504 |17505 |
+ROW |24072 |17565 |17566 |
+ROW |24073 |17567 |17568 |
+ROW |24074 |17569 |17570 |
+ROW |24075 |17571 |17572 |
+ROW |24076 |17573 |17574 |
+ROW |24077 |17606 |17607 |
+ROW |24078 |17608 |17609 |
+ROW |24079 |17610 |17611 |
+ROW |24080 |17612 |17613 |
+ROW |24081 |17645 |17646 |
+ROW |24082 |17647 |17648 |
+ROW |24083 |17649 |17650 |
+ROW |24084 |17651 |17652 |
+ROW |24085 |17653 |17654 |
+ROW |24086 |17655 |17656 |
+ROW |24087 |17212 |17211 |
+ROW |24088 |16551 |16552 |
+ROW |24089 |17888 |17890 |
+ROW |24090 |17891 |17893 |
+ROW |24091 |17894 |17896 |
+ROW |24092 |17888 |17889 |
+ROW |24093 |17891 |17892 |
+ROW |24094 |17894 |17895 |
+ROW |24095 |16031 |16563 |
+ROW |24096 |16045 |16564 |
+ROW |24097 |16046 |16565 |
+ROW |24098 |16039 |16040 |
+ROW |24099 |16061 |16063 |
+ROW |24100 |16062 |16064 |
+ROW |24101 |16042 |16579 |
+ROW |24102 |16067 |16580 |
+ROW |24103 |16068 |16581 |
+ROW |24104 |16041 |16042 |
+ROW |24105 |16065 |16067 |
+ROW |24106 |16066 |16068 |
+ROW |24107 |16041 |16579 |
+ROW |24108 |16065 |16580 |
+ROW |24109 |16066 |16581 |
+ROW |24110 |17890 |17889 |
+ROW |24111 |17893 |17892 |
+ROW |24112 |17896 |17895 |
+ROW |24113 |16070 |16069 |
+ROW |24114 |16072 |16071 |
+ROW |24115 |16076 |16994 |
+ROW |24116 |17897 |16994 |
+ROW |24117 |16079 |16077 |
+ROW |24118 |16080 |16078 |
+ROW |24119 |16083 |16081 |
+ROW |24120 |16084 |16082 |
+ROW |24121 |16091 |16997 |
+ROW |24122 |16092 |16998 |
+ROW |24123 |17898 |16997 |
+ROW |24124 |17899 |16998 |
+ROW |24125 |17900 |17902 |
+ROW |24126 |17903 |17905 |
+ROW |24127 |17900 |17901 |
+ROW |24128 |17903 |17904 |
+ROW |24129 |16097 |16569 |
+ROW |24130 |16110 |16570 |
+ROW |24131 |16105 |16106 |
+ROW |24132 |16118 |16119 |
+ROW |24133 |16108 |16582 |
+ROW |24134 |16121 |16583 |
+ROW |24135 |16107 |16108 |
+ROW |24136 |16120 |16121 |
+ROW |24137 |16107 |16582 |
+ROW |24138 |16120 |16583 |
+ROW |24139 |17902 |17901 |
+ROW |24140 |17905 |17904 |
+ROW |24141 |16123 |16122 |
+ROW |24142 |16125 |16124 |
+ROW |24143 |16129 |17002 |
+ROW |24144 |17906 |17002 |
+ROW |24145 |16131 |16130 |
+ROW |24146 |16133 |16132 |
+ROW |24147 |16137 |17004 |
+ROW |24148 |17907 |17004 |
+ROW |24149 |17908 |17910 |
+ROW |24150 |17908 |17909 |
+ROW |24151 |16141 |16142 |
+ROW |24152 |16146 |16573 |
+ROW |24153 |16143 |16584 |
+ROW |24154 |17910 |17909 |
+ROW |24155 |16152 |16883 |
+ROW |24156 |16153 |16883 |
+ROW |24157 |17911 |16883 |
+ROW |24158 |17912 |16883 |
+ROW |24159 |16156 |16155 |
+ROW |24160 |16158 |16157 |
+ROW |24161 |17913 |17915 |
+ROW |24162 |17916 |17918 |
+ROW |24163 |17913 |17914 |
+ROW |24164 |17916 |17917 |
+ROW |24165 |17915 |17914 |
+ROW |24166 |17918 |17917 |
+ROW |24167 |16009 |16008 |
+ROW |24168 |16011 |16010 |
+ROW |24169 |16014 |16013 |
+ROW |24170 |16016 |16015 |
+ROW |24171 |17005 |16160 |
+ROW |24172 |17007 |16171 |
+ROW |24173 |17919 |17920 |
+ROW |24174 |17921 |17922 |
+ROW |24175 |16161 |16160 |
+ROW |24176 |16172 |16171 |
+ROW |24177 |16162 |16161 |
+ROW |24178 |16173 |16172 |
+ROW |24179 |16162 |16160 |
+ROW |24180 |16173 |16171 |
+ROW |24181 |16166 |17920 |
+ROW |24182 |16177 |17922 |
+ROW |24183 |16167 |17920 |
+ROW |24184 |16178 |17922 |
+ROW |24185 |16183 |16182 |
+ROW |24186 |17657 |17050 |
+ROW |24187 |17923 |17050 |
+ROW |24188 |17924 |17050 |
+ROW |24189 |17009 |17662 |
+ROW |24190 |17009 |17661 |
+ROW |24191 |16190 |16189 |
+ROW |24192 |17658 |17054 |
+ROW |24193 |17925 |17054 |
+ROW |24194 |17926 |17054 |
+ROW |24195 |17010 |17664 |
+ROW |24196 |17010 |17663 |
+ROW |24197 |17011 |16209 |
+ROW |24198 |17013 |16220 |
+ROW |24199 |17927 |17928 |
+ROW |24200 |17929 |17930 |
+ROW |24201 |16210 |16209 |
+ROW |24202 |16221 |16220 |
+ROW |24203 |16211 |16210 |
+ROW |24204 |16222 |16221 |
+ROW |24205 |16211 |16209 |
+ROW |24206 |16222 |16220 |
+ROW |24207 |16215 |17928 |
+ROW |24208 |16226 |17930 |
+ROW |24209 |16216 |17928 |
+ROW |24210 |16227 |17930 |
+ROW |24211 |16232 |16231 |
+ROW |24212 |17659 |17058 |
+ROW |24213 |17931 |17058 |
+ROW |24214 |17932 |17058 |
+ROW |24215 |17015 |17666 |
+ROW |24216 |17015 |17665 |
+ROW |24217 |16239 |16238 |
+ROW |24218 |17660 |17062 |
+ROW |24219 |17933 |17062 |
+ROW |24220 |17934 |17062 |
+ROW |24221 |17016 |17668 |
+ROW |24222 |17016 |17667 |
+ROW |24223 |18256 |18257 |
+ROW |24224 |18292 |18293 |
+ROW |24225 |18328 |18329 |
+ROW |24226 |18364 |18365 |
+ROW |24227 |18400 |18401 |
+ROW |24228 |18436 |18437 |
+ROW |24229 |18472 |18473 |
+ROW |24230 |18199 |18200 |
+ROW |24231 |18511 |18512 |
+ROW |24232 |18547 |18548 |
+ROW |24233 |18583 |18584 |
+ROW |24234 |16768 |16769 |
+ROW |24235 |16768 |16770 |
+ROW |24236 |16769 |16770 |
+ROW |24237 |16771 |16772 |
+ROW |24238 |16771 |16773 |
+ROW |24239 |16772 |16773 |
+ROW |24240 |16488 |16487 |
+ROW |24241 |16485 |16484 |
+ROW |24242 |16486 |16484 |
+ROW |24243 |16486 |16485 |
+ROW |24244 |16480 |16479 |
+ROW |24245 |16482 |16481 |
+ROW |24246 |16475 |16474 |
+ROW |24247 |16471 |16472 |
+ROW |24248 |16468 |16469 |
+ROW |24249 |16459 |16460 |
+ROW |24250 |16462 |16463 |
+ROW |24251 |16465 |16466 |
+ROW |24252 |16477 |16476 |
+ROW |24253 |15729 |15728 |
+ROW |24254 |15730 |15728 |
+ROW |24255 |15730 |15729 |
+ROW |24256 |15752 |15754 |
+ROW |24257 |15753 |15754 |
+ROW |24258 |15753 |15752 |
+ROW |24259 |15742 |15741 |
+ROW |24260 |15750 |15749 |
+ROW |24261 |15751 |15750 |
+ROW |24262 |15751 |15749 |
+ROW |24263 |15746 |15743 |
+ROW |24264 |15744 |15743 |
+ROW |24265 |15740 |15739 |
+ROW |24266 |17214 |17213 |
+ROW |24267 |17216 |17215 |
+ROW |24268 |15748 |15747 |
+ROW |24269 |16440 |16439 |
+ROW |24270 |17768 |15790 |
+ROW |24271 |17769 |15787 |
+ROW |24272 |17770 |15787 |
+ROW |24273 |17770 |17769 |
+ROW |24274 |15786 |15785 |
+ROW |24275 |15784 |15783 |
+ROW |24276 |15794 |15792 |
+ROW |24277 |15793 |15792 |
+ROW |24278 |15782 |15781 |
+ROW |24279 |15797 |15796 |
+ROW |24280 |15825 |15824 |
+ROW |24281 |15826 |15824 |
+ROW |24282 |15826 |15825 |
+ROW |24283 |15828 |15829 |
+ROW |24284 |15831 |15832 |
+ROW |24285 |15834 |15835 |
+ROW |24286 |15845 |15846 |
+ROW |24287 |17251 |17255 |
+ROW |24288 |17254 |17255 |
TABLE |functions
FIELDS|functionid|itemid|triggerid|name |parameter |
@@ -14797,9 +14687,6 @@ ROW |21623 |33457 |18177 |last |
ROW |21624 |33455 |18178 |last | |
ROW |21625 |33455 |18179 |last | |
ROW |21626 |33454 |18180 |min |{$TIME.PERIOD} |
-ROW |21627 |33452 |18181 |max |#3 |
-ROW |21628 |33451 |18182 |min |5m |
-ROW |21629 |33450 |18183 |avg |5m |
ROW |21630 |33448 |18184 |min |{$TIME.PERIOD} |
ROW |21631 |33448 |18184 |max |{$TIME.PERIOD} |
ROW |21632 |33447 |18185 |min |{$TIME.PERIOD} |
@@ -14816,8 +14703,6 @@ ROW |21642 |33444 |18194 |last |
ROW |21643 |33444 |18195 |last | |
ROW |21644 |33444 |18196 |last | |
ROW |21645 |33444 |18197 |last | |
-ROW |21646 |33437 |18198 |diff | |
-ROW |21647 |33437 |18198 |strlen | |
ROW |21648 |33434 |18199 |last | |
ROW |21649 |33459 |18200 |max |{$SNMP.TIMEOUT} |
ROW |21650 |33467 |18201 |regexp |"^(0)[0&pipe;1]{15}$" |
@@ -14870,9 +14755,6 @@ ROW |21697 |33593 |18234 |last |
ROW |21698 |33591 |18235 |last | |
ROW |21699 |33591 |18236 |last | |
ROW |21700 |33590 |18237 |min |{$TIME.PERIOD} |
-ROW |21701 |33588 |18238 |max |#3 |
-ROW |21702 |33587 |18239 |min |5m |
-ROW |21703 |33586 |18240 |avg |5m |
ROW |21704 |33584 |18241 |min |{$TIME.PERIOD} |
ROW |21705 |33584 |18241 |max |{$TIME.PERIOD} |
ROW |21706 |33583 |18242 |min |{$TIME.PERIOD} |
@@ -14889,8 +14771,6 @@ ROW |21716 |33580 |18251 |last |
ROW |21717 |33580 |18252 |last | |
ROW |21718 |33580 |18253 |last | |
ROW |21719 |33580 |18254 |last | |
-ROW |21720 |33573 |18255 |diff | |
-ROW |21721 |33573 |18255 |strlen | |
ROW |21722 |33570 |18256 |last | |
ROW |21723 |33595 |18257 |max |{$SNMP.TIMEOUT} |
ROW |21724 |33604 |18258 |regexp |"^(0)[0&pipe;1]{15}$" |
@@ -14911,9 +14791,6 @@ ROW |21738 |33644 |18270 |last |
ROW |21739 |33642 |18271 |last | |
ROW |21740 |33642 |18272 |last | |
ROW |21741 |33641 |18273 |min |{$TIME.PERIOD} |
-ROW |21742 |33639 |18274 |max |#3 |
-ROW |21743 |33638 |18275 |min |5m |
-ROW |21744 |33637 |18276 |avg |5m |
ROW |21745 |33635 |18277 |min |{$TIME.PERIOD} |
ROW |21746 |33635 |18277 |max |{$TIME.PERIOD} |
ROW |21747 |33634 |18278 |min |{$TIME.PERIOD} |
@@ -14930,8 +14807,6 @@ ROW |21757 |33631 |18287 |last |
ROW |21758 |33631 |18288 |last | |
ROW |21759 |33631 |18289 |last | |
ROW |21760 |33631 |18290 |last | |
-ROW |21761 |33624 |18291 |diff | |
-ROW |21762 |33624 |18291 |strlen | |
ROW |21763 |33621 |18292 |last | |
ROW |21764 |33646 |18293 |max |{$SNMP.TIMEOUT} |
ROW |21765 |33655 |18294 |regexp |"^(0)[0&pipe;1]{15}$" |
@@ -14952,9 +14827,6 @@ ROW |21779 |33695 |18306 |last |
ROW |21780 |33693 |18307 |last | |
ROW |21781 |33693 |18308 |last | |
ROW |21782 |33692 |18309 |min |{$TIME.PERIOD} |
-ROW |21783 |33690 |18310 |max |#3 |
-ROW |21784 |33689 |18311 |min |5m |
-ROW |21785 |33688 |18312 |avg |5m |
ROW |21786 |33686 |18313 |min |{$TIME.PERIOD} |
ROW |21787 |33686 |18313 |max |{$TIME.PERIOD} |
ROW |21788 |33685 |18314 |min |{$TIME.PERIOD} |
@@ -14971,8 +14843,6 @@ ROW |21798 |33682 |18323 |last |
ROW |21799 |33682 |18324 |last | |
ROW |21800 |33682 |18325 |last | |
ROW |21801 |33682 |18326 |last | |
-ROW |21802 |33675 |18327 |diff | |
-ROW |21803 |33675 |18327 |strlen | |
ROW |21804 |33672 |18328 |last | |
ROW |21805 |33697 |18329 |max |{$SNMP.TIMEOUT} |
ROW |21806 |33706 |18330 |regexp |"^(0)[0&pipe;1]{15}$" |
@@ -14993,9 +14863,6 @@ ROW |21820 |33746 |18342 |last |
ROW |21821 |33744 |18343 |last | |
ROW |21822 |33744 |18344 |last | |
ROW |21823 |33743 |18345 |min |{$TIME.PERIOD} |
-ROW |21824 |33741 |18346 |max |#3 |
-ROW |21825 |33740 |18347 |min |5m |
-ROW |21826 |33739 |18348 |avg |5m |
ROW |21827 |33737 |18349 |min |{$TIME.PERIOD} |
ROW |21828 |33737 |18349 |max |{$TIME.PERIOD} |
ROW |21829 |33736 |18350 |min |{$TIME.PERIOD} |
@@ -15012,8 +14879,6 @@ ROW |21839 |33733 |18359 |last |
ROW |21840 |33733 |18360 |last | |
ROW |21841 |33733 |18361 |last | |
ROW |21842 |33733 |18362 |last | |
-ROW |21843 |33726 |18363 |diff | |
-ROW |21844 |33726 |18363 |strlen | |
ROW |21845 |33723 |18364 |last | |
ROW |21846 |33748 |18365 |max |{$SNMP.TIMEOUT} |
ROW |21847 |33757 |18366 |regexp |"^(0)[0&pipe;1]{15}$" |
@@ -15034,9 +14899,6 @@ ROW |21861 |33797 |18378 |last |
ROW |21862 |33795 |18379 |last | |
ROW |21863 |33795 |18380 |last | |
ROW |21864 |33794 |18381 |min |{$TIME.PERIOD} |
-ROW |21865 |33792 |18382 |max |#3 |
-ROW |21866 |33791 |18383 |min |5m |
-ROW |21867 |33790 |18384 |avg |5m |
ROW |21868 |33788 |18385 |min |{$TIME.PERIOD} |
ROW |21869 |33788 |18385 |max |{$TIME.PERIOD} |
ROW |21870 |33787 |18386 |min |{$TIME.PERIOD} |
@@ -15053,8 +14915,6 @@ ROW |21880 |33784 |18395 |last |
ROW |21881 |33784 |18396 |last | |
ROW |21882 |33784 |18397 |last | |
ROW |21883 |33784 |18398 |last | |
-ROW |21884 |33777 |18399 |diff | |
-ROW |21885 |33777 |18399 |strlen | |
ROW |21886 |33774 |18400 |last | |
ROW |21887 |33799 |18401 |max |{$SNMP.TIMEOUT} |
ROW |21888 |33808 |18402 |regexp |"^(0)[0&pipe;1]{15}$" |
@@ -15075,9 +14935,6 @@ ROW |21902 |33848 |18414 |last |
ROW |21903 |33846 |18415 |last | |
ROW |21904 |33846 |18416 |last | |
ROW |21905 |33845 |18417 |min |{$TIME.PERIOD} |
-ROW |21906 |33843 |18418 |max |#3 |
-ROW |21907 |33842 |18419 |min |5m |
-ROW |21908 |33841 |18420 |avg |5m |
ROW |21909 |33839 |18421 |min |{$TIME.PERIOD} |
ROW |21910 |33839 |18421 |max |{$TIME.PERIOD} |
ROW |21911 |33838 |18422 |min |{$TIME.PERIOD} |
@@ -15094,8 +14951,6 @@ ROW |21921 |33835 |18431 |last |
ROW |21922 |33835 |18432 |last | |
ROW |21923 |33835 |18433 |last | |
ROW |21924 |33835 |18434 |last | |
-ROW |21925 |33828 |18435 |diff | |
-ROW |21926 |33828 |18435 |strlen | |
ROW |21927 |33825 |18436 |last | |
ROW |21928 |33850 |18437 |max |{$SNMP.TIMEOUT} |
ROW |21929 |33859 |18438 |regexp |"^(0)[0&pipe;1]{15}$" |
@@ -15116,9 +14971,6 @@ ROW |21943 |33899 |18450 |last |
ROW |21944 |33897 |18451 |last | |
ROW |21945 |33897 |18452 |last | |
ROW |21946 |33896 |18453 |min |{$TIME.PERIOD} |
-ROW |21947 |33894 |18454 |max |#3 |
-ROW |21948 |33893 |18455 |min |5m |
-ROW |21949 |33892 |18456 |avg |5m |
ROW |21950 |33890 |18457 |min |{$TIME.PERIOD} |
ROW |21951 |33890 |18457 |max |{$TIME.PERIOD} |
ROW |21952 |33889 |18458 |min |{$TIME.PERIOD} |
@@ -15135,8 +14987,6 @@ ROW |21962 |33886 |18467 |last |
ROW |21963 |33886 |18468 |last | |
ROW |21964 |33886 |18469 |last | |
ROW |21965 |33886 |18470 |last | |
-ROW |21966 |33879 |18471 |diff | |
-ROW |21967 |33879 |18471 |strlen | |
ROW |21968 |33876 |18472 |last | |
ROW |21969 |33901 |18473 |max |{$SNMP.TIMEOUT} |
ROW |21970 |33910 |18474 |regexp |"^(0)[0&pipe;1]{15}$" |
@@ -15161,9 +15011,6 @@ ROW |21988 |33955 |18489 |last |
ROW |21989 |33953 |18490 |last | |
ROW |21990 |33953 |18491 |last | |
ROW |21991 |33952 |18492 |min |{$TIME.PERIOD} |
-ROW |21992 |33950 |18493 |max |#3 |
-ROW |21993 |33949 |18494 |min |5m |
-ROW |21994 |33948 |18495 |avg |5m |
ROW |21995 |33946 |18496 |min |{$TIME.PERIOD} |
ROW |21996 |33946 |18496 |max |{$TIME.PERIOD} |
ROW |21997 |33945 |18497 |min |{$TIME.PERIOD} |
@@ -15180,8 +15027,6 @@ ROW |22007 |33942 |18506 |last |
ROW |22008 |33942 |18507 |last | |
ROW |22009 |33942 |18508 |last | |
ROW |22010 |33942 |18509 |last | |
-ROW |22011 |33935 |18510 |diff | |
-ROW |22012 |33935 |18510 |strlen | |
ROW |22013 |33932 |18511 |last | |
ROW |22014 |33957 |18512 |max |{$SNMP.TIMEOUT} |
ROW |22015 |33966 |18513 |regexp |"^(0)[0&pipe;1]{15}$" |
@@ -15202,9 +15047,6 @@ ROW |22029 |34006 |18525 |last |
ROW |22030 |34004 |18526 |last | |
ROW |22031 |34004 |18527 |last | |
ROW |22032 |34003 |18528 |min |{$TIME.PERIOD} |
-ROW |22033 |34001 |18529 |max |#3 |
-ROW |22034 |34000 |18530 |min |5m |
-ROW |22035 |33999 |18531 |avg |5m |
ROW |22036 |33997 |18532 |min |{$TIME.PERIOD} |
ROW |22037 |33997 |18532 |max |{$TIME.PERIOD} |
ROW |22038 |33996 |18533 |min |{$TIME.PERIOD} |
@@ -15221,8 +15063,6 @@ ROW |22048 |33993 |18542 |last |
ROW |22049 |33993 |18543 |last | |
ROW |22050 |33993 |18544 |last | |
ROW |22051 |33993 |18545 |last | |
-ROW |22052 |33986 |18546 |diff | |
-ROW |22053 |33986 |18546 |strlen | |
ROW |22054 |33983 |18547 |last | |
ROW |22055 |34008 |18548 |max |{$SNMP.TIMEOUT} |
ROW |22056 |34017 |18549 |regexp |"^(0)[0&pipe;1]{15}$" |
@@ -15243,9 +15083,6 @@ ROW |22070 |34057 |18561 |last |
ROW |22071 |34055 |18562 |last | |
ROW |22072 |34055 |18563 |last | |
ROW |22073 |34054 |18564 |min |{$TIME.PERIOD} |
-ROW |22074 |34052 |18565 |max |#3 |
-ROW |22075 |34051 |18566 |min |5m |
-ROW |22076 |34050 |18567 |avg |5m |
ROW |22077 |34048 |18568 |min |{$TIME.PERIOD} |
ROW |22078 |34048 |18568 |max |{$TIME.PERIOD} |
ROW |22079 |34047 |18569 |min |{$TIME.PERIOD} |
@@ -15262,8 +15099,6 @@ ROW |22089 |34044 |18578 |last |
ROW |22090 |34044 |18579 |last | |
ROW |22091 |34044 |18580 |last | |
ROW |22092 |34044 |18581 |last | |
-ROW |22093 |34037 |18582 |diff | |
-ROW |22094 |34037 |18582 |strlen | |
ROW |22095 |34034 |18583 |last | |
ROW |22096 |34059 |18584 |max |{$SNMP.TIMEOUT} |
ROW |22097 |34068 |18585 |regexp |"^(0)[0&pipe;1]{15}$" |
@@ -15279,6 +15114,28 @@ ROW |22106 |34079 |18594 |min |{$TIME.PERIOD}
ROW |22107 |34079 |18594 |max |{$TIME.PERIOD} |
ROW |22108 |34082 |18595 |min |{$TIME.PERIOD} |
ROW |22109 |34082 |18595 |max |{$TIME.PERIOD} |
+ROW |22110 |34083 |18596 |diff | |
+ROW |22111 |34083 |18596 |strlen | |
+ROW |22112 |34084 |18597 |diff | |
+ROW |22113 |34084 |18597 |strlen | |
+ROW |22114 |34085 |18598 |diff | |
+ROW |22115 |34085 |18598 |strlen | |
+ROW |22116 |34086 |18599 |diff | |
+ROW |22117 |34086 |18599 |strlen | |
+ROW |22118 |34087 |18600 |diff | |
+ROW |22119 |34087 |18600 |strlen | |
+ROW |22120 |34088 |18601 |diff | |
+ROW |22121 |34088 |18601 |strlen | |
+ROW |22122 |34089 |18602 |diff | |
+ROW |22123 |34089 |18602 |strlen | |
+ROW |22124 |34090 |18603 |diff | |
+ROW |22125 |34090 |18603 |strlen | |
+ROW |22126 |34091 |18604 |diff | |
+ROW |22127 |34091 |18604 |strlen | |
+ROW |22128 |34092 |18605 |diff | |
+ROW |22129 |34092 |18605 |strlen | |
+ROW |22130 |34093 |18606 |diff | |
+ROW |22131 |34093 |18606 |strlen | |
TABLE |graphs
FIELDS|graphid|name |width|height|yaxismin|yaxismax|templateid|show_work_period|show_triggers|graphtype|show_legend|show_3d|percent_left|percent_right|ymin_type|ymax_type|ymin_itemid|ymax_itemid|flags|discover|
@@ -16162,2081 +16019,2081 @@ ROW |45178 |1017 |29766 |5 |0 |1A7C11|0 |2 |0 |
ROW |45179 |1024 |29776 |5 |0 |1A7C11|0 |2 |0 |
ROW |45180 |1024 |29777 |0 |1 |2774A4|0 |2 |0 |
ROW |45181 |1026 |29772 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48641 |1374 |32471 |5 |0 |1A7C11|0 |2 |0 |
-ROW |48642 |1375 |32469 |5 |0 |1A7C11|0 |2 |0 |
-ROW |48643 |1375 |32468 |5 |1 |2774A4|0 |2 |0 |
-ROW |48644 |1376 |32472 |5 |0 |1A7C11|0 |2 |0 |
-ROW |48645 |1376 |32467 |5 |1 |2774A4|0 |2 |0 |
-ROW |48646 |1377 |32483 |5 |0 |1A7C11|0 |2 |0 |
-ROW |48647 |1377 |32482 |5 |1 |2774A4|0 |2 |0 |
-ROW |48648 |1378 |32484 |5 |0 |1A7C11|0 |2 |0 |
-ROW |48649 |1378 |32481 |5 |1 |2774A4|0 |2 |0 |
-ROW |48650 |1379 |32476 |5 |0 |1A7C11|0 |2 |0 |
-ROW |48651 |1379 |32478 |5 |1 |2774A4|0 |2 |0 |
-ROW |48652 |1379 |32480 |5 |2 |F63100|0 |2 |0 |
-ROW |48653 |1172 |30918 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48654 |1172 |30919 |0 |1 |2774A4|0 |2 |0 |
-ROW |48655 |1172 |30920 |0 |2 |F63100|0 |2 |0 |
-ROW |48656 |1172 |30921 |2 |3 |A54F10|0 |2 |0 |
-ROW |48657 |1173 |30922 |5 |0 |1A7C11|0 |2 |0 |
-ROW |48658 |835 |28744 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48659 |835 |28745 |0 |1 |2774A4|0 |2 |0 |
-ROW |48660 |1174 |30913 |5 |0 |1A7C11|0 |2 |0 |
-ROW |48661 |1175 |30906 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48662 |1175 |30908 |0 |1 |2774A4|0 |2 |0 |
-ROW |48663 |1175 |30915 |0 |2 |F63100|0 |2 |0 |
-ROW |48664 |1175 |30897 |0 |3 |A54F10|0 |2 |0 |
-ROW |48665 |1175 |30901 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |48666 |1175 |30899 |0 |5 |6C59DC|0 |2 |0 |
-ROW |48667 |1175 |30907 |0 |6 |AC8C14|0 |2 |0 |
-ROW |48668 |1175 |30905 |0 |7 |611F27|0 |2 |0 |
-ROW |48669 |1175 |30904 |0 |8 |F230E0|0 |2 |0 |
-ROW |48670 |1175 |30900 |0 |9 |FFAD40|0 |2 |0 |
-ROW |48671 |1175 |30898 |0 |10 |40CDFF|0 |2 |0 |
-ROW |48672 |1176 |30910 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48673 |1176 |30909 |0 |1 |2774A4|0 |2 |0 |
-ROW |48674 |836 |28798 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48675 |836 |28799 |0 |1 |2774A4|0 |2 |0 |
-ROW |48676 |836 |28800 |0 |2 |F63100|0 |2 |0 |
-ROW |48677 |836 |28801 |2 |3 |A54F10|0 |2 |0 |
-ROW |48678 |837 |28803 |5 |0 |1A7C11|0 |2 |0 |
-ROW |48679 |838 |28793 |5 |0 |1A7C11|0 |2 |0 |
-ROW |48680 |840 |28787 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48681 |840 |28784 |0 |1 |2774A4|0 |2 |0 |
-ROW |48682 |840 |28782 |0 |2 |F63100|0 |2 |0 |
-ROW |48683 |840 |28781 |0 |3 |A54F10|0 |2 |0 |
-ROW |48684 |840 |28780 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |48685 |840 |28778 |0 |5 |6C59DC|0 |2 |0 |
-ROW |48686 |840 |28786 |0 |6 |AC8C14|0 |2 |0 |
-ROW |48687 |840 |28785 |0 |7 |611F27|0 |2 |0 |
-ROW |48688 |840 |28783 |0 |8 |F230E0|0 |2 |0 |
-ROW |48689 |840 |28779 |0 |9 |FFAD40|0 |2 |0 |
-ROW |48690 |840 |28796 |0 |10 |40CDFF|0 |2 |0 |
-ROW |48691 |839 |28789 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48692 |839 |28788 |0 |1 |2774A4|0 |2 |0 |
-ROW |48693 |1278 |31855 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48694 |1278 |31856 |0 |1 |2774A4|0 |2 |0 |
-ROW |48695 |1304 |32007 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48696 |1304 |32010 |0 |1 |2774A4|0 |2 |0 |
-ROW |48697 |1305 |32008 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48698 |1305 |32011 |0 |1 |2774A4|0 |2 |0 |
-ROW |48699 |1306 |32003 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48700 |1306 |32004 |0 |1 |2774A4|0 |2 |0 |
-ROW |48701 |1306 |32009 |0 |2 |F63100|0 |2 |0 |
-ROW |48702 |1282 |31818 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48703 |1282 |31825 |0 |1 |2774A4|0 |2 |0 |
-ROW |48704 |1283 |31850 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48705 |1283 |31819 |0 |1 |2774A4|0 |2 |0 |
-ROW |48706 |1284 |31824 |1 |0 |1A7C11|0 |2 |0 |
-ROW |48707 |1284 |31821 |1 |1 |2774A4|0 |2 |0 |
-ROW |48708 |1285 |31839 |2 |0 |1A7C11|0 |2 |0 |
-ROW |48709 |1285 |31841 |0 |1 |2774A4|0 |2 |0 |
-ROW |48710 |1285 |31842 |0 |2 |F63100|0 |2 |0 |
-ROW |48711 |1285 |31837 |2 |3 |A54F10|0 |2 |0 |
-ROW |48712 |1285 |31838 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |48713 |1285 |31829 |0 |5 |6C59DC|0 |2 |0 |
-ROW |48714 |1286 |31833 |2 |0 |1A7C11|0 |2 |0 |
-ROW |48715 |1286 |31834 |0 |1 |2774A4|0 |2 |0 |
-ROW |48716 |1286 |31835 |0 |2 |F63100|0 |2 |0 |
-ROW |48717 |1121 |30606 |5 |0 |1A7C11|0 |2 |0 |
-ROW |48718 |1121 |30590 |5 |1 |2774A4|0 |2 |0 |
-ROW |48719 |1121 |30582 |5 |2 |F63100|0 |2 |0 |
-ROW |48720 |1122 |30580 |5 |0 |1A7C11|0 |2 |0 |
-ROW |48721 |1122 |30578 |5 |1 |2774A4|0 |2 |0 |
-ROW |48722 |1123 |30586 |2 |0 |1A7C11|0 |2 |0 |
-ROW |48723 |1123 |30608 |2 |1 |2774A4|0 |2 |0 |
-ROW |48724 |1123 |30585 |2 |2 |F63100|0 |2 |0 |
-ROW |48725 |1123 |30589 |2 |3 |A54F10|0 |2 |0 |
-ROW |48726 |1123 |30584 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |48727 |1123 |30588 |2 |5 |6C59DC|0 |2 |0 |
-ROW |48728 |1124 |30583 |2 |0 |1A7C11|0 |2 |0 |
-ROW |48729 |1124 |30587 |2 |1 |2774A4|0 |2 |0 |
-ROW |48730 |1125 |30555 |5 |0 |1A7C11|0 |2 |0 |
-ROW |48731 |1125 |30554 |2 |1 |2774A4|0 |2 |0 |
-ROW |48732 |1125 |30556 |2 |2 |F63100|0 |2 |0 |
-ROW |48733 |1125 |30557 |2 |3 |A54F10|0 |2 |0 |
-ROW |48734 |1126 |30565 |5 |0 |1A7C11|0 |2 |0 |
-ROW |48735 |1127 |30567 |2 |0 |1A7C11|0 |2 |0 |
-ROW |48736 |1127 |30568 |2 |1 |2774A4|0 |2 |0 |
-ROW |48737 |1128 |30536 |2 |0 |1A7C11|0 |2 |0 |
-ROW |48738 |1129 |30566 |2 |0 |1A7C11|0 |2 |0 |
-ROW |48739 |1129 |30549 |2 |1 |2774A4|0 |2 |0 |
-ROW |48740 |1129 |30553 |2 |2 |F63100|0 |2 |0 |
-ROW |48741 |1129 |30570 |2 |3 |A54F10|0 |2 |0 |
-ROW |48742 |1143 |30714 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48743 |1143 |30716 |0 |1 |2774A4|0 |2 |0 |
-ROW |48744 |1143 |30717 |0 |2 |F63100|0 |2 |0 |
-ROW |48745 |1143 |30715 |0 |3 |A54F10|0 |2 |0 |
-ROW |48746 |1144 |30753 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48747 |1144 |30738 |0 |1 |2774A4|0 |2 |0 |
-ROW |48748 |1145 |30718 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48749 |1145 |30737 |0 |1 |2774A4|0 |2 |0 |
-ROW |48750 |1145 |30727 |0 |2 |F63100|0 |2 |0 |
-ROW |48751 |1145 |30729 |0 |3 |A54F10|0 |2 |0 |
-ROW |48752 |1146 |30730 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48753 |1146 |30732 |0 |1 |2774A4|0 |2 |0 |
-ROW |48754 |1146 |30731 |0 |2 |F63100|0 |2 |0 |
-ROW |48755 |1146 |30733 |0 |3 |A54F10|0 |2 |0 |
-ROW |48756 |1147 |30734 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48757 |1147 |30736 |0 |1 |2774A4|0 |2 |0 |
-ROW |48758 |1147 |30735 |0 |2 |F63100|0 |2 |0 |
-ROW |48759 |1147 |30758 |0 |3 |A54F10|0 |2 |0 |
-ROW |48760 |1148 |30711 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48761 |1148 |30706 |0 |1 |2774A4|0 |2 |0 |
-ROW |48762 |1148 |30710 |0 |2 |F63100|0 |2 |0 |
-ROW |48763 |1148 |30712 |0 |3 |A54F10|0 |2 |0 |
-ROW |48764 |1148 |30702 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |48765 |1148 |30707 |0 |5 |6C59DC|0 |2 |0 |
-ROW |48766 |1148 |30704 |0 |6 |AC8C14|0 |2 |0 |
-ROW |48767 |1177 |30927 |5 |0 |1A7C11|0 |2 |0 |
-ROW |48768 |1177 |30944 |2 |1 |2774A4|0 |2 |0 |
-ROW |48769 |1178 |30935 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48770 |1178 |30942 |0 |1 |2774A4|0 |2 |0 |
-ROW |48771 |1179 |30949 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48772 |1179 |30950 |0 |1 |2774A4|0 |2 |0 |
-ROW |48773 |1179 |30951 |0 |2 |F63100|0 |2 |0 |
-ROW |48774 |1180 |30952 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48775 |1180 |30954 |0 |1 |2774A4|0 |2 |0 |
-ROW |48776 |1180 |30955 |0 |2 |F63100|0 |2 |0 |
-ROW |48777 |1181 |30936 |5 |0 |1A7C11|0 |2 |0 |
-ROW |48778 |1181 |30940 |5 |1 |2774A4|0 |2 |0 |
-ROW |48779 |1182 |30930 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48780 |1182 |30929 |0 |1 |2774A4|0 |2 |0 |
-ROW |48781 |1182 |30928 |0 |2 |F63100|0 |2 |0 |
-ROW |48782 |1182 |30931 |2 |3 |A54F10|1 |2 |0 |
-ROW |48783 |1183 |30934 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48784 |1183 |30941 |0 |1 |2774A4|0 |2 |0 |
-ROW |48785 |1380 |32498 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48786 |1380 |32499 |0 |1 |2774A4|0 |2 |0 |
-ROW |48787 |1381 |32505 |0 |0 |1A7C11|1 |2 |0 |
-ROW |48788 |1381 |32508 |0 |1 |2774A4|1 |2 |0 |
-ROW |48789 |1381 |32506 |0 |2 |F63100|0 |2 |0 |
-ROW |48790 |1381 |32507 |0 |3 |A54F10|0 |2 |0 |
-ROW |48791 |1381 |32509 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |48792 |1381 |32510 |0 |5 |6C59DC|0 |2 |0 |
-ROW |48793 |1382 |32488 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48794 |1382 |32491 |0 |1 |2774A4|0 |2 |0 |
-ROW |48795 |1382 |32493 |0 |2 |F63100|0 |2 |0 |
-ROW |48796 |1382 |32494 |0 |3 |A54F10|0 |2 |0 |
-ROW |48797 |1383 |32528 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48798 |1383 |32529 |0 |1 |2774A4|0 |2 |0 |
-ROW |48799 |1384 |32535 |0 |0 |1A7C11|1 |2 |0 |
-ROW |48800 |1384 |32538 |0 |1 |2774A4|1 |2 |0 |
-ROW |48801 |1384 |32536 |0 |2 |F63100|0 |2 |0 |
-ROW |48802 |1384 |32537 |0 |3 |A54F10|0 |2 |0 |
-ROW |48803 |1384 |32539 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |48804 |1384 |32540 |0 |5 |6C59DC|0 |2 |0 |
-ROW |48805 |1385 |32518 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48806 |1385 |32521 |0 |1 |2774A4|0 |2 |0 |
-ROW |48807 |1385 |32523 |0 |2 |F63100|0 |2 |0 |
-ROW |48808 |1385 |32524 |0 |3 |A54F10|0 |2 |0 |
-ROW |48809 |1250 |31527 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48810 |1250 |31529 |0 |1 |2774A4|0 |2 |0 |
-ROW |48811 |1250 |31499 |0 |2 |F63100|0 |2 |0 |
-ROW |48812 |1251 |31532 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48813 |1251 |31534 |0 |1 |2774A4|0 |2 |0 |
-ROW |48814 |1251 |31538 |0 |2 |F63100|0 |2 |0 |
-ROW |48815 |1251 |31536 |0 |3 |A54F10|0 |2 |0 |
-ROW |48816 |1251 |31528 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |48817 |1251 |31542 |0 |5 |6C59DC|0 |2 |0 |
-ROW |48818 |1252 |31552 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48819 |1252 |31551 |0 |1 |2774A4|0 |2 |0 |
-ROW |48820 |1252 |31541 |0 |2 |F63100|0 |2 |0 |
-ROW |48821 |1253 |31513 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48822 |1253 |31526 |0 |1 |2774A4|0 |2 |0 |
-ROW |48823 |1253 |31525 |0 |2 |F63100|0 |2 |0 |
-ROW |48824 |1254 |31502 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48825 |1254 |31501 |0 |1 |2774A4|0 |2 |0 |
-ROW |48826 |1254 |31503 |0 |2 |F63100|0 |2 |0 |
-ROW |48827 |1255 |31505 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48828 |1255 |31504 |0 |1 |2774A4|0 |2 |0 |
-ROW |48829 |1255 |31506 |0 |2 |F63100|0 |2 |0 |
-ROW |48830 |1256 |31508 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48831 |1256 |31507 |0 |1 |2774A4|0 |2 |0 |
-ROW |48832 |1256 |31509 |0 |2 |F63100|0 |2 |0 |
-ROW |48833 |1257 |31511 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48834 |1257 |31510 |0 |1 |2774A4|0 |2 |0 |
-ROW |48835 |1257 |31500 |0 |2 |F63100|0 |2 |0 |
-ROW |48836 |1258 |31514 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48837 |1258 |31512 |0 |1 |2774A4|0 |2 |0 |
-ROW |48838 |1258 |31515 |0 |2 |F63100|0 |2 |0 |
-ROW |48839 |1259 |31516 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48840 |1259 |31517 |0 |1 |2774A4|0 |2 |0 |
-ROW |48841 |1260 |31523 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48842 |1260 |31522 |0 |1 |2774A4|0 |2 |0 |
-ROW |48843 |1260 |31524 |0 |2 |F63100|0 |2 |0 |
-ROW |48844 |1307 |32051 |1 |0 |1A7C11|0 |2 |0 |
-ROW |48845 |1307 |32057 |1 |1 |2774A4|0 |2 |0 |
-ROW |48846 |1149 |30770 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48847 |1149 |30771 |0 |1 |2774A4|0 |2 |0 |
-ROW |48848 |1075 |30204 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48849 |1075 |30205 |0 |1 |2774A4|0 |2 |0 |
-ROW |48850 |1150 |30775 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48851 |1150 |30774 |0 |1 |2774A4|0 |2 |0 |
-ROW |48852 |1151 |30772 |5 |0 |1A7C11|0 |2 |0 |
-ROW |48853 |1151 |30773 |5 |1 |2774A4|0 |2 |0 |
-ROW |48854 |1152 |30777 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48855 |1152 |30776 |0 |1 |2774A4|0 |2 |0 |
-ROW |48856 |1076 |30209 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48857 |1076 |30208 |0 |1 |2774A4|0 |2 |0 |
-ROW |48858 |1077 |30206 |5 |0 |1A7C11|0 |2 |0 |
-ROW |48859 |1077 |30207 |5 |1 |2774A4|0 |2 |0 |
-ROW |48860 |1078 |30216 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48861 |1078 |30215 |0 |1 |2774A4|0 |2 |0 |
-ROW |48862 |1079 |30210 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48863 |1079 |30211 |0 |1 |2774A4|0 |2 |0 |
-ROW |48864 |1079 |30212 |0 |2 |F63100|0 |2 |0 |
-ROW |48865 |1079 |30213 |0 |3 |A54F10|0 |2 |0 |
-ROW |48866 |1079 |30214 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |48867 |1153 |30785 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48868 |1153 |30784 |0 |1 |2774A4|0 |2 |0 |
-ROW |48869 |1080 |30226 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48870 |1080 |30225 |0 |1 |2774A4|0 |2 |0 |
-ROW |48871 |1154 |30802 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48872 |1154 |30803 |0 |1 |2774A4|0 |2 |0 |
-ROW |48873 |1081 |30247 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48874 |1081 |30248 |0 |1 |2774A4|0 |2 |0 |
-ROW |48875 |1155 |30807 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48876 |1155 |30806 |0 |1 |2774A4|0 |2 |0 |
-ROW |48877 |1156 |30804 |5 |0 |1A7C11|0 |2 |0 |
-ROW |48878 |1156 |30805 |5 |1 |2774A4|0 |2 |0 |
-ROW |48879 |1157 |30809 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48880 |1157 |30808 |0 |1 |2774A4|0 |2 |0 |
-ROW |48881 |1082 |30252 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48882 |1082 |30251 |0 |1 |2774A4|0 |2 |0 |
-ROW |48883 |1083 |30249 |5 |0 |1A7C11|0 |2 |0 |
-ROW |48884 |1083 |30250 |5 |1 |2774A4|0 |2 |0 |
-ROW |48885 |1084 |30259 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48886 |1084 |30258 |0 |1 |2774A4|0 |2 |0 |
-ROW |48887 |1085 |30253 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48888 |1085 |30254 |0 |1 |2774A4|0 |2 |0 |
-ROW |48889 |1085 |30255 |0 |2 |F63100|0 |2 |0 |
-ROW |48890 |1085 |30256 |0 |3 |A54F10|0 |2 |0 |
-ROW |48891 |1085 |30257 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |48892 |1158 |30817 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48893 |1158 |30816 |0 |1 |2774A4|0 |2 |0 |
-ROW |48894 |1086 |30269 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48895 |1086 |30268 |0 |1 |2774A4|0 |2 |0 |
-ROW |48896 |1184 |30982 |5 |0 |1A7C11|0 |2 |0 |
-ROW |48897 |1184 |30980 |5 |1 |2774A4|0 |2 |0 |
-ROW |48898 |1185 |30983 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48899 |1185 |30981 |0 |1 |2774A4|0 |2 |0 |
-ROW |48900 |1186 |30976 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48901 |1186 |30985 |0 |1 |2774A4|0 |2 |0 |
-ROW |48902 |1186 |30997 |0 |2 |F63100|0 |2 |0 |
-ROW |48903 |1186 |30970 |0 |3 |A54F10|0 |2 |0 |
-ROW |48904 |1186 |30973 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |48905 |1186 |30995 |0 |5 |6C59DC|0 |2 |0 |
-ROW |48906 |1186 |30998 |0 |6 |AC8C14|0 |2 |0 |
-ROW |48907 |1186 |30978 |0 |7 |611F27|0 |2 |0 |
-ROW |48908 |1187 |31024 |5 |0 |1A7C11|0 |2 |0 |
-ROW |48909 |1187 |31022 |5 |1 |2774A4|0 |2 |0 |
-ROW |48910 |1188 |31025 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48911 |1188 |31023 |0 |1 |2774A4|0 |2 |0 |
-ROW |48912 |1189 |31018 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48913 |1189 |31027 |0 |1 |2774A4|0 |2 |0 |
-ROW |48914 |1189 |31039 |0 |2 |F63100|0 |2 |0 |
-ROW |48915 |1189 |31012 |0 |3 |A54F10|0 |2 |0 |
-ROW |48916 |1189 |31015 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |48917 |1189 |31037 |0 |5 |6C59DC|0 |2 |0 |
-ROW |48918 |1189 |31040 |0 |6 |AC8C14|0 |2 |0 |
-ROW |48919 |1189 |31020 |0 |7 |611F27|0 |2 |0 |
-ROW |48920 |1308 |32078 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48921 |1308 |32077 |0 |1 |2774A4|0 |2 |0 |
-ROW |48922 |1309 |32088 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48923 |1309 |32087 |0 |1 |2774A4|0 |2 |0 |
-ROW |48924 |1310 |32071 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48925 |1310 |32102 |0 |1 |2774A4|0 |2 |0 |
-ROW |48926 |1311 |32108 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48927 |1311 |32109 |0 |1 |2774A4|0 |2 |0 |
-ROW |48928 |1311 |32106 |0 |2 |F63100|0 |2 |0 |
-ROW |48929 |1311 |32107 |0 |3 |A54F10|0 |2 |0 |
-ROW |48930 |1312 |32083 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48931 |1312 |32084 |0 |1 |2774A4|0 |2 |0 |
-ROW |48932 |1313 |32080 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48933 |1313 |32081 |0 |1 |2774A4|0 |2 |0 |
-ROW |48934 |1314 |32086 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48935 |1314 |32100 |2 |1 |2774A4|0 |2 |0 |
-ROW |48936 |1314 |32073 |0 |2 |F63100|0 |2 |0 |
-ROW |48937 |1314 |32131 |0 |3 |A54F10|0 |2 |0 |
-ROW |48938 |1314 |32118 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |48939 |1314 |32101 |0 |5 |6C59DC|0 |2 |0 |
-ROW |48940 |1314 |32125 |0 |6 |AC8C14|0 |2 |0 |
-ROW |48941 |1314 |32126 |2 |7 |611F27|0 |2 |0 |
-ROW |48942 |1314 |32127 |0 |8 |F230E0|0 |2 |0 |
-ROW |48943 |1314 |32128 |0 |9 |FFAD40|0 |2 |0 |
-ROW |48944 |1314 |32129 |2 |10 |40CDFF|0 |2 |0 |
-ROW |48945 |1314 |32130 |0 |11 |40FFA0|0 |2 |0 |
-ROW |48946 |1315 |32124 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48947 |1315 |32123 |2 |1 |2774A4|0 |2 |0 |
-ROW |48948 |1315 |32122 |0 |2 |F63100|0 |2 |0 |
-ROW |48949 |1315 |32121 |0 |3 |A54F10|0 |2 |0 |
-ROW |48950 |1315 |32121 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |48951 |1315 |32120 |0 |5 |6C59DC|0 |2 |0 |
-ROW |48952 |1316 |32098 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48953 |1316 |32099 |0 |1 |2774A4|0 |2 |0 |
-ROW |48954 |1316 |32097 |0 |2 |F63100|0 |2 |0 |
-ROW |48955 |1316 |32096 |0 |3 |A54F10|0 |2 |0 |
-ROW |48956 |1130 |30613 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48957 |1130 |30635 |0 |1 |2774A4|0 |2 |0 |
-ROW |48958 |1130 |30625 |0 |2 |F63100|0 |2 |0 |
-ROW |48959 |1131 |30632 |5 |0 |1A7C11|0 |2 |0 |
-ROW |48960 |1131 |30633 |5 |1 |2774A4|0 |2 |0 |
-ROW |48961 |1131 |30629 |5 |2 |F63100|0 |2 |0 |
-ROW |48962 |1132 |30630 |2 |0 |1A7C11|0 |2 |0 |
-ROW |48963 |1132 |30628 |2 |1 |2774A4|0 |2 |0 |
-ROW |48964 |1132 |30631 |2 |2 |F63100|0 |2 |0 |
-ROW |48965 |1133 |30619 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48966 |1133 |30618 |0 |1 |2774A4|0 |2 |0 |
-ROW |48967 |1134 |30623 |5 |0 |1A7C11|0 |2 |0 |
-ROW |48968 |1134 |30622 |5 |1 |2774A4|0 |2 |0 |
-ROW |48969 |1135 |30615 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48970 |841 |28813 |2 |0 |1A7C11|0 |2 |0 |
-ROW |48971 |841 |28811 |0 |1 |2774A4|0 |2 |0 |
-ROW |48972 |841 |28812 |0 |2 |F63100|0 |2 |0 |
-ROW |48973 |841 |28814 |0 |3 |A54F10|0 |2 |0 |
-ROW |48974 |842 |28817 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48975 |842 |28815 |0 |1 |2774A4|0 |2 |0 |
-ROW |48976 |842 |28816 |0 |2 |F63100|0 |2 |0 |
-ROW |48977 |844 |28808 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48978 |844 |28807 |0 |1 |2774A4|0 |2 |0 |
-ROW |48979 |843 |28818 |5 |0 |1A7C11|0 |2 |0 |
-ROW |48980 |845 |28829 |2 |0 |1A7C11|0 |2 |0 |
-ROW |48981 |845 |28831 |0 |1 |2774A4|0 |2 |0 |
-ROW |48982 |845 |28832 |0 |2 |F63100|0 |2 |0 |
-ROW |48983 |845 |28830 |0 |3 |A54F10|0 |2 |0 |
-ROW |48984 |846 |28826 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48985 |846 |28828 |0 |1 |2774A4|0 |2 |0 |
-ROW |48986 |846 |28827 |0 |2 |F63100|0 |2 |0 |
-ROW |48987 |847 |28825 |5 |0 |1A7C11|0 |2 |0 |
-ROW |48988 |1287 |31890 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48989 |1287 |31882 |0 |1 |2774A4|0 |2 |0 |
-ROW |48990 |1287 |31880 |0 |2 |F63100|0 |2 |0 |
-ROW |48991 |1287 |31883 |0 |3 |A54F10|0 |2 |0 |
-ROW |48992 |1288 |31889 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48993 |1288 |31881 |0 |1 |2774A4|0 |2 |0 |
-ROW |48994 |1288 |31888 |0 |2 |F63100|0 |2 |0 |
-ROW |48995 |1289 |31900 |0 |0 |1A7C11|0 |2 |0 |
-ROW |48996 |1289 |31895 |0 |1 |2774A4|0 |2 |0 |
-ROW |48997 |1289 |31899 |0 |2 |F63100|0 |2 |0 |
-ROW |48998 |1289 |31902 |0 |3 |A54F10|0 |2 |0 |
-ROW |48999 |1290 |31907 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49000 |1290 |31908 |0 |1 |2774A4|0 |2 |0 |
-ROW |49001 |1290 |31906 |0 |2 |F63100|0 |2 |0 |
-ROW |49002 |1412 |32908 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49003 |1412 |32923 |0 |1 |2774A4|0 |2 |0 |
-ROW |49004 |1412 |32921 |0 |2 |F63100|0 |2 |0 |
-ROW |49005 |1412 |32919 |0 |3 |A54F10|0 |2 |0 |
-ROW |49006 |1412 |32917 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |49007 |1412 |32911 |0 |5 |6C59DC|0 |2 |0 |
-ROW |49008 |1412 |32914 |0 |6 |AC8C14|0 |2 |0 |
-ROW |49009 |1412 |32909 |0 |7 |611F27|0 |2 |0 |
-ROW |49010 |1413 |32912 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49011 |1413 |32922 |0 |1 |2774A4|0 |2 |0 |
-ROW |49012 |1413 |32920 |0 |2 |F63100|0 |2 |0 |
-ROW |49013 |1413 |32918 |0 |3 |A54F10|0 |2 |0 |
-ROW |49014 |1413 |32915 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |49015 |1413 |32910 |0 |5 |6C59DC|0 |2 |0 |
-ROW |49016 |1413 |32913 |0 |6 |AC8C14|0 |2 |0 |
-ROW |49017 |1413 |32924 |0 |7 |611F27|0 |2 |0 |
-ROW |49018 |1414 |32847 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49019 |1414 |32848 |0 |1 |2774A4|0 |2 |0 |
-ROW |49020 |1414 |32846 |0 |2 |F63100|0 |2 |0 |
-ROW |49021 |1415 |32871 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49022 |1415 |32876 |2 |1 |FF0000|0 |2 |0 |
-ROW |49023 |1416 |32875 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49024 |1417 |32839 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49025 |1417 |32838 |0 |1 |2774A4|0 |2 |0 |
-ROW |49026 |1418 |32878 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49027 |1418 |32873 |2 |1 |FF0000|0 |2 |0 |
-ROW |49028 |1419 |32843 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49029 |1419 |32842 |0 |1 |2774A4|0 |2 |0 |
-ROW |49030 |1419 |32841 |0 |2 |F63100|0 |2 |0 |
-ROW |49031 |1420 |32857 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49032 |1420 |32851 |0 |1 |2774A4|0 |2 |0 |
-ROW |49033 |1420 |32861 |0 |2 |F63100|0 |2 |0 |
-ROW |49034 |1420 |32859 |0 |3 |A54F10|0 |2 |0 |
-ROW |49035 |1420 |32855 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |49036 |1420 |32853 |0 |5 |6C59DC|0 |2 |0 |
-ROW |49037 |1420 |32863 |0 |6 |AC8C14|0 |2 |0 |
-ROW |49038 |1420 |32849 |0 |7 |611F27|0 |2 |0 |
-ROW |49039 |1421 |32858 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49040 |1421 |32850 |0 |1 |2774A4|0 |2 |0 |
-ROW |49041 |1421 |32862 |0 |2 |F63100|0 |2 |0 |
-ROW |49042 |1421 |32860 |0 |3 |A54F10|0 |2 |0 |
-ROW |49043 |1421 |32856 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |49044 |1421 |32854 |0 |5 |6C59DC|0 |2 |0 |
-ROW |49045 |1421 |32852 |0 |6 |AC8C14|0 |2 |0 |
-ROW |49046 |1421 |32840 |0 |7 |611F27|0 |2 |0 |
-ROW |49047 |1422 |32864 |2 |0 |1A7C11|0 |2 |0 |
-ROW |49048 |1423 |32844 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49049 |1424 |32866 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49050 |1424 |32867 |0 |1 |2774A4|0 |2 |0 |
-ROW |49051 |1425 |32865 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49052 |1426 |33000 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49053 |1426 |33015 |0 |1 |2774A4|0 |2 |0 |
-ROW |49054 |1426 |33013 |0 |2 |F63100|0 |2 |0 |
-ROW |49055 |1426 |33011 |0 |3 |A54F10|0 |2 |0 |
-ROW |49056 |1426 |33009 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |49057 |1426 |33003 |0 |5 |6C59DC|0 |2 |0 |
-ROW |49058 |1426 |33006 |0 |6 |AC8C14|0 |2 |0 |
-ROW |49059 |1426 |33001 |0 |7 |611F27|0 |2 |0 |
-ROW |49060 |1427 |33004 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49061 |1427 |33014 |0 |1 |2774A4|0 |2 |0 |
-ROW |49062 |1427 |33012 |0 |2 |F63100|0 |2 |0 |
-ROW |49063 |1427 |33010 |0 |3 |A54F10|0 |2 |0 |
-ROW |49064 |1427 |33007 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |49065 |1427 |33002 |0 |5 |6C59DC|0 |2 |0 |
-ROW |49066 |1427 |33005 |0 |6 |AC8C14|0 |2 |0 |
-ROW |49067 |1427 |33016 |0 |7 |611F27|0 |2 |0 |
-ROW |49068 |1428 |32937 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49069 |1428 |32938 |0 |1 |2774A4|0 |2 |0 |
-ROW |49070 |1428 |32936 |0 |2 |F63100|0 |2 |0 |
-ROW |49071 |1429 |32969 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49072 |1429 |32967 |2 |1 |FF0000|0 |2 |0 |
-ROW |49073 |1430 |32966 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49074 |1431 |32964 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49075 |1431 |32962 |2 |1 |FF0000|0 |2 |0 |
-ROW |49076 |1432 |32933 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49077 |1432 |32932 |0 |1 |2774A4|0 |2 |0 |
-ROW |49078 |1432 |32955 |0 |2 |F63100|0 |2 |0 |
-ROW |49079 |1433 |32947 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49080 |1433 |32953 |0 |1 |2774A4|0 |2 |0 |
-ROW |49081 |1433 |32951 |0 |2 |F63100|0 |2 |0 |
-ROW |49082 |1433 |32949 |0 |3 |A54F10|0 |2 |0 |
-ROW |49083 |1433 |32945 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |49084 |1433 |32943 |0 |5 |6C59DC|0 |2 |0 |
-ROW |49085 |1433 |32941 |0 |6 |AC8C14|0 |2 |0 |
-ROW |49086 |1433 |32939 |0 |7 |611F27|0 |2 |0 |
-ROW |49087 |1434 |32948 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49088 |1434 |32954 |0 |1 |2774A4|0 |2 |0 |
-ROW |49089 |1434 |32952 |0 |2 |F63100|0 |2 |0 |
-ROW |49090 |1434 |32950 |0 |3 |A54F10|0 |2 |0 |
-ROW |49091 |1434 |32946 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |49092 |1434 |32944 |0 |5 |6C59DC|0 |2 |0 |
-ROW |49093 |1434 |32942 |0 |6 |AC8C14|0 |2 |0 |
-ROW |49094 |1434 |32940 |0 |7 |611F27|0 |2 |0 |
-ROW |49095 |1435 |32960 |2 |0 |1A7C11|0 |2 |0 |
-ROW |49096 |1436 |32934 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49097 |1437 |32957 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49098 |1437 |32958 |0 |1 |2774A4|0 |2 |0 |
-ROW |49099 |1438 |32970 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49100 |1291 |31947 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49101 |1291 |31946 |0 |1 |2774A4|0 |2 |0 |
-ROW |49102 |1292 |31952 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49103 |1292 |31938 |0 |1 |2774A4|0 |2 |0 |
-ROW |49104 |1292 |31950 |0 |2 |F63100|0 |2 |0 |
-ROW |49105 |1293 |31939 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49106 |1293 |31945 |0 |1 |2774A4|0 |2 |0 |
-ROW |49107 |1293 |31942 |0 |2 |F63100|0 |2 |0 |
-ROW |49108 |1294 |31959 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49109 |1294 |31962 |0 |1 |2774A4|0 |2 |0 |
-ROW |49110 |1295 |31918 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49111 |1295 |31916 |0 |1 |2774A4|0 |2 |0 |
-ROW |49112 |1295 |31917 |0 |2 |F63100|0 |2 |0 |
-ROW |49113 |1296 |31919 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49114 |1296 |31920 |0 |1 |2774A4|0 |2 |0 |
-ROW |49115 |1296 |31921 |0 |2 |F63100|0 |2 |0 |
-ROW |49116 |1297 |31911 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49117 |1297 |31944 |0 |1 |2774A4|0 |2 |0 |
-ROW |49118 |1298 |31953 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49119 |1298 |31954 |0 |1 |2774A4|0 |2 |0 |
-ROW |49120 |1298 |31960 |0 |2 |F63100|0 |2 |0 |
-ROW |49121 |1298 |31961 |0 |3 |A54F10|0 |2 |0 |
-ROW |49122 |1298 |31957 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |49123 |1298 |31958 |0 |5 |6C59DC|0 |2 |0 |
-ROW |49124 |1298 |31912 |0 |6 |AC8C14|0 |2 |0 |
-ROW |49125 |1298 |31913 |0 |7 |611F27|0 |2 |0 |
-ROW |49126 |1298 |31914 |0 |8 |F230E0|0 |2 |0 |
-ROW |49127 |1298 |31915 |0 |9 |FFAD40|0 |2 |0 |
-ROW |49128 |1298 |31948 |0 |10 |40CDFF|0 |2 |0 |
-ROW |49129 |1298 |31949 |0 |11 |40FFA0|0 |2 |0 |
-ROW |49130 |1317 |32146 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49131 |1317 |32145 |5 |1 |2774A4|0 |2 |0 |
-ROW |49132 |1318 |32151 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49133 |1318 |32150 |5 |1 |2774A4|0 |2 |0 |
-ROW |49134 |1318 |32153 |5 |2 |F63100|0 |2 |0 |
-ROW |49135 |1318 |32152 |5 |3 |A54F10|0 |2 |0 |
-ROW |49136 |1319 |32157 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49137 |1319 |32155 |5 |1 |2774A4|0 |2 |0 |
-ROW |49138 |1319 |32156 |5 |2 |F63100|0 |2 |0 |
-ROW |49139 |1320 |32196 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49140 |1320 |32197 |0 |1 |2774A4|0 |2 |0 |
-ROW |49141 |1320 |32195 |2 |2 |F63100|0 |2 |0 |
-ROW |49142 |1321 |32200 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49143 |1321 |32199 |0 |1 |2774A4|0 |2 |0 |
-ROW |49144 |1322 |32175 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49145 |1322 |32165 |0 |1 |2774A4|0 |2 |0 |
-ROW |49146 |1323 |32162 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49147 |1323 |32163 |0 |1 |2774A4|0 |2 |0 |
-ROW |49148 |1323 |32190 |2 |2 |F63100|0 |2 |0 |
-ROW |49149 |1324 |32192 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49150 |1324 |32179 |0 |1 |2774A4|0 |2 |0 |
-ROW |49151 |1325 |32168 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49152 |1325 |32166 |0 |1 |2774A4|0 |2 |0 |
-ROW |49153 |803 |28599 |0 |0 |DD0000|0 |2 |0 |
-ROW |49154 |803 |28596 |0 |1 |00DDDD|0 |2 |0 |
-ROW |49155 |803 |28597 |0 |2 |3333FF|0 |2 |0 |
-ROW |49156 |803 |28598 |0 |3 |00FF00|0 |2 |0 |
-ROW |49157 |804 |28602 |0 |0 |990099|0 |2 |0 |
-ROW |49158 |804 |28606 |0 |1 |990000|0 |2 |0 |
-ROW |49159 |804 |28608 |0 |2 |0000EE|0 |2 |0 |
-ROW |49160 |804 |28615 |0 |3 |FF33FF|0 |2 |0 |
-ROW |49161 |804 |28610 |0 |4 |00EE00|0 |2 |0 |
-ROW |49162 |804 |28611 |0 |5 |003300|0 |2 |0 |
-ROW |49163 |804 |28616 |0 |6 |33FFFF|0 |2 |0 |
-ROW |49164 |804 |28607 |0 |7 |DD0000|0 |2 |0 |
-ROW |49165 |804 |28604 |0 |8 |000099|0 |2 |0 |
-ROW |49166 |804 |28588 |0 |9 |00FF00|0 |2 |0 |
-ROW |49167 |805 |28612 |0 |0 |FFAA00|0 |2 |0 |
-ROW |49168 |805 |28600 |0 |1 |990099|0 |2 |0 |
-ROW |49169 |805 |28613 |0 |2 |EE0000|0 |2 |0 |
-ROW |49170 |805 |28605 |0 |3 |FF66FF|0 |2 |0 |
-ROW |49171 |805 |28614 |0 |4 |960000|0 |2 |0 |
-ROW |49172 |805 |28601 |0 |5 |009600|0 |2 |0 |
-ROW |49173 |805 |28603 |0 |6 |009999|0 |2 |0 |
-ROW |49174 |805 |28609 |0 |7 |BBBB00|0 |2 |0 |
-ROW |49175 |806 |28595 |0 |0 |00C800|0 |2 |0 |
-ROW |49176 |806 |28586 |0 |1 |C80000|0 |2 |0 |
-ROW |49177 |797 |28546 |0 |0 |C80000|0 |2 |0 |
-ROW |49178 |797 |28545 |0 |1 |00C800|0 |2 |0 |
-ROW |49179 |798 |28551 |0 |0 |009900|0 |2 |0 |
-ROW |49180 |798 |28543 |0 |1 |DD0000|0 |2 |0 |
-ROW |49181 |798 |28542 |0 |2 |00DDDD|0 |2 |0 |
-ROW |49182 |798 |28549 |0 |3 |3333FF|0 |2 |0 |
-ROW |49183 |798 |28544 |0 |4 |999900|0 |2 |0 |
-ROW |49184 |798 |28548 |0 |5 |00FF00|0 |2 |0 |
-ROW |49185 |799 |28581 |0 |0 |990099|0 |2 |0 |
-ROW |49186 |799 |28574 |0 |1 |990000|0 |2 |0 |
-ROW |49187 |799 |28571 |0 |2 |0000EE|0 |2 |0 |
-ROW |49188 |799 |28565 |0 |3 |FF33FF|0 |2 |0 |
-ROW |49189 |799 |28570 |0 |4 |009600|0 |2 |0 |
-ROW |49190 |799 |28569 |0 |5 |003300|0 |2 |0 |
-ROW |49191 |799 |28577 |0 |6 |CCCC00|0 |2 |0 |
-ROW |49192 |799 |28552 |0 |7 |33FFFF|0 |2 |0 |
-ROW |49193 |799 |28573 |0 |8 |DD0000|0 |2 |0 |
-ROW |49194 |799 |28579 |0 |9 |000099|0 |2 |0 |
-ROW |49195 |799 |28559 |0 |10 |00FF00|0 |2 |0 |
-ROW |49196 |800 |28572 |0 |0 |00EE00|0 |2 |0 |
-ROW |49197 |800 |28566 |0 |1 |0000EE|0 |2 |0 |
-ROW |49198 |800 |28568 |0 |2 |FFAA00|0 |2 |0 |
-ROW |49199 |800 |28561 |0 |3 |00EEEE|0 |2 |0 |
-ROW |49200 |800 |28564 |0 |4 |990099|0 |2 |0 |
-ROW |49201 |800 |28567 |0 |5 |EE0000|0 |2 |0 |
-ROW |49202 |800 |28578 |0 |6 |FF66FF|0 |2 |0 |
-ROW |49203 |800 |28580 |0 |7 |009999|0 |2 |0 |
-ROW |49204 |800 |28562 |0 |8 |BBBB00|0 |2 |0 |
-ROW |49205 |800 |28563 |0 |9 |AA0000|0 |2 |0 |
-ROW |49206 |800 |28575 |0 |10 |990000|0 |2 |0 |
-ROW |49207 |800 |28576 |0 |11 |008800|0 |2 |0 |
-ROW |49208 |800 |28582 |0 |12 |80B0E0|0 |2 |0 |
-ROW |49209 |800 |28583 |0 |13 |4080B0|0 |2 |0 |
-ROW |49210 |800 |29821 |0 |14 |8000FF|0 |2 |0 |
-ROW |49211 |801 |28560 |0 |0 |008800|0 |2 |0 |
-ROW |49212 |801 |28584 |0 |1 |EE0000|0 |2 |0 |
-ROW |49213 |802 |28550 |5 |0 |00C800|0 |2 |0 |
-ROW |49214 |802 |28540 |0 |1 |F63100|0 |2 |0 |
-ROW |49215 |529 |23357 |0 |0 |DD0000|0 |2 |0 |
-ROW |49216 |529 |23341 |0 |1 |00DDDD|0 |2 |0 |
-ROW |49217 |529 |23342 |0 |2 |3333FF|0 |2 |0 |
-ROW |49218 |529 |28251 |0 |3 |00FF00|0 |2 |0 |
-ROW |49219 |530 |23345 |0 |0 |990099|0 |2 |0 |
-ROW |49220 |530 |23348 |0 |1 |990000|0 |2 |0 |
-ROW |49221 |530 |23355 |0 |2 |0000EE|0 |2 |0 |
-ROW |49222 |530 |23352 |0 |3 |FF33FF|0 |2 |0 |
-ROW |49223 |530 |23356 |0 |4 |007700|0 |2 |0 |
-ROW |49224 |530 |23354 |0 |5 |003300|0 |2 |0 |
-ROW |49225 |530 |23346 |0 |6 |33FFFF|0 |2 |0 |
-ROW |49226 |530 |23349 |0 |7 |DD0000|0 |2 |0 |
-ROW |49227 |530 |23344 |0 |8 |000099|0 |7 |0 |
-ROW |49228 |530 |28250 |0 |9 |00FF00|0 |2 |0 |
-ROW |49229 |531 |23353 |0 |0 |FFAA00|0 |2 |0 |
-ROW |49230 |531 |23347 |0 |1 |990099|0 |2 |0 |
-ROW |49231 |531 |23350 |0 |2 |EE0000|0 |2 |0 |
-ROW |49232 |531 |23343 |0 |3 |FF66FF|0 |2 |0 |
-ROW |49233 |531 |23351 |0 |4 |0000EE|0 |2 |0 |
-ROW |49234 |531 |23360 |0 |5 |00EE00|0 |2 |0 |
-ROW |49235 |531 |25369 |0 |6 |009999|0 |2 |0 |
-ROW |49236 |531 |25368 |0 |7 |BBBB00|0 |2 |0 |
-ROW |49237 |531 |28618 |0 |8 |990000|0 |2 |0 |
-ROW |49238 |531 |28619 |0 |9 |008800|0 |2 |0 |
-ROW |49239 |807 |28617 |0 |0 |008800|0 |2 |0 |
-ROW |49240 |532 |23340 |5 |0 |00C800|0 |2 |0 |
-ROW |49241 |532 |23358 |5 |1 |C80000|1 |2 |0 |
-ROW |49242 |527 |22199 |0 |0 |C80000|0 |2 |0 |
-ROW |49243 |527 |22196 |0 |1 |00C800|0 |2 |0 |
-ROW |49244 |528 |23628 |0 |0 |C80000|0 |2 |0 |
-ROW |49245 |528 |23625 |0 |1 |00C800|0 |2 |0 |
-ROW |49246 |410 |22185 |0 |0 |009900|0 |2 |0 |
-ROW |49247 |410 |22189 |0 |1 |DD0000|0 |2 |0 |
-ROW |49248 |410 |22396 |0 |2 |00DDDD|0 |2 |0 |
-ROW |49249 |410 |22183 |0 |3 |3333FF|0 |2 |0 |
-ROW |49250 |410 |22191 |0 |4 |999900|0 |2 |0 |
-ROW |49251 |410 |23634 |0 |5 |00FF00|0 |2 |0 |
-ROW |49252 |520 |23276 |0 |0 |009900|0 |2 |0 |
-ROW |49253 |520 |23273 |0 |1 |DD0000|0 |2 |0 |
-ROW |49254 |520 |23275 |0 |2 |00DDDD|0 |2 |0 |
-ROW |49255 |520 |23274 |0 |3 |3333FF|0 |2 |0 |
-ROW |49256 |520 |23620 |0 |4 |999900|0 |2 |0 |
-ROW |49257 |520 |23635 |0 |5 |00FF00|0 |2 |0 |
-ROW |49258 |404 |22404 |0 |0 |990099|0 |2 |0 |
-ROW |49259 |404 |22399 |0 |1 |990000|0 |2 |0 |
-ROW |49260 |404 |22416 |0 |2 |0000EE|0 |2 |0 |
-ROW |49261 |404 |22430 |0 |3 |FF33FF|0 |2 |0 |
-ROW |49262 |404 |22418 |0 |4 |009600|0 |2 |0 |
-ROW |49263 |404 |22402 |0 |5 |003300|0 |2 |0 |
-ROW |49264 |404 |22420 |0 |6 |CCCC00|0 |2 |0 |
-ROW |49265 |404 |22400 |0 |7 |33FFFF|0 |2 |0 |
-ROW |49266 |404 |22689 |0 |8 |DD0000|0 |2 |0 |
-ROW |49267 |404 |23171 |0 |9 |000099|0 |2 |0 |
-ROW |49268 |404 |22401 |0 |10 |00FF00|0 |2 |0 |
-ROW |49269 |518 |23269 |0 |0 |990099|0 |2 |0 |
-ROW |49270 |518 |23264 |0 |1 |990000|0 |2 |0 |
-ROW |49271 |518 |23261 |0 |2 |0000EE|0 |2 |0 |
-ROW |49272 |518 |23255 |0 |3 |FF33FF|0 |2 |0 |
-ROW |49273 |518 |23260 |0 |4 |009600|0 |2 |0 |
-ROW |49274 |518 |23259 |0 |5 |003300|0 |2 |0 |
-ROW |49275 |518 |23265 |0 |6 |CCCC00|0 |2 |0 |
-ROW |49276 |518 |23270 |0 |7 |33FFFF|0 |2 |0 |
-ROW |49277 |518 |23262 |0 |8 |DD0000|0 |2 |0 |
-ROW |49278 |518 |23267 |0 |9 |000099|0 |2 |0 |
-ROW |49279 |518 |23328 |0 |10 |00FF00|0 |2 |0 |
-ROW |49280 |406 |22426 |0 |0 |00EE00|0 |2 |0 |
-ROW |49281 |406 |22422 |0 |1 |0000EE|0 |2 |0 |
-ROW |49282 |406 |22408 |0 |2 |FFAA00|0 |2 |0 |
-ROW |49283 |406 |22424 |0 |3 |00EEEE|0 |2 |0 |
-ROW |49284 |406 |22412 |0 |4 |990099|0 |2 |0 |
-ROW |49285 |406 |22406 |0 |5 |EE0000|0 |2 |0 |
-ROW |49286 |406 |22414 |0 |6 |FF66FF|0 |2 |0 |
-ROW |49287 |406 |23663 |0 |7 |009999|0 |2 |0 |
-ROW |49288 |406 |25366 |0 |8 |BBBB00|0 |2 |0 |
-ROW |49289 |406 |25370 |0 |9 |AA0000|0 |2 |0 |
-ROW |49290 |406 |25665 |0 |10 |990000|0 |2 |0 |
-ROW |49291 |406 |25666 |0 |11 |008800|0 |2 |0 |
-ROW |49292 |406 |28535 |0 |12 |80B0E0|0 |2 |0 |
-ROW |49293 |406 |28537 |0 |13 |4080B0|0 |2 |0 |
-ROW |49294 |406 |29822 |0 |14 |8000FF|0 |2 |0 |
-ROW |49295 |517 |23268 |0 |0 |00EE00|0 |2 |0 |
-ROW |49296 |517 |23256 |0 |1 |0000EE|0 |2 |0 |
-ROW |49297 |517 |23258 |0 |2 |FFAA00|0 |2 |0 |
-ROW |49298 |517 |23252 |0 |3 |00EEEE|0 |2 |0 |
-ROW |49299 |517 |23253 |0 |4 |990099|0 |2 |0 |
-ROW |49300 |517 |23257 |0 |5 |EE0000|0 |2 |0 |
-ROW |49301 |517 |23266 |0 |6 |FF66FF|0 |2 |0 |
-ROW |49302 |517 |23664 |0 |7 |009999|0 |2 |0 |
-ROW |49303 |517 |25367 |0 |8 |BBBB00|0 |2 |0 |
-ROW |49304 |517 |25371 |0 |9 |AA0000|0 |2 |0 |
-ROW |49305 |517 |25667 |0 |10 |990000|0 |2 |0 |
-ROW |49306 |517 |25668 |0 |11 |008800|0 |2 |0 |
-ROW |49307 |517 |28536 |0 |12 |80B0E0|0 |2 |0 |
-ROW |49308 |517 |28538 |0 |13 |4080B0|0 |2 |0 |
-ROW |49309 |517 |29823 |0 |14 |8000FF|0 |2 |0 |
-ROW |49310 |788 |28248 |0 |0 |008800|0 |2 |0 |
-ROW |49311 |788 |28533 |0 |1 |EE0000|0 |2 |0 |
-ROW |49312 |789 |28249 |0 |0 |008800|0 |2 |0 |
-ROW |49313 |789 |28534 |0 |1 |EE0000|0 |2 |0 |
-ROW |49314 |392 |22187 |5 |0 |00C800|0 |2 |0 |
-ROW |49315 |392 |23251 |5 |1 |C80000|1 |2 |0 |
-ROW |49316 |519 |23277 |5 |0 |00C800|0 |2 |0 |
-ROW |49317 |519 |23272 |5 |1 |C80000|1 |2 |0 |
-ROW |49318 |472 |22945 |5 |0 |00AA00|0 |2 |0 |
-ROW |49319 |472 |22946 |5 |1 |3333FF|0 |2 |0 |
-ROW |49320 |473 |22950 |0 |0 |C80000|0 |2 |2 |
-ROW |49321 |473 |22948 |0 |1 |00C800|0 |2 |0 |
-ROW |49322 |471 |22924 |0 |0 |009900|0 |2 |0 |
-ROW |49323 |471 |22920 |0 |1 |000099|0 |2 |0 |
-ROW |49324 |469 |22922 |0 |0 |009900|0 |2 |0 |
-ROW |49325 |469 |22923 |0 |1 |000099|0 |2 |0 |
-ROW |49326 |469 |22921 |0 |2 |990000|0 |2 |0 |
-ROW |49327 |498 |23109 |0 |0 |009999|0 |2 |0 |
-ROW |49328 |498 |23112 |0 |1 |990099|0 |2 |0 |
-ROW |49329 |498 |23115 |0 |2 |999900|0 |2 |0 |
-ROW |49330 |498 |23113 |0 |3 |990000|0 |2 |0 |
-ROW |49331 |498 |23114 |0 |4 |000099|0 |2 |0 |
-ROW |49332 |498 |23110 |0 |5 |009900|0 |2 |0 |
-ROW |49333 |540 |22942 |5 |0 |00C800|0 |2 |0 |
-ROW |49334 |492 |23073 |5 |0 |00AA00|0 |2 |0 |
-ROW |49335 |492 |23074 |5 |1 |3333FF|0 |2 |0 |
-ROW |49336 |467 |22910 |0 |0 |C80000|0 |2 |2 |
-ROW |49337 |467 |22908 |0 |1 |00C800|0 |2 |0 |
-ROW |49338 |465 |22884 |0 |0 |009900|0 |2 |0 |
-ROW |49339 |465 |22880 |0 |1 |000099|0 |2 |0 |
-ROW |49340 |463 |22882 |0 |0 |009900|0 |2 |0 |
-ROW |49341 |463 |22883 |0 |1 |000099|0 |2 |0 |
-ROW |49342 |463 |22881 |0 |2 |990000|0 |2 |0 |
-ROW |49343 |462 |22886 |1 |0 |009999|0 |2 |0 |
-ROW |49344 |462 |22888 |1 |1 |990099|0 |2 |0 |
-ROW |49345 |462 |22891 |1 |2 |990000|0 |2 |0 |
-ROW |49346 |462 |22892 |1 |3 |000099|0 |2 |0 |
-ROW |49347 |462 |22885 |1 |4 |009900|0 |2 |0 |
-ROW |49348 |541 |22902 |5 |0 |00C800|0 |2 |0 |
-ROW |49349 |464 |22897 |0 |0 |AA0000|0 |2 |2 |
-ROW |49350 |464 |22895 |0 |1 |00AA00|0 |2 |0 |
-ROW |49351 |478 |22985 |5 |0 |00AA00|0 |2 |0 |
-ROW |49352 |478 |22986 |5 |1 |3333FF|0 |2 |0 |
-ROW |49353 |479 |22990 |0 |0 |C80000|0 |2 |2 |
-ROW |49354 |479 |22988 |0 |1 |00C800|0 |2 |0 |
-ROW |49355 |475 |22962 |0 |0 |009900|0 |2 |0 |
-ROW |49356 |475 |22963 |0 |1 |000099|0 |2 |0 |
-ROW |49357 |475 |22961 |0 |2 |990000|0 |2 |0 |
-ROW |49358 |474 |22968 |1 |0 |990099|0 |2 |0 |
-ROW |49359 |474 |22971 |1 |1 |990000|0 |2 |0 |
-ROW |49360 |474 |22972 |1 |2 |000099|0 |2 |0 |
-ROW |49361 |474 |22965 |1 |3 |009900|0 |2 |0 |
-ROW |49362 |542 |22982 |5 |0 |00C800|0 |2 |0 |
-ROW |49363 |491 |23070 |0 |0 |C80000|0 |2 |2 |
-ROW |49364 |491 |23068 |0 |1 |00C800|0 |2 |0 |
-ROW |49365 |487 |23042 |0 |0 |009900|0 |2 |0 |
-ROW |49366 |487 |23043 |0 |1 |000099|0 |2 |0 |
-ROW |49367 |487 |23041 |0 |2 |990000|0 |2 |0 |
-ROW |49368 |543 |23062 |5 |0 |00C800|0 |2 |0 |
-ROW |49369 |494 |23077 |5 |0 |00AA00|0 |2 |0 |
-ROW |49370 |494 |23078 |5 |1 |3333FF|0 |2 |0 |
-ROW |49371 |493 |23075 |5 |0 |00AA00|0 |2 |0 |
-ROW |49372 |493 |23076 |5 |1 |3333FF|0 |2 |0 |
-ROW |49373 |461 |22870 |0 |0 |C80000|0 |2 |2 |
-ROW |49374 |461 |22868 |0 |1 |00C800|0 |2 |0 |
-ROW |49375 |459 |22844 |0 |0 |009900|0 |2 |0 |
-ROW |49376 |459 |22840 |0 |1 |000099|0 |2 |0 |
-ROW |49377 |457 |22842 |0 |0 |009900|0 |2 |0 |
-ROW |49378 |457 |22843 |0 |1 |000099|0 |2 |0 |
-ROW |49379 |457 |22841 |0 |2 |990000|0 |2 |0 |
-ROW |49380 |456 |22846 |1 |0 |009999|0 |2 |0 |
-ROW |49381 |456 |22848 |1 |1 |990099|0 |2 |0 |
-ROW |49382 |456 |22851 |1 |2 |990000|0 |2 |0 |
-ROW |49383 |456 |22852 |1 |3 |000099|0 |2 |0 |
-ROW |49384 |456 |22845 |1 |4 |009900|0 |2 |0 |
-ROW |49385 |544 |22862 |5 |0 |00C800|0 |2 |0 |
-ROW |49386 |458 |22857 |0 |0 |AA0000|0 |2 |2 |
-ROW |49387 |458 |22855 |0 |1 |00AA00|0 |2 |0 |
-ROW |49388 |484 |23025 |5 |0 |00AA00|0 |2 |0 |
-ROW |49389 |484 |23026 |5 |1 |3333FF|0 |2 |0 |
-ROW |49390 |485 |23030 |0 |0 |C80000|0 |2 |2 |
-ROW |49391 |485 |23028 |0 |1 |00C800|0 |2 |0 |
-ROW |49392 |483 |23004 |0 |0 |009900|0 |2 |0 |
-ROW |49393 |483 |23000 |0 |1 |000099|0 |2 |0 |
-ROW |49394 |481 |23002 |0 |0 |009900|0 |2 |0 |
-ROW |49395 |481 |23003 |0 |1 |000099|0 |2 |0 |
-ROW |49396 |481 |23001 |0 |2 |990000|0 |2 |0 |
-ROW |49397 |480 |23007 |1 |0 |999900|0 |2 |0 |
-ROW |49398 |480 |23011 |1 |1 |990000|0 |2 |0 |
-ROW |49399 |480 |23012 |1 |2 |000099|0 |2 |0 |
-ROW |49400 |480 |23005 |1 |3 |009900|0 |2 |0 |
-ROW |49401 |545 |23022 |5 |0 |00C800|0 |2 |0 |
-ROW |49402 |482 |23017 |0 |0 |AA0000|0 |2 |2 |
-ROW |49403 |482 |23015 |0 |1 |00AA00|0 |2 |0 |
-ROW |49404 |651 |26928 |5 |0 |EE0000|0 |2 |0 |
-ROW |49405 |651 |26927 |0 |1 |000000|1 |2 |0 |
-ROW |49406 |652 |26925 |2 |0 |880000|0 |2 |0 |
-ROW |49407 |652 |26932 |0 |1 |009900|0 |2 |0 |
-ROW |49408 |652 |26930 |0 |2 |00CCCC|0 |2 |0 |
-ROW |49409 |652 |26931 |0 |3 |000000|0 |2 |0 |
-ROW |49410 |652 |26929 |0 |4 |3333FF|0 |2 |0 |
-ROW |49411 |652 |26926 |0 |5 |777700|0 |2 |0 |
-ROW |49412 |653 |26933 |2 |0 |EE0000|0 |2 |0 |
-ROW |49413 |653 |26943 |2 |1 |EE00EE|0 |2 |0 |
-ROW |49414 |653 |26935 |0 |2 |000000|1 |2 |0 |
-ROW |49415 |653 |26936 |4 |3 |000000|1 |2 |0 |
-ROW |49416 |654 |26934 |2 |0 |880000|0 |2 |0 |
-ROW |49417 |654 |26939 |0 |1 |009900|0 |2 |0 |
-ROW |49418 |654 |26942 |0 |2 |00CCCC|0 |2 |0 |
-ROW |49419 |654 |26938 |0 |3 |000000|0 |2 |0 |
-ROW |49420 |654 |26937 |0 |4 |3333FF|0 |2 |0 |
-ROW |49421 |1326 |32292 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49422 |1326 |32291 |0 |1 |2774A4|0 |2 |0 |
-ROW |49423 |1326 |32278 |0 |2 |F63100|0 |2 |0 |
-ROW |49424 |1326 |32277 |0 |3 |A54F10|0 |2 |0 |
-ROW |49425 |1327 |32304 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49426 |1327 |32289 |0 |1 |2774A4|0 |2 |0 |
-ROW |49427 |1328 |32259 |2 |0 |1A7C11|0 |2 |0 |
-ROW |49428 |1328 |32260 |2 |1 |2774A4|0 |2 |0 |
-ROW |49429 |1329 |32268 |2 |0 |1A7C11|0 |2 |0 |
-ROW |49430 |1329 |32264 |2 |1 |2774A4|0 |2 |0 |
-ROW |49431 |1330 |32261 |2 |0 |1A7C11|0 |2 |0 |
-ROW |49432 |1330 |32265 |2 |1 |2774A4|0 |2 |0 |
-ROW |49433 |1330 |32262 |0 |2 |F63100|0 |2 |0 |
-ROW |49434 |1330 |32263 |0 |3 |A54F10|0 |2 |0 |
-ROW |49435 |1330 |32266 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |49436 |1330 |32267 |0 |5 |6C59DC|0 |2 |0 |
-ROW |49437 |1331 |32272 |2 |0 |1A7C11|0 |2 |0 |
-ROW |49438 |1331 |32271 |2 |1 |2774A4|0 |2 |0 |
-ROW |49439 |1332 |32256 |2 |0 |1A7C11|0 |2 |0 |
-ROW |49440 |1332 |32242 |2 |1 |2774A4|0 |2 |0 |
-ROW |49441 |1333 |32273 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49442 |1333 |32238 |0 |1 |2774A4|0 |2 |0 |
-ROW |49443 |1334 |32245 |2 |0 |1A7C11|0 |2 |0 |
-ROW |49444 |1334 |32250 |2 |1 |2774A4|0 |2 |0 |
-ROW |49445 |1334 |32246 |0 |2 |F63100|0 |2 |0 |
-ROW |49446 |1334 |32247 |0 |3 |A54F10|0 |2 |0 |
-ROW |49447 |1334 |32251 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |49448 |1334 |32252 |0 |5 |6C59DC|0 |2 |0 |
-ROW |49449 |1159 |30886 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49450 |1159 |30887 |0 |1 |2774A4|0 |2 |0 |
-ROW |49451 |1160 |30888 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49452 |1160 |30882 |0 |1 |2774A4|0 |2 |0 |
-ROW |49453 |1160 |30890 |0 |2 |F63100|0 |2 |0 |
-ROW |49454 |1160 |30881 |0 |3 |A54F10|0 |2 |0 |
-ROW |49455 |1160 |30889 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |49456 |1488 |30840 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49457 |1488 |30845 |0 |1 |2774A4|0 |2 |0 |
-ROW |49458 |1488 |30842 |0 |2 |F63100|0 |2 |0 |
-ROW |49459 |1488 |30873 |2 |3 |A54F10|1 |2 |0 |
-ROW |49460 |1161 |30847 |2 |0 |1A7C11|0 |2 |0 |
-ROW |49461 |1161 |30872 |2 |1 |2774A4|0 |2 |0 |
-ROW |49462 |1162 |30853 |2 |0 |1A7C11|0 |2 |0 |
-ROW |49463 |1162 |30849 |2 |1 |2774A4|0 |2 |0 |
-ROW |49464 |1162 |30852 |2 |2 |F63100|0 |2 |0 |
-ROW |49465 |1162 |30851 |2 |3 |A54F10|0 |2 |0 |
-ROW |49466 |1162 |30848 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |49467 |1163 |30856 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49468 |1163 |30855 |0 |1 |2774A4|0 |2 |0 |
-ROW |49469 |1163 |30854 |2 |2 |F63100|1 |2 |0 |
-ROW |49470 |1164 |30859 |2 |0 |1A7C11|0 |2 |0 |
-ROW |49471 |1164 |30870 |2 |1 |2774A4|0 |2 |0 |
-ROW |49472 |1165 |30860 |2 |0 |1A7C11|0 |2 |0 |
-ROW |49473 |1165 |30871 |2 |1 |2774A4|0 |2 |0 |
-ROW |49474 |1166 |30868 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49475 |1166 |30869 |0 |1 |2774A4|0 |2 |0 |
-ROW |49476 |1166 |30867 |0 |2 |F63100|0 |2 |0 |
-ROW |49477 |1166 |30866 |0 |3 |A54F10|0 |2 |0 |
-ROW |49478 |1166 |30865 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |49479 |1167 |30850 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49480 |1167 |30863 |5 |1 |2774A4|0 |2 |0 |
-ROW |49481 |1167 |30861 |5 |2 |F63100|0 |2 |0 |
-ROW |49482 |1168 |30833 |2 |0 |1A7C11|0 |2 |0 |
-ROW |49483 |1168 |30841 |2 |1 |2774A4|0 |2 |0 |
-ROW |49484 |1168 |30857 |2 |2 |F63100|0 |2 |0 |
-ROW |49485 |1169 |30834 |2 |0 |1A7C11|0 |2 |0 |
-ROW |49486 |1169 |30831 |2 |1 |2774A4|0 |2 |0 |
-ROW |49487 |1170 |30846 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49488 |1390 |32665 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49489 |1390 |32668 |0 |1 |2774A4|0 |2 |0 |
-ROW |49490 |1390 |32666 |0 |2 |F63100|0 |2 |0 |
-ROW |49491 |1390 |32667 |0 |3 |A54F10|0 |2 |0 |
-ROW |49492 |1391 |32674 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49493 |1391 |32673 |0 |1 |2774A4|0 |2 |0 |
-ROW |49494 |1391 |32672 |0 |2 |F63100|0 |2 |0 |
-ROW |49495 |1392 |32677 |2 |0 |1A7C11|0 |2 |0 |
-ROW |49496 |1392 |32686 |0 |1 |2774A4|0 |2 |0 |
-ROW |49497 |1393 |32681 |2 |0 |1A7C11|0 |2 |0 |
-ROW |49498 |1393 |32682 |0 |1 |2774A4|0 |2 |0 |
-ROW |49499 |1394 |32687 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49500 |1394 |32692 |0 |1 |2774A4|0 |2 |0 |
-ROW |49501 |1394 |32690 |0 |2 |F63100|0 |2 |0 |
-ROW |49502 |1394 |32688 |0 |3 |A54F10|0 |2 |0 |
-ROW |49503 |1395 |32694 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49504 |1395 |32696 |0 |1 |2774A4|0 |2 |0 |
-ROW |49505 |1395 |32695 |0 |2 |F63100|0 |2 |0 |
-ROW |49506 |1396 |32708 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49507 |1396 |32706 |0 |1 |2774A4|0 |2 |0 |
-ROW |49508 |1397 |32715 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49509 |1397 |32716 |0 |1 |2774A4|0 |2 |0 |
-ROW |49510 |1398 |32718 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49511 |1398 |32720 |0 |1 |2774A4|0 |2 |0 |
-ROW |49512 |1399 |32721 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49513 |1399 |32719 |0 |1 |2774A4|0 |2 |0 |
-ROW |49514 |1400 |32723 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49515 |1400 |32724 |0 |1 |2774A4|0 |2 |0 |
-ROW |49516 |1401 |32722 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49517 |1401 |32725 |0 |1 |2774A4|0 |2 |0 |
-ROW |49518 |1401 |32726 |0 |2 |F63100|0 |2 |0 |
-ROW |49519 |1402 |32728 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49520 |1402 |32729 |0 |1 |2774A4|0 |2 |0 |
-ROW |49521 |1439 |33072 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49522 |1439 |33092 |0 |1 |2774A4|0 |2 |0 |
-ROW |49523 |1440 |33073 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49524 |1440 |33069 |0 |1 |2774A4|0 |2 |0 |
-ROW |49525 |1441 |33079 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49526 |1441 |33084 |0 |1 |2774A4|0 |2 |0 |
-ROW |49527 |1441 |33082 |0 |2 |F63100|0 |2 |0 |
-ROW |49528 |1441 |33074 |0 |3 |A54F10|0 |2 |0 |
-ROW |49529 |1441 |33078 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |49530 |1441 |33086 |0 |5 |6C59DC|0 |2 |0 |
-ROW |49531 |1441 |33076 |2 |6 |AC8C14|0 |2 |0 |
-ROW |49532 |1442 |33081 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49533 |1442 |33085 |0 |1 |2774A4|0 |2 |0 |
-ROW |49534 |1442 |33083 |0 |2 |F63100|0 |2 |0 |
-ROW |49535 |1442 |33075 |0 |3 |A54F10|0 |2 |0 |
-ROW |49536 |1442 |33068 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |49537 |1442 |33087 |0 |5 |6C59DC|0 |2 |0 |
-ROW |49538 |1442 |33077 |2 |6 |AC8C14|0 |2 |0 |
-ROW |49539 |1443 |33093 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49540 |1443 |33098 |0 |1 |2774A4|0 |2 |0 |
-ROW |49541 |1444 |33097 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49542 |1444 |33100 |0 |1 |2774A4|0 |2 |0 |
-ROW |49543 |1444 |33096 |0 |2 |F63100|0 |2 |0 |
-ROW |49544 |1444 |33094 |0 |3 |A54F10|0 |2 |0 |
-ROW |49545 |1445 |33116 |2 |0 |1A7C11|0 |2 |0 |
-ROW |49546 |1446 |33045 |2 |0 |1A7C11|0 |2 |0 |
-ROW |49547 |1446 |33044 |0 |1 |2774A4|0 |2 |0 |
-ROW |49548 |1446 |33046 |0 |2 |F63100|0 |2 |0 |
-ROW |49549 |1447 |33055 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49550 |1447 |33023 |0 |1 |2774A4|0 |2 |0 |
-ROW |49551 |1448 |33053 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49552 |1448 |33052 |0 |1 |2774A4|0 |2 |0 |
-ROW |49553 |1448 |33054 |0 |2 |F63100|0 |2 |0 |
-ROW |49554 |1449 |33051 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49555 |1449 |33059 |0 |1 |2774A4|0 |2 |0 |
-ROW |49556 |1449 |33027 |0 |2 |F63100|0 |2 |0 |
-ROW |49557 |1450 |33022 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49558 |1450 |33040 |0 |1 |2774A4|0 |2 |0 |
-ROW |49559 |1450 |33042 |0 |2 |F63100|0 |2 |0 |
-ROW |49560 |1450 |33043 |0 |3 |A54F10|0 |2 |0 |
-ROW |49561 |1451 |33038 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49562 |1451 |33025 |0 |1 |2774A4|0 |2 |0 |
-ROW |49563 |1451 |33026 |0 |2 |F63100|0 |2 |0 |
-ROW |49564 |1451 |33024 |0 |3 |A54F10|0 |2 |0 |
-ROW |49565 |1452 |33029 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49566 |1452 |33028 |0 |1 |2774A4|0 |2 |0 |
-ROW |49567 |1453 |33035 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49568 |1453 |33034 |0 |1 |2774A4|0 |2 |0 |
-ROW |49569 |1453 |33033 |0 |2 |F63100|0 |2 |0 |
-ROW |49570 |1453 |33036 |0 |3 |A54F10|0 |2 |0 |
-ROW |49571 |1453 |33030 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |49572 |1453 |33031 |0 |5 |6C59DC|0 |2 |0 |
-ROW |49573 |1454 |33057 |2 |0 |1A7C11|0 |2 |0 |
-ROW |49574 |1454 |33056 |2 |1 |2774A4|0 |2 |0 |
-ROW |49575 |1454 |33058 |2 |2 |F63100|0 |2 |0 |
-ROW |49576 |1455 |33190 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49577 |1455 |33193 |0 |1 |2774A4|0 |2 |0 |
-ROW |49578 |1455 |33189 |0 |2 |F63100|0 |2 |0 |
-ROW |49579 |1455 |33187 |0 |3 |A54F10|0 |2 |0 |
-ROW |49580 |1456 |33158 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49581 |1456 |33168 |0 |1 |2774A4|0 |2 |0 |
-ROW |49582 |1456 |33169 |0 |2 |F63100|0 |2 |0 |
-ROW |49583 |1456 |33167 |0 |3 |A54F10|0 |2 |0 |
-ROW |49584 |1456 |33171 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |49585 |1457 |33165 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49586 |1457 |33166 |0 |1 |2774A4|0 |2 |0 |
-ROW |49587 |1457 |33164 |0 |2 |F63100|0 |2 |0 |
-ROW |49588 |1457 |33163 |2 |3 |A54F10|1 |2 |0 |
-ROW |49589 |1458 |33161 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49590 |1458 |33162 |0 |1 |2774A4|0 |2 |0 |
-ROW |49591 |1458 |33155 |0 |2 |F63100|0 |2 |0 |
-ROW |49592 |1459 |33146 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49593 |1459 |33145 |0 |1 |2774A4|0 |2 |0 |
-ROW |49594 |1460 |33152 |2 |0 |1A7C11|0 |2 |0 |
-ROW |49595 |1460 |33151 |2 |1 |2774A4|0 |2 |0 |
-ROW |49596 |1460 |33148 |2 |2 |F63100|0 |2 |0 |
-ROW |49597 |1460 |33153 |2 |3 |A54F10|0 |2 |0 |
-ROW |49598 |1460 |33149 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |49599 |1460 |33144 |2 |5 |6C59DC|0 |2 |0 |
-ROW |49600 |1190 |31140 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49601 |1190 |31141 |0 |1 |2774A4|0 |2 |0 |
-ROW |49602 |1261 |31145 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49603 |1261 |31146 |0 |1 |2774A4|0 |2 |0 |
-ROW |49604 |1261 |31147 |0 |2 |F63100|0 |2 |0 |
-ROW |49605 |1191 |31138 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49606 |1192 |31157 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49607 |1192 |31158 |0 |1 |2774A4|0 |2 |0 |
-ROW |49608 |1193 |31092 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49609 |1193 |31108 |0 |1 |2774A4|0 |2 |0 |
-ROW |49610 |1193 |31110 |0 |2 |F63100|0 |2 |0 |
-ROW |49611 |1193 |31067 |0 |3 |A54F10|0 |2 |0 |
-ROW |49612 |1193 |31086 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |49613 |1193 |31087 |0 |5 |6C59DC|0 |2 |0 |
-ROW |49614 |1194 |31120 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49615 |1194 |31105 |0 |1 |2774A4|0 |2 |0 |
-ROW |49616 |1194 |31071 |0 |2 |F63100|0 |2 |0 |
-ROW |49617 |1194 |31081 |0 |3 |A54F10|0 |2 |0 |
-ROW |49618 |1195 |31098 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49619 |1195 |31099 |0 |1 |2774A4|0 |2 |0 |
-ROW |49620 |1196 |31072 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49621 |1196 |31072 |0 |1 |2774A4|0 |2 |0 |
-ROW |49622 |1197 |31103 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49623 |1197 |31074 |0 |1 |2774A4|0 |2 |0 |
-ROW |49624 |1198 |31104 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49625 |1198 |31063 |0 |1 |2774A4|0 |2 |0 |
-ROW |49626 |1198 |31111 |0 |2 |F63100|0 |2 |0 |
-ROW |49627 |1198 |31112 |0 |3 |A54F10|0 |2 |0 |
-ROW |49628 |1198 |31084 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |49629 |1199 |31115 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49630 |1199 |31116 |0 |1 |2774A4|0 |2 |0 |
-ROW |49631 |1199 |31062 |0 |2 |F63100|0 |2 |0 |
-ROW |49632 |1199 |31118 |0 |3 |A54F10|0 |2 |0 |
-ROW |49633 |1199 |31056 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |49634 |1200 |31107 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49635 |1200 |31090 |0 |1 |2774A4|0 |2 |0 |
-ROW |49636 |1201 |31097 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49637 |1201 |31096 |0 |1 |2774A4|0 |2 |0 |
-ROW |49638 |1202 |31089 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49639 |1202 |31061 |0 |1 |2774A4|0 |2 |0 |
-ROW |49640 |1203 |31064 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49641 |1204 |31065 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49642 |1204 |31066 |0 |1 |2774A4|0 |2 |0 |
-ROW |49643 |1204 |31068 |0 |2 |F63100|0 |2 |0 |
-ROW |49644 |1204 |31070 |0 |3 |A54F10|0 |2 |0 |
-ROW |49645 |1204 |31101 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |49646 |1204 |31106 |0 |5 |6C59DC|0 |2 |0 |
-ROW |49647 |1204 |31114 |0 |6 |AC8C14|0 |2 |0 |
-ROW |49648 |1205 |31069 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49649 |1206 |31076 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49650 |1206 |31078 |0 |1 |2774A4|0 |2 |0 |
-ROW |49651 |1206 |31109 |0 |2 |F63100|0 |2 |0 |
-ROW |49652 |1206 |31075 |0 |3 |A54F10|0 |2 |0 |
-ROW |49653 |1207 |31080 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49654 |1207 |31095 |0 |1 |2774A4|0 |2 |0 |
-ROW |49655 |1208 |31113 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49656 |1208 |31118 |0 |1 |2774A4|0 |2 |0 |
-ROW |49657 |1209 |31058 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49658 |1209 |31077 |0 |1 |2774A4|0 |2 |0 |
-ROW |49659 |1209 |31056 |0 |2 |F63100|0 |2 |0 |
-ROW |49660 |1209 |31117 |0 |3 |A54F10|0 |2 |0 |
-ROW |49661 |1109 |30453 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49662 |1109 |30455 |5 |1 |2774A4|0 |2 |0 |
-ROW |49663 |1110 |30471 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49664 |1110 |30470 |0 |1 |2774A4|0 |2 |0 |
-ROW |49665 |1110 |30466 |0 |2 |F63100|0 |2 |0 |
-ROW |49666 |1110 |30441 |0 |3 |A54F10|0 |2 |0 |
-ROW |49667 |1111 |30463 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49668 |1111 |30452 |0 |1 |2774A4|0 |2 |0 |
-ROW |49669 |1111 |30451 |0 |2 |F63100|0 |2 |0 |
-ROW |49670 |1111 |30437 |0 |3 |A54F10|0 |2 |0 |
-ROW |49671 |1112 |30456 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49672 |1112 |30457 |0 |1 |2774A4|0 |2 |0 |
-ROW |49673 |1112 |30458 |0 |2 |F63100|0 |2 |0 |
-ROW |49674 |1112 |30459 |0 |3 |A54F10|0 |2 |0 |
-ROW |49675 |1113 |30442 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49676 |1113 |30444 |0 |1 |2774A4|0 |2 |0 |
-ROW |49677 |1113 |30445 |0 |2 |F63100|0 |2 |0 |
-ROW |49678 |1114 |30446 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49679 |1114 |30447 |0 |1 |2774A4|0 |2 |0 |
-ROW |49680 |1114 |31168 |0 |2 |F63100|0 |2 |0 |
-ROW |49681 |1114 |30449 |0 |3 |A54F10|0 |2 |0 |
-ROW |49682 |1136 |30659 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49683 |1136 |30661 |5 |1 |2774A4|0 |2 |0 |
-ROW |49684 |1137 |30677 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49685 |1137 |30676 |0 |1 |2774A4|0 |2 |0 |
-ROW |49686 |1137 |30672 |0 |2 |F63100|0 |2 |0 |
-ROW |49687 |1137 |30647 |0 |3 |A54F10|0 |2 |0 |
-ROW |49688 |1138 |30669 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49689 |1138 |30658 |0 |1 |2774A4|0 |2 |0 |
-ROW |49690 |1138 |30657 |0 |2 |F63100|0 |2 |0 |
-ROW |49691 |1138 |30643 |0 |3 |A54F10|0 |2 |0 |
-ROW |49692 |1139 |30662 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49693 |1139 |30663 |0 |1 |2774A4|0 |2 |0 |
-ROW |49694 |1139 |30664 |0 |2 |F63100|0 |2 |0 |
-ROW |49695 |1139 |30665 |0 |3 |A54F10|0 |2 |0 |
-ROW |49696 |1140 |30648 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49697 |1140 |30650 |0 |1 |2774A4|0 |2 |0 |
-ROW |49698 |1140 |30651 |0 |2 |F63100|0 |2 |0 |
-ROW |49699 |1141 |30652 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49700 |1141 |30653 |0 |1 |2774A4|0 |2 |0 |
-ROW |49701 |1141 |31172 |0 |2 |F63100|0 |2 |0 |
-ROW |49702 |1141 |30655 |0 |3 |A54F10|0 |2 |0 |
-ROW |49703 |1115 |30506 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49704 |1115 |30507 |5 |1 |2774A4|0 |2 |0 |
-ROW |49705 |1116 |30504 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49706 |1116 |30505 |0 |1 |2774A4|0 |2 |0 |
-ROW |49707 |1116 |30518 |0 |2 |F63100|0 |2 |0 |
-ROW |49708 |1116 |30492 |0 |3 |A54F10|0 |2 |0 |
-ROW |49709 |1117 |30493 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49710 |1117 |30500 |0 |1 |2774A4|0 |2 |0 |
-ROW |49711 |1117 |30486 |0 |2 |F63100|0 |2 |0 |
-ROW |49712 |1117 |30488 |0 |3 |A54F10|0 |2 |0 |
-ROW |49713 |1118 |30508 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49714 |1118 |30509 |0 |1 |2774A4|0 |2 |0 |
-ROW |49715 |1118 |30503 |0 |2 |F63100|0 |2 |0 |
-ROW |49716 |1118 |30510 |0 |3 |A54F10|0 |2 |0 |
-ROW |49717 |1119 |30491 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49718 |1119 |30494 |0 |1 |2774A4|0 |2 |0 |
-ROW |49719 |1119 |30495 |0 |2 |F63100|0 |2 |0 |
-ROW |49720 |1120 |30496 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49721 |1120 |30497 |0 |1 |2774A4|0 |2 |0 |
-ROW |49722 |1120 |31176 |0 |2 |F63100|0 |2 |0 |
-ROW |49723 |1120 |30499 |0 |3 |A54F10|0 |2 |0 |
-ROW |49724 |1262 |31718 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49725 |1262 |31719 |0 |1 |2774A4|0 |2 |0 |
-ROW |49726 |1263 |31722 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49727 |1263 |31724 |0 |1 |2774A4|0 |2 |0 |
-ROW |49728 |1263 |32588 |0 |2 |F63100|0 |2 |0 |
-ROW |49729 |1264 |31630 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49730 |1264 |31683 |0 |1 |2774A4|0 |2 |0 |
-ROW |49731 |1265 |31668 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49732 |1265 |31702 |0 |1 |2774A4|0 |2 |0 |
-ROW |49733 |1265 |31666 |0 |2 |F63100|0 |2 |0 |
-ROW |49734 |1266 |31673 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49735 |1266 |31704 |0 |1 |2774A4|0 |2 |0 |
-ROW |49736 |1267 |31690 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49737 |1267 |31672 |0 |1 |2774A4|0 |2 |0 |
-ROW |49738 |1268 |31632 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49739 |1268 |31655 |0 |1 |2774A4|0 |2 |0 |
-ROW |49740 |1269 |31650 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49741 |1269 |31648 |0 |1 |2774A4|0 |2 |0 |
-ROW |49742 |1269 |31651 |0 |2 |F63100|0 |2 |0 |
-ROW |49743 |1269 |31646 |0 |3 |A54F10|0 |2 |0 |
-ROW |49744 |1269 |31653 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |49745 |1270 |31660 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49746 |1270 |31671 |0 |1 |2774A4|0 |2 |0 |
-ROW |49747 |1270 |31662 |0 |2 |F63100|0 |2 |0 |
-ROW |49748 |1270 |31661 |0 |3 |A54F10|0 |2 |0 |
-ROW |49749 |1270 |31659 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |49750 |1270 |31658 |0 |5 |6C59DC|0 |2 |0 |
-ROW |49751 |1237 |31442 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49752 |1237 |31443 |0 |1 |2774A4|0 |2 |0 |
-ROW |49753 |1238 |31786 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49754 |1238 |31451 |0 |1 |2774A4|0 |2 |0 |
-ROW |49755 |1238 |32590 |0 |2 |F63100|0 |2 |0 |
-ROW |49756 |1271 |31770 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49757 |1271 |31771 |0 |1 |2774A4|0 |2 |0 |
-ROW |49758 |1272 |31755 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49759 |1272 |31774 |0 |1 |2774A4|0 |2 |0 |
-ROW |49760 |1272 |31753 |0 |2 |F63100|0 |2 |0 |
-ROW |49761 |1273 |31730 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49762 |1273 |31759 |0 |1 |2774A4|0 |2 |0 |
-ROW |49763 |1274 |31745 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49764 |1274 |31758 |0 |1 |2774A4|0 |2 |0 |
-ROW |49765 |1275 |31731 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49766 |1275 |31732 |0 |1 |2774A4|0 |2 |0 |
-ROW |49767 |1276 |31739 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49768 |1276 |31736 |0 |1 |2774A4|0 |2 |0 |
-ROW |49769 |1276 |31740 |0 |2 |F63100|0 |2 |0 |
-ROW |49770 |1276 |31737 |0 |3 |A54F10|0 |2 |0 |
-ROW |49771 |1276 |31741 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |49772 |1277 |31746 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49773 |1277 |31747 |0 |1 |2774A4|0 |2 |0 |
-ROW |49774 |1277 |31749 |0 |2 |F63100|0 |2 |0 |
-ROW |49775 |1277 |31748 |0 |3 |A54F10|0 |2 |0 |
-ROW |49776 |1277 |31757 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |49777 |1277 |31744 |0 |5 |6C59DC|0 |2 |0 |
-ROW |49778 |814 |28730 |0 |0 |66BB6A|0 |2 |0 |
-ROW |49779 |814 |28728 |0 |1 |42A5F5|0 |2 |0 |
-ROW |49780 |815 |28712 |0 |0 |66BB6A|0 |2 |0 |
-ROW |49781 |816 |28733 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49782 |816 |28715 |0 |1 |F63100|0 |2 |0 |
-ROW |49783 |816 |28729 |0 |2 |2774A4|0 |2 |0 |
-ROW |49784 |816 |28732 |0 |3 |A54F10|0 |2 |0 |
-ROW |49785 |817 |28716 |0 |0 |EC407A|0 |2 |0 |
-ROW |49786 |818 |28726 |0 |0 |4CAF50|1 |2 |0 |
-ROW |49787 |818 |28723 |0 |1 |03A9F4|1 |2 |0 |
-ROW |49788 |818 |28720 |0 |2 |9C27B0|1 |2 |0 |
-ROW |49789 |818 |28725 |5 |3 |81C784|0 |2 |0 |
-ROW |49790 |818 |28722 |5 |4 |90CAF9|0 |2 |0 |
-ROW |49791 |818 |28719 |5 |5 |CE93D8|0 |2 |0 |
-ROW |49792 |819 |28727 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49793 |819 |28724 |0 |1 |F63100|0 |2 |0 |
-ROW |49794 |819 |28721 |0 |2 |2774A4|0 |2 |0 |
-ROW |49795 |820 |28740 |5 |0 |66BB6A|0 |2 |0 |
-ROW |49796 |820 |28739 |0 |1 |42A5F5|1 |2 |0 |
-ROW |49797 |821 |28738 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49798 |821 |28737 |0 |1 |F63100|0 |2 |0 |
-ROW |49799 |821 |28736 |0 |2 |2774A4|0 |2 |0 |
-ROW |49800 |821 |28735 |0 |3 |A54F10|0 |2 |0 |
-ROW |49801 |821 |28734 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |49802 |822 |28693 |0 |0 |1A7C11|1 |2 |0 |
-ROW |49803 |822 |28698 |0 |1 |F63100|1 |2 |0 |
-ROW |49804 |822 |28694 |0 |2 |2774A4|1 |2 |0 |
-ROW |49805 |822 |28697 |0 |3 |A54F10|1 |2 |0 |
-ROW |49806 |822 |28702 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |49807 |822 |28696 |0 |5 |6C59DC|0 |2 |0 |
-ROW |49808 |823 |28700 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49809 |823 |28699 |0 |1 |F63100|0 |2 |0 |
-ROW |49810 |823 |28701 |0 |2 |2774A4|1 |2 |0 |
-ROW |49811 |823 |28695 |0 |3 |A54F10|1 |2 |0 |
-ROW |49812 |824 |28708 |5 |0 |C8E6C9|1 |2 |0 |
-ROW |49813 |824 |28709 |0 |1 |6C59DC|0 |2 |0 |
-ROW |49814 |824 |28704 |0 |2 |1A7C11|1 |2 |0 |
-ROW |49815 |824 |28705 |0 |3 |F63100|1 |2 |0 |
-ROW |49816 |824 |28706 |0 |4 |2774A4|1 |2 |0 |
-ROW |49817 |824 |28707 |0 |5 |A54F10|1 |2 |0 |
-ROW |49818 |824 |28703 |0 |6 |AC8C14|1 |2 |0 |
-ROW |49819 |825 |28674 |5 |1 |A5D6A7|0 |2 |0 |
-ROW |49820 |825 |28673 |0 |2 |039BE5|1 |2 |0 |
-ROW |49821 |826 |28677 |0 |0 |42A5F5|0 |2 |0 |
-ROW |49822 |827 |28689 |0 |0 |1A7C11|1 |2 |0 |
-ROW |49823 |827 |28688 |0 |1 |F63100|1 |2 |0 |
-ROW |49824 |827 |28690 |0 |2 |2774A4|1 |2 |0 |
-ROW |49825 |827 |28691 |0 |3 |A54F10|1 |2 |0 |
-ROW |49826 |828 |28684 |0 |0 |66BB6A|0 |2 |0 |
-ROW |49827 |828 |28681 |0 |1 |03A9F4|1 |2 |0 |
-ROW |49828 |829 |28710 |0 |0 |29B6F6|0 |2 |0 |
-ROW |49829 |829 |28692 |0 |1 |AB47BC|1 |2 |0 |
-ROW |49830 |1210 |31269 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49831 |1210 |31252 |0 |1 |2774A4|0 |2 |0 |
-ROW |49832 |1210 |31251 |0 |2 |F63100|0 |2 |0 |
-ROW |49833 |1210 |31250 |0 |3 |A54F10|0 |2 |0 |
-ROW |49834 |1210 |31249 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |49835 |1210 |31248 |0 |5 |6C59DC|0 |2 |0 |
-ROW |49836 |1210 |31246 |0 |6 |AC8C14|0 |2 |0 |
-ROW |49837 |1210 |31245 |0 |7 |611F27|0 |2 |0 |
-ROW |49838 |1210 |31247 |0 |8 |F230E0|0 |2 |0 |
-ROW |49839 |1210 |31247 |0 |9 |FFAD40|0 |2 |0 |
-ROW |49840 |1211 |31243 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49841 |1212 |31266 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49842 |1212 |31265 |0 |1 |2774A4|0 |2 |0 |
-ROW |49843 |1212 |31263 |0 |2 |F63100|0 |2 |0 |
-ROW |49844 |1212 |31262 |0 |3 |A54F10|0 |2 |0 |
-ROW |49845 |1212 |31260 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |49846 |1212 |31259 |0 |5 |6C59DC|0 |2 |0 |
-ROW |49847 |1212 |31258 |0 |6 |AC8C14|0 |2 |0 |
-ROW |49848 |1212 |31256 |0 |7 |611F27|0 |2 |0 |
-ROW |49849 |1212 |31257 |0 |8 |F230E0|0 |2 |0 |
-ROW |49850 |1212 |31244 |0 |9 |FFAD40|0 |2 |0 |
-ROW |49851 |1212 |31255 |0 |10 |40CDFF|0 |2 |0 |
-ROW |49852 |1212 |31254 |0 |11 |40FFA0|0 |2 |0 |
-ROW |49853 |1212 |31253 |0 |12 |AE4500|0 |2 |0 |
-ROW |49854 |1213 |31242 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49855 |1386 |32598 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49856 |1386 |32599 |0 |1 |2774A4|0 |2 |0 |
-ROW |49857 |1386 |32600 |0 |2 |F63100|0 |2 |0 |
-ROW |49858 |1087 |30346 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49859 |1087 |30345 |0 |1 |2774A4|0 |2 |0 |
-ROW |49860 |1088 |30350 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49861 |1088 |30349 |5 |1 |2774A4|0 |2 |0 |
-ROW |49862 |1089 |30396 |2 |0 |1A7C11|0 |2 |0 |
-ROW |49863 |1090 |30398 |2 |0 |1A7C11|0 |2 |0 |
-ROW |49864 |1091 |30322 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49865 |1091 |30277 |5 |1 |2774A4|0 |2 |0 |
-ROW |49866 |1092 |30284 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49867 |1093 |30313 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49868 |1093 |30314 |0 |1 |2774A4|0 |2 |0 |
-ROW |49869 |1093 |30315 |5 |2 |F63100|0 |2 |0 |
-ROW |49870 |1093 |30316 |0 |3 |A54F10|0 |2 |0 |
-ROW |49871 |1094 |30279 |2 |0 |1A7C11|0 |2 |0 |
-ROW |49872 |1094 |30280 |2 |1 |2774A4|0 |2 |0 |
-ROW |49873 |1095 |30290 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49874 |1095 |30293 |0 |1 |2774A4|0 |2 |0 |
-ROW |49875 |1096 |30318 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49876 |1096 |30308 |2 |1 |2774A4|0 |2 |0 |
-ROW |49877 |1096 |30320 |2 |2 |F63100|0 |2 |0 |
-ROW |49878 |1097 |30317 |2 |0 |1A7C11|0 |2 |0 |
-ROW |49879 |1098 |30289 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49880 |1098 |30291 |5 |1 |2774A4|0 |2 |0 |
-ROW |49881 |1099 |30334 |2 |0 |1A7C11|0 |2 |0 |
-ROW |49882 |1099 |30325 |2 |1 |2774A4|0 |2 |0 |
-ROW |49883 |1100 |30306 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49884 |1101 |30274 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49885 |1102 |30281 |0 |0 |1A7C11|0 |2 |0 |
-ROW |49886 |1060 |30159 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49887 |1061 |30165 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49888 |1063 |30177 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49889 |1064 |30183 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49890 |1065 |30161 |0 |0 |969696|0 |9 |2 |
-ROW |49891 |1065 |30162 |0 |1 |C80000|0 |9 |0 |
-ROW |49892 |1066 |30167 |0 |0 |969696|0 |9 |2 |
-ROW |49893 |1066 |30168 |0 |1 |C80000|0 |9 |0 |
-ROW |49894 |1068 |30179 |0 |0 |969696|0 |9 |2 |
-ROW |49895 |1068 |30180 |0 |1 |C80000|0 |9 |0 |
-ROW |49896 |1069 |30185 |0 |0 |969696|0 |9 |2 |
-ROW |49897 |1069 |30186 |0 |1 |C80000|0 |9 |0 |
-ROW |49898 |1070 |30142 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49899 |1071 |30143 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49900 |1073 |30145 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49901 |1074 |30146 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49902 |741 |27084 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49903 |741 |27085 |2 |1 |2774A4|0 |2 |0 |
-ROW |49904 |741 |27083 |0 |2 |F63100|1 |2 |0 |
-ROW |49905 |741 |27086 |0 |3 |A54F10|1 |2 |0 |
-ROW |49906 |741 |27082 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |49907 |741 |27079 |0 |5 |6C59DC|1 |2 |0 |
-ROW |49908 |742 |27622 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49909 |742 |27625 |2 |1 |2774A4|0 |2 |0 |
-ROW |49910 |742 |27624 |0 |2 |F63100|1 |2 |0 |
-ROW |49911 |742 |27621 |0 |3 |A54F10|1 |2 |0 |
-ROW |49912 |742 |27623 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |49913 |742 |27620 |0 |5 |6C59DC|1 |2 |0 |
-ROW |49914 |743 |27979 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49915 |743 |27982 |2 |1 |2774A4|0 |2 |0 |
-ROW |49916 |743 |27981 |0 |2 |F63100|1 |2 |0 |
-ROW |49917 |743 |27978 |0 |3 |A54F10|1 |2 |0 |
-ROW |49918 |743 |27980 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |49919 |743 |27977 |0 |5 |6C59DC|1 |2 |0 |
-ROW |49920 |740 |28008 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49921 |740 |28011 |2 |1 |2774A4|0 |2 |0 |
-ROW |49922 |740 |28010 |0 |2 |F63100|1 |2 |0 |
-ROW |49923 |740 |28007 |0 |3 |A54F10|1 |2 |0 |
-ROW |49924 |740 |28009 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |49925 |740 |28006 |0 |5 |6C59DC|1 |2 |0 |
-ROW |49926 |745 |27104 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49927 |745 |27105 |2 |1 |2774A4|0 |2 |0 |
-ROW |49928 |745 |27103 |0 |2 |F63100|1 |2 |0 |
-ROW |49929 |745 |27106 |0 |3 |A54F10|1 |2 |0 |
-ROW |49930 |745 |27102 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |49931 |745 |27099 |0 |5 |6C59DC|1 |2 |0 |
-ROW |49932 |746 |27183 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49933 |746 |27186 |2 |1 |2774A4|0 |2 |0 |
-ROW |49934 |746 |27185 |0 |2 |F63100|1 |2 |0 |
-ROW |49935 |746 |27182 |0 |3 |A54F10|1 |2 |0 |
-ROW |49936 |746 |27184 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |49937 |746 |27181 |0 |5 |6C59DC|1 |2 |0 |
-ROW |49938 |747 |27218 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49939 |747 |27221 |2 |1 |2774A4|0 |2 |0 |
-ROW |49940 |747 |27220 |0 |2 |F63100|1 |2 |0 |
-ROW |49941 |747 |27217 |0 |3 |A54F10|1 |2 |0 |
-ROW |49942 |747 |27219 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |49943 |747 |27216 |0 |5 |6C59DC|1 |2 |0 |
-ROW |49944 |748 |27254 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49945 |748 |27257 |2 |1 |2774A4|0 |2 |0 |
-ROW |49946 |748 |27256 |0 |2 |F63100|1 |2 |0 |
-ROW |49947 |748 |27253 |0 |3 |A54F10|1 |2 |0 |
-ROW |49948 |748 |27255 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |49949 |748 |27252 |0 |5 |6C59DC|1 |2 |0 |
-ROW |49950 |749 |27275 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49951 |749 |27278 |2 |1 |2774A4|0 |2 |0 |
-ROW |49952 |749 |27277 |0 |2 |F63100|1 |2 |0 |
-ROW |49953 |749 |27274 |0 |3 |A54F10|1 |2 |0 |
-ROW |49954 |749 |27276 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |49955 |749 |27273 |0 |5 |6C59DC|1 |2 |0 |
-ROW |49956 |750 |27324 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49957 |750 |27327 |2 |1 |2774A4|0 |2 |0 |
-ROW |49958 |750 |27326 |0 |2 |F63100|1 |2 |0 |
-ROW |49959 |750 |27323 |0 |3 |A54F10|1 |2 |0 |
-ROW |49960 |750 |27325 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |49961 |750 |27322 |0 |5 |6C59DC|1 |2 |0 |
-ROW |49962 |752 |27453 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49963 |752 |27456 |2 |1 |2774A4|0 |2 |0 |
-ROW |49964 |752 |27455 |0 |2 |F63100|1 |2 |0 |
-ROW |49965 |752 |27452 |0 |3 |A54F10|1 |2 |0 |
-ROW |49966 |752 |27454 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |49967 |752 |27451 |0 |5 |6C59DC|1 |2 |0 |
-ROW |49968 |753 |27489 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49969 |753 |27492 |2 |1 |2774A4|0 |2 |0 |
-ROW |49970 |753 |27491 |0 |2 |F63100|1 |2 |0 |
-ROW |49971 |753 |27488 |0 |3 |A54F10|1 |2 |0 |
-ROW |49972 |753 |27490 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |49973 |753 |27487 |0 |5 |6C59DC|1 |2 |0 |
-ROW |49974 |754 |27523 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49975 |754 |27526 |2 |1 |2774A4|0 |2 |0 |
-ROW |49976 |754 |27525 |0 |2 |F63100|1 |2 |0 |
-ROW |49977 |754 |27522 |0 |3 |A54F10|1 |2 |0 |
-ROW |49978 |754 |27524 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |49979 |754 |27521 |0 |5 |6C59DC|1 |2 |0 |
-ROW |49980 |755 |27559 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49981 |755 |27562 |2 |1 |2774A4|0 |2 |0 |
-ROW |49982 |755 |27561 |0 |2 |F63100|1 |2 |0 |
-ROW |49983 |755 |27558 |0 |3 |A54F10|1 |2 |0 |
-ROW |49984 |755 |27560 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |49985 |755 |27557 |0 |5 |6C59DC|1 |2 |0 |
-ROW |49986 |756 |27645 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49987 |756 |27648 |2 |1 |2774A4|0 |2 |0 |
-ROW |49988 |756 |27647 |0 |2 |F63100|1 |2 |0 |
-ROW |49989 |756 |27644 |0 |3 |A54F10|1 |2 |0 |
-ROW |49990 |756 |27646 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |49991 |756 |27643 |0 |5 |6C59DC|1 |2 |0 |
-ROW |49992 |758 |27725 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49993 |758 |27728 |2 |1 |2774A4|0 |2 |0 |
-ROW |49994 |758 |27727 |0 |2 |F63100|1 |2 |0 |
-ROW |49995 |758 |27724 |0 |3 |A54F10|1 |2 |0 |
-ROW |49996 |758 |27726 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |49997 |758 |27723 |0 |5 |6C59DC|1 |2 |0 |
-ROW |49998 |759 |27759 |5 |0 |1A7C11|0 |2 |0 |
-ROW |49999 |759 |27762 |2 |1 |2774A4|0 |2 |0 |
-ROW |50000 |759 |27761 |0 |2 |F63100|1 |2 |0 |
-ROW |50001 |759 |27758 |0 |3 |A54F10|1 |2 |0 |
-ROW |50002 |759 |27760 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |50003 |759 |27757 |0 |5 |6C59DC|1 |2 |0 |
-ROW |50004 |760 |27791 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50005 |760 |27794 |2 |1 |2774A4|0 |2 |0 |
-ROW |50006 |760 |27793 |0 |2 |F63100|1 |2 |0 |
-ROW |50007 |760 |27790 |0 |3 |A54F10|1 |2 |0 |
-ROW |50008 |760 |27792 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |50009 |760 |27789 |0 |5 |6C59DC|1 |2 |0 |
-ROW |50010 |762 |27875 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50011 |762 |27878 |2 |1 |2774A4|0 |2 |0 |
-ROW |50012 |762 |27877 |0 |2 |F63100|1 |2 |0 |
-ROW |50013 |762 |27874 |0 |3 |A54F10|1 |2 |0 |
-ROW |50014 |762 |27876 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |50015 |762 |27873 |0 |5 |6C59DC|1 |2 |0 |
-ROW |50016 |763 |27912 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50017 |763 |27915 |2 |1 |2774A4|0 |2 |0 |
-ROW |50018 |763 |27914 |0 |2 |F63100|1 |2 |0 |
-ROW |50019 |763 |27911 |0 |3 |A54F10|1 |2 |0 |
-ROW |50020 |763 |27913 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |50021 |763 |27910 |0 |5 |6C59DC|1 |2 |0 |
-ROW |50022 |764 |27947 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50023 |764 |27950 |2 |1 |2774A4|0 |2 |0 |
-ROW |50024 |764 |27949 |0 |2 |F63100|1 |2 |0 |
-ROW |50025 |764 |27946 |0 |3 |A54F10|1 |2 |0 |
-ROW |50026 |764 |27948 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |50027 |764 |27945 |0 |5 |6C59DC|1 |2 |0 |
-ROW |50028 |773 |28121 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50029 |773 |28124 |2 |1 |2774A4|0 |2 |0 |
-ROW |50030 |773 |28123 |0 |2 |F63100|1 |2 |0 |
-ROW |50031 |773 |28120 |0 |3 |A54F10|1 |2 |0 |
-ROW |50032 |773 |28122 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |50033 |773 |28119 |0 |5 |6C59DC|1 |2 |0 |
-ROW |50034 |785 |28226 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50035 |785 |28229 |2 |1 |2774A4|0 |2 |0 |
-ROW |50036 |785 |28228 |0 |2 |F63100|1 |2 |0 |
-ROW |50037 |785 |28225 |0 |3 |A54F10|1 |2 |0 |
-ROW |50038 |785 |28227 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |50039 |785 |28224 |0 |5 |6C59DC|1 |2 |0 |
-ROW |50040 |790 |28296 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50041 |790 |28299 |2 |1 |2774A4|0 |2 |0 |
-ROW |50042 |790 |28298 |0 |2 |F63100|1 |2 |0 |
-ROW |50043 |790 |28295 |0 |3 |A54F10|1 |2 |0 |
-ROW |50044 |790 |28297 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |50045 |790 |28294 |0 |5 |6C59DC|1 |2 |0 |
-ROW |50046 |865 |28971 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50047 |865 |28974 |2 |1 |2774A4|0 |2 |0 |
-ROW |50048 |865 |28973 |0 |2 |F63100|1 |2 |0 |
-ROW |50049 |865 |28970 |0 |3 |A54F10|1 |2 |0 |
-ROW |50050 |865 |28972 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |50051 |865 |28969 |0 |5 |6C59DC|1 |2 |0 |
-ROW |50052 |766 |27124 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50053 |766 |27125 |2 |1 |2774A4|0 |2 |0 |
-ROW |50054 |766 |27123 |0 |2 |F63100|1 |2 |0 |
-ROW |50055 |766 |27126 |0 |3 |A54F10|1 |2 |0 |
-ROW |50056 |766 |27122 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |50057 |766 |27119 |0 |5 |6C59DC|1 |2 |0 |
-ROW |50058 |886 |29080 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50059 |886 |29083 |2 |1 |2774A4|0 |2 |0 |
-ROW |50060 |886 |29082 |0 |2 |F63100|1 |2 |0 |
-ROW |50061 |886 |29079 |0 |3 |A54F10|1 |2 |0 |
-ROW |50062 |886 |29081 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |50063 |886 |29078 |0 |5 |6C59DC|1 |2 |0 |
-ROW |50064 |668 |27208 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50065 |1032 |30088 |2 |0 |1A7C11|0 |2 |0 |
-ROW |50066 |1032 |30087 |5 |1 |2774A4|0 |2 |0 |
-ROW |50067 |1033 |30089 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50068 |671 |27240 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50069 |1034 |30093 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50070 |675 |27294 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50071 |676 |27299 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50072 |677 |27301 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50073 |1035 |30094 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50074 |1036 |30095 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50075 |1037 |30096 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50076 |1461 |33219 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50077 |1462 |33224 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50078 |1463 |33227 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50079 |1463 |33230 |2 |1 |2774A4|0 |2 |0 |
-ROW |50080 |1463 |33229 |0 |2 |F63100|1 |2 |0 |
-ROW |50081 |1463 |33226 |0 |3 |A54F10|1 |2 |0 |
-ROW |50082 |1463 |33228 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |50083 |1463 |33225 |0 |5 |6C59DC|1 |2 |0 |
-ROW |50084 |1464 |33260 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50085 |1465 |33265 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50086 |1466 |33268 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50087 |1466 |33271 |2 |1 |2774A4|0 |2 |0 |
-ROW |50088 |1466 |33270 |0 |2 |F63100|1 |2 |0 |
-ROW |50089 |1466 |33267 |0 |3 |A54F10|1 |2 |0 |
-ROW |50090 |1466 |33269 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |50091 |1466 |33266 |0 |5 |6C59DC|1 |2 |0 |
-ROW |50092 |1467 |33301 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50093 |1468 |33306 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50094 |1469 |33309 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50095 |1469 |33312 |2 |1 |2774A4|0 |2 |0 |
-ROW |50096 |1469 |33311 |0 |2 |F63100|1 |2 |0 |
-ROW |50097 |1469 |33308 |0 |3 |A54F10|1 |2 |0 |
-ROW |50098 |1469 |33310 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |50099 |1469 |33307 |0 |5 |6C59DC|1 |2 |0 |
-ROW |50100 |1470 |33342 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50101 |1471 |33347 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50102 |1472 |33350 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50103 |1472 |33353 |2 |1 |2774A4|0 |2 |0 |
-ROW |50104 |1472 |33352 |0 |2 |F63100|1 |2 |0 |
-ROW |50105 |1472 |33349 |0 |3 |A54F10|1 |2 |0 |
-ROW |50106 |1472 |33351 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |50107 |1472 |33348 |0 |5 |6C59DC|1 |2 |0 |
-ROW |50108 |1473 |33383 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50109 |1474 |33388 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50110 |1475 |33391 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50111 |1475 |33394 |2 |1 |2774A4|0 |2 |0 |
-ROW |50112 |1475 |33393 |0 |2 |F63100|1 |2 |0 |
-ROW |50113 |1475 |33390 |0 |3 |A54F10|1 |2 |0 |
-ROW |50114 |1475 |33392 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |50115 |1475 |33389 |0 |5 |6C59DC|1 |2 |0 |
-ROW |50116 |1038 |30101 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50117 |1039 |30102 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50118 |1040 |30103 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50119 |1041 |30104 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50120 |786 |28246 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50121 |787 |28247 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50122 |687 |27417 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50123 |688 |27427 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50124 |691 |27376 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50125 |692 |27380 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50126 |694 |27478 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50127 |1042 |30105 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50128 |1043 |30107 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50129 |698 |27511 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50130 |1044 |30108 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50131 |701 |27547 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50132 |1045 |27591 |2 |0 |1A7C11|0 |2 |0 |
-ROW |50133 |1045 |30110 |5 |1 |2774A4|0 |2 |0 |
-ROW |50134 |1046 |30111 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50135 |704 |27586 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50136 |708 |27671 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50137 |1047 |30112 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50138 |1048 |30114 |2 |0 |1A7C11|0 |2 |0 |
-ROW |50139 |1048 |30113 |5 |1 |2774A4|0 |2 |0 |
-ROW |50140 |1049 |30115 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50141 |775 |28143 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50142 |714 |27753 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50143 |1050 |30116 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50144 |856 |28894 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50145 |1051 |30118 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50146 |1476 |33419 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50147 |1476 |33422 |2 |1 |2774A4|0 |2 |0 |
-ROW |50148 |1476 |33421 |0 |2 |F63100|1 |2 |0 |
-ROW |50149 |1476 |33418 |0 |3 |A54F10|1 |2 |0 |
-ROW |50150 |1476 |33420 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |50151 |1476 |33417 |0 |5 |6C59DC|1 |2 |0 |
-ROW |50152 |1477 |33427 |0 |0 |969696|0 |9 |2 |
-ROW |50153 |1477 |33428 |0 |1 |C80000|0 |9 |0 |
-ROW |50154 |1478 |33431 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50155 |1479 |33407 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50156 |724 |27904 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50157 |1299 |31968 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50158 |1299 |31966 |0 |1 |2774A4|0 |2 |0 |
-ROW |50159 |1299 |31965 |0 |2 |F63100|0 |2 |0 |
-ROW |50160 |1299 |31967 |0 |3 |A54F10|0 |2 |0 |
-ROW |50161 |1052 |27907 |0 |0 |969696|0 |9 |2 |
-ROW |50162 |1052 |27908 |0 |1 |C80000|0 |9 |0 |
-ROW |50163 |1053 |30120 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50164 |1335 |32330 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50165 |1335 |32317 |5 |1 |2774A4|0 |2 |0 |
-ROW |50166 |1336 |32319 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50167 |1336 |32327 |5 |1 |2774A4|0 |2 |0 |
-ROW |50168 |1336 |32326 |5 |2 |F63100|0 |2 |0 |
-ROW |50169 |1337 |32324 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50170 |1337 |32318 |5 |1 |2774A4|0 |2 |0 |
-ROW |50171 |1338 |32311 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50172 |1338 |32310 |5 |1 |2774A4|0 |2 |0 |
-ROW |50173 |1338 |32328 |5 |2 |F63100|0 |2 |0 |
-ROW |50174 |1339 |32350 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50175 |1339 |32339 |5 |1 |2774A4|0 |2 |0 |
-ROW |50176 |1340 |32331 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50177 |1341 |32347 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50178 |1341 |32342 |5 |1 |2774A4|0 |2 |0 |
-ROW |50179 |1342 |32334 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50180 |1342 |32333 |5 |1 |2774A4|0 |2 |0 |
-ROW |50181 |1342 |32348 |5 |2 |F63100|0 |2 |0 |
-ROW |50182 |1343 |32373 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50183 |1343 |32360 |5 |1 |2774A4|0 |2 |0 |
-ROW |50184 |1344 |32362 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50185 |1344 |32370 |5 |1 |2774A4|0 |2 |0 |
-ROW |50186 |1344 |32369 |5 |2 |F63100|0 |2 |0 |
-ROW |50187 |1345 |32367 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50188 |1345 |32361 |5 |1 |2774A4|0 |2 |0 |
-ROW |50189 |1346 |32354 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50190 |1346 |32353 |5 |1 |2774A4|0 |2 |0 |
-ROW |50191 |1346 |32371 |5 |2 |F63100|0 |2 |0 |
-ROW |50192 |1347 |32382 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50193 |1348 |32375 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50194 |1349 |32380 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50195 |1350 |32401 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50196 |1351 |32398 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50197 |1351 |32397 |5 |1 |2774A4|0 |2 |0 |
-ROW |50198 |1351 |32396 |5 |2 |F63100|0 |2 |0 |
-ROW |50199 |1352 |32394 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50200 |1353 |32393 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50201 |1354 |32385 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50202 |1354 |32399 |5 |1 |2774A4|0 |2 |0 |
-ROW |50203 |1355 |32420 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50204 |1356 |32417 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50205 |1356 |32416 |5 |1 |2774A4|0 |2 |0 |
-ROW |50206 |1356 |32415 |5 |2 |F63100|0 |2 |0 |
-ROW |50207 |1357 |32413 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50208 |1358 |32412 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50209 |1359 |32404 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50210 |1359 |32418 |5 |1 |2774A4|0 |2 |0 |
-ROW |50211 |1360 |32436 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50212 |1361 |32439 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50213 |1362 |32440 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50214 |1363 |32442 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50215 |1364 |32443 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50216 |1365 |32428 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50217 |1365 |32429 |5 |1 |2774A4|0 |2 |0 |
-ROW |50218 |727 |27936 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50219 |1054 |27935 |2 |0 |1A7C11|0 |2 |0 |
-ROW |50220 |1054 |30122 |5 |1 |2774A4|0 |2 |0 |
-ROW |50221 |1055 |30123 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50222 |730 |27975 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50223 |1056 |30126 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50224 |733 |28003 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50225 |1057 |30131 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50226 |736 |28031 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50227 |1058 |30136 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50228 |1214 |31276 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50229 |1214 |31277 |5 |1 |2774A4|0 |2 |0 |
-ROW |50230 |1215 |31279 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50231 |1215 |31280 |5 |1 |2774A4|0 |2 |0 |
-ROW |50232 |1216 |31282 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50233 |1216 |31283 |5 |1 |2774A4|0 |2 |0 |
-ROW |50234 |1217 |31286 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50235 |1217 |31289 |5 |1 |2774A4|0 |2 |0 |
-ROW |50236 |1218 |31292 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50237 |1218 |31295 |5 |1 |2774A4|0 |2 |0 |
-ROW |50238 |1219 |31298 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50239 |1219 |31301 |5 |1 |2774A4|0 |2 |0 |
-ROW |50240 |1220 |31285 |0 |0 |1A7C11|1 |2 |0 |
-ROW |50241 |1220 |31288 |5 |1 |2774A4|0 |2 |0 |
-ROW |50242 |1221 |31291 |0 |0 |1A7C11|1 |2 |0 |
-ROW |50243 |1221 |31294 |5 |1 |2774A4|0 |2 |0 |
-ROW |50244 |1222 |31297 |0 |0 |1A7C11|1 |2 |0 |
-ROW |50245 |1222 |31300 |5 |1 |2774A4|0 |2 |0 |
-ROW |50246 |887 |29211 |0 |0 |969696|0 |9 |2 |
-ROW |50247 |887 |29210 |0 |1 |C80000|0 |9 |0 |
-ROW |50248 |888 |29225 |0 |0 |969696|0 |9 |2 |
-ROW |50249 |888 |29224 |0 |1 |C80000|0 |9 |0 |
-ROW |50250 |889 |29239 |0 |0 |969696|0 |9 |2 |
-ROW |50251 |889 |29238 |0 |1 |C80000|0 |9 |0 |
-ROW |50252 |899 |29216 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50253 |899 |29217 |2 |1 |2774A4|0 |2 |0 |
-ROW |50254 |899 |29218 |0 |2 |F63100|1 |2 |0 |
-ROW |50255 |899 |29219 |0 |3 |A54F10|1 |2 |0 |
-ROW |50256 |899 |29220 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |50257 |899 |29221 |0 |5 |6C59DC|1 |2 |0 |
-ROW |50258 |900 |29230 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50259 |900 |29231 |2 |1 |2774A4|0 |2 |0 |
-ROW |50260 |900 |29232 |0 |2 |F63100|1 |2 |0 |
-ROW |50261 |900 |29233 |0 |3 |A54F10|1 |2 |0 |
-ROW |50262 |900 |29234 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |50263 |900 |29235 |0 |5 |6C59DC|1 |2 |0 |
-ROW |50264 |901 |29244 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50265 |901 |29245 |2 |1 |2774A4|0 |2 |0 |
-ROW |50266 |901 |29246 |0 |2 |F63100|1 |2 |0 |
-ROW |50267 |901 |29247 |0 |3 |A54F10|1 |2 |0 |
-ROW |50268 |901 |29248 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |50269 |901 |29249 |0 |5 |6C59DC|1 |2 |0 |
-ROW |50270 |911 |29089 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50271 |911 |29102 |0 |1 |2774A4|0 |2 |0 |
-ROW |50272 |912 |29126 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50273 |912 |29139 |0 |1 |2774A4|0 |2 |0 |
-ROW |50274 |913 |29163 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50275 |913 |29176 |0 |1 |2774A4|0 |2 |0 |
-ROW |50276 |908 |29098 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50277 |908 |29097 |0 |1 |2774A4|0 |2 |0 |
-ROW |50278 |908 |29095 |0 |2 |F63100|0 |2 |0 |
-ROW |50279 |908 |29088 |0 |3 |A54F10|0 |2 |0 |
-ROW |50280 |908 |29094 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |50281 |908 |29093 |0 |5 |6C59DC|0 |2 |0 |
-ROW |50282 |908 |29092 |0 |6 |AC8C14|0 |2 |0 |
-ROW |50283 |908 |29091 |0 |7 |611F27|0 |2 |0 |
-ROW |50284 |908 |29090 |0 |8 |F230E0|0 |2 |0 |
-ROW |50285 |909 |29135 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50286 |909 |29134 |0 |1 |2774A4|0 |2 |0 |
-ROW |50287 |909 |29132 |0 |2 |F63100|0 |2 |0 |
-ROW |50288 |909 |29125 |0 |3 |A54F10|0 |2 |0 |
-ROW |50289 |909 |29131 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |50290 |909 |29130 |0 |5 |6C59DC|0 |2 |0 |
-ROW |50291 |909 |29129 |0 |6 |AC8C14|0 |2 |0 |
-ROW |50292 |909 |29128 |0 |7 |611F27|0 |2 |0 |
-ROW |50293 |909 |29127 |0 |8 |F230E0|0 |2 |0 |
-ROW |50294 |910 |29172 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50295 |910 |29171 |0 |1 |2774A4|0 |2 |0 |
-ROW |50296 |910 |29169 |0 |2 |F63100|0 |2 |0 |
-ROW |50297 |910 |29162 |0 |3 |A54F10|0 |2 |0 |
-ROW |50298 |910 |29168 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |50299 |910 |29167 |0 |5 |6C59DC|0 |2 |0 |
-ROW |50300 |910 |29166 |0 |6 |AC8C14|0 |2 |0 |
-ROW |50301 |910 |29165 |0 |7 |611F27|0 |2 |0 |
-ROW |50302 |910 |29164 |0 |8 |F230E0|0 |2 |0 |
-ROW |50303 |905 |29198 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50304 |906 |29199 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50305 |907 |29200 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50306 |917 |29104 |2 |0 |1A7C11|0 |2 |0 |
-ROW |50307 |917 |29105 |5 |1 |2774A4|0 |2 |0 |
-ROW |50308 |918 |29141 |2 |0 |1A7C11|0 |2 |0 |
-ROW |50309 |918 |29142 |5 |1 |2774A4|0 |2 |0 |
-ROW |50310 |919 |29178 |2 |0 |1A7C11|0 |2 |0 |
-ROW |50311 |919 |29179 |5 |1 |2774A4|0 |2 |0 |
-ROW |50312 |914 |31270 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50313 |915 |31271 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50314 |916 |31272 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50315 |923 |29118 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50316 |923 |29119 |0 |1 |2774A4|0 |2 |0 |
-ROW |50317 |923 |29117 |0 |2 |F63100|0 |2 |0 |
-ROW |50318 |924 |29155 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50319 |924 |29156 |0 |1 |2774A4|0 |2 |0 |
-ROW |50320 |924 |29154 |0 |2 |F63100|0 |2 |0 |
-ROW |50321 |925 |29192 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50322 |925 |29193 |0 |1 |2774A4|0 |2 |0 |
-ROW |50323 |925 |29191 |0 |2 |F63100|0 |2 |0 |
-ROW |50324 |920 |29107 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50325 |920 |29106 |0 |1 |2774A4|0 |2 |0 |
-ROW |50326 |921 |29144 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50327 |921 |29143 |0 |1 |2774A4|0 |2 |0 |
-ROW |50328 |922 |29181 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50329 |922 |29180 |0 |1 |2774A4|0 |2 |0 |
-ROW |50330 |902 |29096 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50331 |902 |29101 |0 |1 |2774A4|0 |2 |0 |
-ROW |50332 |902 |29100 |0 |2 |F63100|0 |2 |0 |
-ROW |50333 |902 |29087 |0 |3 |A54F10|1 |2 |0 |
-ROW |50334 |903 |29133 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50335 |903 |29138 |0 |1 |2774A4|0 |2 |0 |
-ROW |50336 |903 |29137 |0 |2 |F63100|0 |2 |0 |
-ROW |50337 |903 |29124 |0 |3 |A54F10|1 |2 |0 |
-ROW |50338 |904 |29170 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50339 |904 |29175 |0 |1 |2774A4|0 |2 |0 |
-ROW |50340 |904 |29174 |0 |2 |F63100|0 |2 |0 |
-ROW |50341 |904 |29161 |0 |3 |A54F10|1 |2 |0 |
-ROW |50342 |1223 |31307 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50343 |1223 |31308 |5 |1 |2774A4|0 |2 |0 |
-ROW |50344 |1224 |31310 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50345 |1224 |31311 |5 |1 |2774A4|0 |2 |0 |
-ROW |50346 |1225 |31314 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50347 |1225 |31317 |5 |1 |2774A4|0 |2 |0 |
-ROW |50348 |1226 |31320 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50349 |1226 |31323 |5 |1 |2774A4|0 |2 |0 |
-ROW |50350 |1227 |31313 |0 |0 |1A7C11|1 |2 |0 |
-ROW |50351 |1227 |31316 |5 |1 |2774A4|0 |2 |0 |
-ROW |50352 |1228 |31319 |0 |0 |1A7C11|1 |2 |0 |
-ROW |50353 |1228 |31322 |5 |1 |2774A4|0 |2 |0 |
-ROW |50354 |926 |29356 |0 |0 |969696|0 |9 |2 |
-ROW |50355 |926 |29355 |0 |1 |C80000|0 |9 |0 |
-ROW |50356 |927 |29370 |0 |0 |969696|0 |9 |2 |
-ROW |50357 |927 |29369 |0 |1 |C80000|0 |9 |0 |
-ROW |50358 |934 |29361 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50359 |934 |29362 |2 |1 |2774A4|0 |2 |0 |
-ROW |50360 |934 |29363 |0 |2 |F63100|1 |2 |0 |
-ROW |50361 |934 |29364 |0 |3 |A54F10|1 |2 |0 |
-ROW |50362 |934 |29365 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |50363 |934 |29366 |0 |5 |6C59DC|1 |2 |0 |
-ROW |50364 |935 |29375 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50365 |935 |29376 |2 |1 |2774A4|0 |2 |0 |
-ROW |50366 |935 |29377 |0 |2 |F63100|1 |2 |0 |
-ROW |50367 |935 |29378 |0 |3 |A54F10|1 |2 |0 |
-ROW |50368 |935 |29379 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |50369 |935 |29380 |0 |5 |6C59DC|1 |2 |0 |
-ROW |50370 |942 |29275 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50371 |942 |29288 |0 |1 |2774A4|0 |2 |0 |
-ROW |50372 |943 |29312 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50373 |943 |29325 |0 |1 |2774A4|0 |2 |0 |
-ROW |50374 |940 |29284 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50375 |940 |29283 |0 |1 |2774A4|0 |2 |0 |
-ROW |50376 |940 |29281 |0 |2 |F63100|0 |2 |0 |
-ROW |50377 |940 |29274 |0 |3 |A54F10|0 |2 |0 |
-ROW |50378 |940 |29280 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |50379 |940 |29279 |0 |5 |6C59DC|0 |2 |0 |
-ROW |50380 |940 |29278 |0 |6 |AC8C14|0 |2 |0 |
-ROW |50381 |940 |29277 |0 |7 |611F27|0 |2 |0 |
-ROW |50382 |940 |29276 |0 |8 |F230E0|0 |2 |0 |
-ROW |50383 |941 |29321 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50384 |941 |29320 |0 |1 |2774A4|0 |2 |0 |
-ROW |50385 |941 |29318 |0 |2 |F63100|0 |2 |0 |
-ROW |50386 |941 |29311 |0 |3 |A54F10|0 |2 |0 |
-ROW |50387 |941 |29317 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |50388 |941 |29316 |0 |5 |6C59DC|0 |2 |0 |
-ROW |50389 |941 |29315 |0 |6 |AC8C14|0 |2 |0 |
-ROW |50390 |941 |29314 |0 |7 |611F27|0 |2 |0 |
-ROW |50391 |941 |29313 |0 |8 |F230E0|0 |2 |0 |
-ROW |50392 |938 |29347 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50393 |939 |29348 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50394 |946 |29290 |2 |0 |1A7C11|0 |2 |0 |
-ROW |50395 |946 |29291 |5 |1 |2774A4|0 |2 |0 |
-ROW |50396 |947 |29327 |2 |0 |1A7C11|0 |2 |0 |
-ROW |50397 |947 |29328 |5 |1 |2774A4|0 |2 |0 |
-ROW |50398 |944 |31303 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50399 |945 |31304 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50400 |950 |29304 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50401 |950 |29305 |0 |1 |2774A4|0 |2 |0 |
-ROW |50402 |950 |29303 |0 |2 |F63100|0 |2 |0 |
-ROW |50403 |951 |29341 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50404 |951 |29342 |0 |1 |2774A4|0 |2 |0 |
-ROW |50405 |951 |29340 |0 |2 |F63100|0 |2 |0 |
-ROW |50406 |948 |29293 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50407 |948 |29292 |0 |1 |2774A4|0 |2 |0 |
-ROW |50408 |949 |29330 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50409 |949 |29329 |0 |1 |2774A4|0 |2 |0 |
-ROW |50410 |936 |29282 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50411 |936 |29287 |0 |1 |2774A4|0 |2 |0 |
-ROW |50412 |936 |29286 |0 |2 |F63100|0 |2 |0 |
-ROW |50413 |936 |29273 |0 |3 |A54F10|1 |2 |0 |
-ROW |50414 |937 |29319 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50415 |937 |29324 |0 |1 |2774A4|0 |2 |0 |
-ROW |50416 |937 |29323 |0 |2 |F63100|0 |2 |0 |
-ROW |50417 |937 |29310 |0 |3 |A54F10|1 |2 |0 |
-ROW |50418 |952 |29436 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50419 |952 |29437 |2 |1 |2774A4|0 |2 |0 |
-ROW |50420 |952 |29438 |0 |2 |F63100|1 |2 |0 |
-ROW |50421 |952 |29439 |0 |3 |A54F10|1 |2 |0 |
-ROW |50422 |952 |29441 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |50423 |952 |29440 |0 |5 |6C59DC|1 |2 |0 |
-ROW |50424 |955 |29434 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50425 |955 |29435 |5 |1 |2774A4|0 |2 |0 |
-ROW |50426 |954 |29448 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50427 |954 |29449 |5 |1 |2774A4|0 |2 |0 |
-ROW |50428 |956 |29452 |0 |0 |1A7C11|1 |2 |0 |
-ROW |50429 |956 |29453 |5 |1 |2774A4|0 |2 |0 |
-ROW |50430 |953 |29446 |0 |0 |969696|0 |9 |2 |
-ROW |50431 |953 |29432 |0 |1 |C80000|0 |9 |0 |
-ROW |50432 |960 |29405 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50433 |960 |29406 |0 |1 |2774A4|0 |2 |0 |
-ROW |50434 |959 |29426 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50435 |959 |29413 |0 |1 |2774A4|0 |2 |0 |
-ROW |50436 |959 |29411 |0 |2 |F63100|0 |2 |0 |
-ROW |50437 |959 |29410 |0 |3 |A54F10|0 |2 |0 |
-ROW |50438 |959 |29399 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |50439 |959 |29409 |0 |5 |6C59DC|0 |2 |0 |
-ROW |50440 |959 |29412 |0 |6 |AC8C14|0 |2 |0 |
-ROW |50441 |959 |29408 |0 |7 |611F27|0 |2 |0 |
-ROW |50442 |959 |29407 |0 |8 |F230E0|0 |2 |0 |
-ROW |50443 |958 |29427 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50444 |962 |29403 |2 |0 |1A7C11|0 |2 |0 |
-ROW |50445 |962 |29402 |5 |1 |2774A4|0 |2 |0 |
-ROW |50446 |961 |29396 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50447 |963 |29400 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50448 |963 |29401 |0 |1 |2774A4|0 |2 |0 |
-ROW |50449 |957 |29420 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50450 |957 |29419 |0 |1 |2774A4|0 |2 |0 |
-ROW |50451 |957 |29418 |0 |2 |F63100|0 |2 |0 |
-ROW |50452 |957 |29417 |0 |3 |A54F10|1 |2 |0 |
-ROW |50453 |866 |29014 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50454 |866 |29015 |5 |1 |2774A4|0 |2 |0 |
-ROW |50455 |867 |29031 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50456 |867 |29032 |5 |1 |2774A4|0 |2 |0 |
-ROW |50457 |868 |29018 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50458 |868 |29019 |0 |1 |2774A4|0 |2 |0 |
-ROW |50459 |868 |29022 |0 |2 |F63100|0 |2 |0 |
-ROW |50460 |868 |29023 |0 |3 |A54F10|0 |2 |0 |
-ROW |50461 |868 |29020 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |50462 |868 |29024 |0 |5 |6C59DC|0 |2 |0 |
-ROW |50463 |868 |29021 |0 |6 |AC8C14|0 |2 |0 |
-ROW |50464 |868 |29025 |0 |7 |611F27|0 |2 |0 |
-ROW |50465 |868 |29026 |0 |8 |F230E0|0 |2 |0 |
-ROW |50466 |869 |29035 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50467 |869 |29036 |0 |1 |2774A4|0 |2 |0 |
-ROW |50468 |869 |29039 |0 |2 |F63100|0 |2 |0 |
-ROW |50469 |869 |29040 |0 |3 |A54F10|0 |2 |0 |
-ROW |50470 |869 |29037 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |50471 |869 |29041 |0 |5 |6C59DC|0 |2 |0 |
-ROW |50472 |869 |29038 |0 |6 |AC8C14|0 |2 |0 |
-ROW |50473 |869 |29042 |0 |7 |611F27|0 |2 |0 |
-ROW |50474 |869 |29043 |0 |8 |F230E0|0 |2 |0 |
-ROW |50475 |870 |29048 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50476 |871 |29049 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50477 |872 |29028 |0 |0 |969696|0 |9 |2 |
-ROW |50478 |872 |29027 |0 |1 |C80000|0 |9 |0 |
-ROW |50479 |873 |29045 |0 |0 |969696|0 |9 |2 |
-ROW |50480 |873 |29044 |0 |1 |C80000|0 |9 |0 |
-ROW |50481 |882 |28992 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50482 |882 |28991 |0 |1 |2774A4|0 |2 |0 |
-ROW |50483 |883 |29007 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50484 |883 |29006 |0 |1 |2774A4|0 |2 |0 |
-ROW |50485 |876 |28982 |2 |0 |1A7C11|0 |2 |0 |
-ROW |50486 |876 |28983 |5 |1 |2774A4|0 |2 |0 |
-ROW |50487 |877 |28997 |2 |0 |1A7C11|0 |2 |0 |
-ROW |50488 |877 |28998 |5 |1 |2774A4|0 |2 |0 |
-ROW |50489 |874 |28978 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50490 |875 |28993 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50491 |878 |28985 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50492 |878 |28984 |0 |1 |2774A4|0 |2 |0 |
-ROW |50493 |879 |29000 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50494 |879 |28999 |0 |1 |2774A4|0 |2 |0 |
-ROW |50495 |880 |28987 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50496 |880 |28988 |0 |1 |2774A4|0 |2 |0 |
-ROW |50497 |880 |28989 |0 |2 |F63100|0 |2 |0 |
-ROW |50498 |880 |28990 |0 |3 |A54F10|1 |2 |0 |
-ROW |50499 |881 |29002 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50500 |881 |29003 |0 |1 |2774A4|0 |2 |0 |
-ROW |50501 |881 |29004 |0 |2 |F63100|0 |2 |0 |
-ROW |50502 |881 |29005 |0 |3 |A54F10|1 |2 |0 |
-ROW |50503 |964 |29513 |0 |0 |969696|0 |9 |2 |
-ROW |50504 |964 |29512 |0 |1 |C80000|0 |9 |0 |
-ROW |50505 |965 |29522 |0 |0 |969696|0 |9 |2 |
-ROW |50506 |965 |29521 |0 |1 |C80000|0 |9 |0 |
-ROW |50507 |1246 |31461 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50508 |1246 |31464 |2 |1 |2774A4|0 |2 |0 |
-ROW |50509 |1246 |31463 |0 |2 |F63100|1 |2 |0 |
-ROW |50510 |1246 |31460 |0 |3 |A54F10|1 |2 |0 |
-ROW |50511 |1246 |31462 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |50512 |1246 |31459 |0 |5 |6C59DC|1 |2 |0 |
-ROW |50513 |1247 |31467 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50514 |1247 |31470 |2 |1 |2774A4|0 |2 |0 |
-ROW |50515 |1247 |31469 |0 |2 |F63100|1 |2 |0 |
-ROW |50516 |1247 |31466 |0 |3 |A54F10|1 |2 |0 |
-ROW |50517 |1247 |31468 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |50518 |1247 |31465 |0 |5 |6C59DC|1 |2 |0 |
-ROW |50519 |1366 |32445 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50520 |1366 |32448 |0 |1 |2774A4|0 |2 |0 |
-ROW |50521 |1367 |32449 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50522 |1367 |32452 |0 |1 |2774A4|0 |2 |0 |
-ROW |50523 |1368 |32446 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50524 |1368 |32447 |5 |1 |2774A4|0 |2 |0 |
-ROW |50525 |1369 |32450 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50526 |1369 |32451 |5 |1 |2774A4|0 |2 |0 |
-ROW |50527 |1229 |31337 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50528 |1229 |31338 |5 |1 |2774A4|0 |2 |0 |
-ROW |50529 |1230 |31341 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50530 |1230 |31342 |5 |1 |2774A4|0 |2 |0 |
-ROW |50531 |1231 |31336 |0 |0 |1A7C11|1 |2 |0 |
-ROW |50532 |1231 |31335 |5 |1 |2774A4|0 |2 |0 |
-ROW |50533 |1232 |31340 |0 |0 |1A7C11|1 |2 |0 |
-ROW |50534 |1232 |31339 |5 |1 |2774A4|0 |2 |0 |
-ROW |50535 |974 |29456 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50536 |974 |29455 |0 |1 |2774A4|0 |2 |0 |
-ROW |50537 |975 |29482 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50538 |975 |29481 |0 |1 |2774A4|0 |2 |0 |
-ROW |50539 |976 |29458 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50540 |976 |29457 |0 |1 |2774A4|0 |2 |0 |
-ROW |50541 |977 |29484 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50542 |977 |29483 |0 |1 |2774A4|0 |2 |0 |
-ROW |50543 |972 |29454 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50544 |973 |29480 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50545 |978 |29462 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50546 |979 |29488 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50547 |980 |31327 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50548 |980 |29466 |0 |1 |2774A4|0 |2 |0 |
-ROW |50549 |981 |31330 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50550 |981 |29492 |0 |1 |2774A4|0 |2 |0 |
-ROW |50551 |982 |29620 |0 |0 |969696|0 |9 |2 |
-ROW |50552 |982 |29619 |0 |1 |C80000|0 |9 |0 |
-ROW |50553 |983 |29629 |0 |0 |969696|0 |9 |2 |
-ROW |50554 |983 |29628 |0 |1 |C80000|0 |9 |0 |
-ROW |50555 |1248 |31483 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50556 |1248 |31486 |2 |1 |2774A4|0 |2 |0 |
-ROW |50557 |1248 |31485 |0 |2 |F63100|1 |2 |0 |
-ROW |50558 |1248 |31482 |0 |3 |A54F10|1 |2 |0 |
-ROW |50559 |1248 |31484 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |50560 |1248 |31481 |0 |5 |6C59DC|1 |2 |0 |
-ROW |50561 |1249 |31489 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50562 |1249 |31492 |2 |1 |2774A4|0 |2 |0 |
-ROW |50563 |1249 |31491 |0 |2 |F63100|1 |2 |0 |
-ROW |50564 |1249 |31488 |0 |3 |A54F10|1 |2 |0 |
-ROW |50565 |1249 |31490 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |50566 |1249 |31487 |0 |5 |6C59DC|1 |2 |0 |
-ROW |50567 |1370 |32453 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50568 |1370 |32456 |0 |1 |2774A4|0 |2 |0 |
-ROW |50569 |1371 |32457 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50570 |1371 |32460 |0 |1 |2774A4|0 |2 |0 |
-ROW |50571 |1372 |32454 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50572 |1372 |32455 |5 |1 |2774A4|0 |2 |0 |
-ROW |50573 |1373 |32458 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50574 |1373 |32459 |5 |1 |2774A4|0 |2 |0 |
-ROW |50575 |1233 |31355 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50576 |1233 |31356 |5 |1 |2774A4|0 |2 |0 |
-ROW |50577 |1234 |31359 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50578 |1234 |31360 |5 |1 |2774A4|0 |2 |0 |
-ROW |50579 |1235 |31354 |0 |0 |1A7C11|1 |2 |0 |
-ROW |50580 |1235 |31353 |5 |1 |2774A4|0 |2 |0 |
-ROW |50581 |1236 |31358 |0 |0 |1A7C11|1 |2 |0 |
-ROW |50582 |1236 |31357 |5 |1 |2774A4|0 |2 |0 |
-ROW |50583 |992 |29563 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50584 |992 |29562 |0 |1 |2774A4|0 |2 |0 |
-ROW |50585 |993 |29589 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50586 |993 |29588 |0 |1 |2774A4|0 |2 |0 |
-ROW |50587 |994 |29565 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50588 |994 |29564 |0 |1 |2774A4|0 |2 |0 |
-ROW |50589 |995 |29591 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50590 |995 |29590 |0 |1 |2774A4|0 |2 |0 |
-ROW |50591 |990 |29561 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50592 |991 |29587 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50593 |996 |29569 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50594 |997 |29595 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50595 |998 |31345 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50596 |998 |29573 |0 |1 |2774A4|0 |2 |0 |
-ROW |50597 |999 |31348 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50598 |999 |29599 |0 |1 |2774A4|0 |2 |0 |
-ROW |50599 |1489 |33568 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50600 |1490 |33581 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50601 |1490 |33569 |0 |1 |2774A4|0 |2 |0 |
-ROW |50602 |1491 |33583 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50603 |1491 |33579 |0 |1 |2774A4|0 |2 |0 |
-ROW |50604 |1492 |33619 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50605 |1493 |33632 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50606 |1493 |33620 |0 |1 |2774A4|0 |2 |0 |
-ROW |50607 |1494 |33634 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50608 |1494 |33630 |0 |1 |2774A4|0 |2 |0 |
-ROW |50609 |1495 |33670 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50610 |1496 |33683 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50611 |1496 |33671 |0 |1 |2774A4|0 |2 |0 |
-ROW |50612 |1497 |33685 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50613 |1497 |33681 |0 |1 |2774A4|0 |2 |0 |
-ROW |50614 |1498 |33721 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50615 |1499 |33734 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50616 |1499 |33722 |0 |1 |2774A4|0 |2 |0 |
-ROW |50617 |1500 |33736 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50618 |1500 |33732 |0 |1 |2774A4|0 |2 |0 |
-ROW |50619 |1501 |33772 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50620 |1502 |33785 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50621 |1502 |33773 |0 |1 |2774A4|0 |2 |0 |
-ROW |50622 |1503 |33787 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50623 |1503 |33783 |0 |1 |2774A4|0 |2 |0 |
-ROW |50624 |1504 |33823 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50625 |1505 |33836 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50626 |1505 |33824 |0 |1 |2774A4|0 |2 |0 |
-ROW |50627 |1506 |33838 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50628 |1506 |33834 |0 |1 |2774A4|0 |2 |0 |
-ROW |50629 |1507 |33874 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50630 |1508 |33887 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50631 |1508 |33875 |0 |1 |2774A4|0 |2 |0 |
-ROW |50632 |1509 |33889 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50633 |1509 |33885 |0 |1 |2774A4|0 |2 |0 |
-ROW |50634 |1510 |33925 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50635 |1481 |33445 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50636 |1481 |33433 |0 |1 |2774A4|0 |2 |0 |
-ROW |50637 |1482 |33447 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50638 |1482 |33443 |0 |1 |2774A4|0 |2 |0 |
-ROW |50639 |1511 |33930 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50640 |1512 |33943 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50641 |1512 |33931 |0 |1 |2774A4|0 |2 |0 |
-ROW |50642 |1513 |33945 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50643 |1513 |33941 |0 |1 |2774A4|0 |2 |0 |
-ROW |50644 |1514 |33981 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50645 |1515 |33994 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50646 |1515 |33982 |0 |1 |2774A4|0 |2 |0 |
-ROW |50647 |1516 |33996 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50648 |1516 |33992 |0 |1 |2774A4|0 |2 |0 |
-ROW |50649 |1517 |34032 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50650 |1518 |34045 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50651 |1518 |34033 |0 |1 |2774A4|0 |2 |0 |
-ROW |50652 |1519 |34047 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50653 |1519 |34043 |0 |1 |2774A4|0 |2 |0 |
-ROW |50654 |1403 |32790 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50655 |1404 |32809 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50656 |1404 |32807 |0 |1 |2774A4|0 |2 |0 |
-ROW |50657 |1404 |32811 |0 |2 |F63100|0 |2 |0 |
-ROW |50658 |1405 |32804 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50659 |1405 |32805 |0 |1 |2774A4|0 |2 |0 |
-ROW |50660 |1405 |32806 |0 |2 |F63100|0 |2 |0 |
-ROW |50661 |1406 |32810 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50662 |1406 |32808 |0 |1 |2774A4|0 |2 |0 |
-ROW |50663 |1406 |32812 |0 |2 |F63100|0 |2 |0 |
-ROW |50664 |1407 |32815 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50665 |1408 |32819 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50666 |1408 |32817 |0 |1 |2774A4|0 |2 |0 |
-ROW |50667 |1408 |32821 |0 |2 |F63100|0 |2 |0 |
-ROW |50668 |1409 |32820 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50669 |1409 |32818 |0 |1 |2774A4|0 |2 |0 |
-ROW |50670 |1409 |32822 |0 |2 |F63100|0 |2 |0 |
-ROW |50671 |1410 |32828 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50672 |1410 |32827 |0 |1 |2774A4|0 |2 |0 |
-ROW |50673 |1410 |32823 |0 |2 |F63100|0 |2 |0 |
-ROW |50674 |1411 |32777 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50675 |1411 |32778 |0 |1 |2774A4|0 |2 |0 |
-ROW |50676 |1483 |33525 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50677 |1483 |33524 |0 |1 |2774A4|0 |2 |0 |
-ROW |50678 |1483 |33523 |0 |2 |F63100|0 |2 |0 |
-ROW |50679 |1483 |33522 |0 |3 |A54F10|0 |2 |0 |
-ROW |50680 |1484 |33564 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50681 |1484 |33554 |0 |1 |2774A4|0 |2 |0 |
-ROW |50682 |1485 |33500 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50683 |1485 |33507 |0 |1 |2774A4|0 |2 |0 |
-ROW |50684 |1485 |33509 |0 |2 |F63100|0 |2 |0 |
-ROW |50685 |1485 |33508 |0 |3 |A54F10|0 |2 |0 |
-ROW |50686 |1486 |33480 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50687 |1486 |33491 |0 |1 |2774A4|0 |2 |0 |
-ROW |50688 |1486 |33488 |0 |2 |F63100|0 |2 |0 |
-ROW |50689 |1486 |33489 |0 |3 |A54F10|0 |2 |0 |
-ROW |50690 |1487 |33506 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50691 |1487 |33505 |0 |1 |2774A4|0 |2 |0 |
-ROW |50692 |1487 |33512 |0 |2 |F63100|0 |2 |0 |
-ROW |50693 |1487 |33504 |0 |3 |A54F10|0 |2 |0 |
-ROW |50694 |1387 |32632 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50695 |1388 |32635 |1 |0 |1A7C11|0 |2 |0 |
-ROW |50696 |1388 |32635 |1 |1 |2774A4|0 |2 |0 |
-ROW |50697 |1389 |32643 |5 |0 |1A7C11|0 |2 |0 |
-ROW |50698 |1389 |32646 |2 |1 |2774A4|0 |2 |0 |
-ROW |50699 |1389 |32645 |0 |2 |F63100|1 |2 |0 |
-ROW |50700 |1389 |32642 |0 |3 |A54F10|1 |2 |0 |
-ROW |50701 |1389 |32644 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |50702 |1389 |32641 |0 |5 |6C59DC|1 |2 |0 |
-ROW |50703 |1142 |30689 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50704 |1300 |31981 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50705 |1300 |31979 |0 |1 |2774A4|0 |2 |0 |
-ROW |50706 |1300 |31987 |0 |2 |F63100|1 |2 |0 |
-ROW |50707 |1301 |32462 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50708 |1301 |31986 |0 |1 |2774A4|0 |2 |0 |
-ROW |50709 |1301 |31984 |0 |2 |F63100|0 |2 |0 |
-ROW |50710 |1302 |32461 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50711 |1302 |31982 |0 |1 |2774A4|0 |2 |0 |
-ROW |50712 |1303 |31980 |0 |0 |1A7C11|0 |2 |0 |
-ROW |50713 |1303 |31989 |0 |1 |2774A4|0 |2 |0 |
-ROW |50714 |1303 |31977 |0 |2 |F63100|0 |2 |0 |
-ROW |50715 |1303 |31978 |0 |3 |A54F10|0 |2 |0 |
+ROW |50716 |1374 |32471 |5 |0 |1A7C11|0 |2 |0 |
+ROW |50717 |1375 |32469 |5 |0 |1A7C11|0 |2 |0 |
+ROW |50718 |1375 |32468 |5 |1 |2774A4|0 |2 |0 |
+ROW |50719 |1376 |32472 |5 |0 |1A7C11|0 |2 |0 |
+ROW |50720 |1376 |32467 |5 |1 |2774A4|0 |2 |0 |
+ROW |50721 |1377 |32483 |5 |0 |1A7C11|0 |2 |0 |
+ROW |50722 |1377 |32482 |5 |1 |2774A4|0 |2 |0 |
+ROW |50723 |1378 |32484 |5 |0 |1A7C11|0 |2 |0 |
+ROW |50724 |1378 |32481 |5 |1 |2774A4|0 |2 |0 |
+ROW |50725 |1379 |32476 |5 |0 |1A7C11|0 |2 |0 |
+ROW |50726 |1379 |32478 |5 |1 |2774A4|0 |2 |0 |
+ROW |50727 |1379 |32480 |5 |2 |F63100|0 |2 |0 |
+ROW |50728 |1172 |30918 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50729 |1172 |30919 |0 |1 |2774A4|0 |2 |0 |
+ROW |50730 |1172 |30920 |0 |2 |F63100|0 |2 |0 |
+ROW |50731 |1172 |30921 |2 |3 |A54F10|0 |2 |0 |
+ROW |50732 |1173 |30922 |5 |0 |1A7C11|0 |2 |0 |
+ROW |50733 |835 |28744 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50734 |835 |28745 |0 |1 |2774A4|0 |2 |0 |
+ROW |50735 |1174 |30913 |5 |0 |1A7C11|0 |2 |0 |
+ROW |50736 |1175 |30906 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50737 |1175 |30908 |0 |1 |2774A4|0 |2 |0 |
+ROW |50738 |1175 |30915 |0 |2 |F63100|0 |2 |0 |
+ROW |50739 |1175 |30897 |0 |3 |A54F10|0 |2 |0 |
+ROW |50740 |1175 |30901 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |50741 |1175 |30899 |0 |5 |6C59DC|0 |2 |0 |
+ROW |50742 |1175 |30907 |0 |6 |AC8C14|0 |2 |0 |
+ROW |50743 |1175 |30905 |0 |7 |611F27|0 |2 |0 |
+ROW |50744 |1175 |30904 |0 |8 |F230E0|0 |2 |0 |
+ROW |50745 |1175 |30900 |0 |9 |FFAD40|0 |2 |0 |
+ROW |50746 |1175 |30898 |0 |10 |40CDFF|0 |2 |0 |
+ROW |50747 |1176 |30910 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50748 |1176 |30909 |0 |1 |2774A4|0 |2 |0 |
+ROW |50749 |836 |28798 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50750 |836 |28799 |0 |1 |2774A4|0 |2 |0 |
+ROW |50751 |836 |28800 |0 |2 |F63100|0 |2 |0 |
+ROW |50752 |836 |28801 |2 |3 |A54F10|0 |2 |0 |
+ROW |50753 |837 |28803 |5 |0 |1A7C11|0 |2 |0 |
+ROW |50754 |838 |28793 |5 |0 |1A7C11|0 |2 |0 |
+ROW |50755 |840 |28787 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50756 |840 |28784 |0 |1 |2774A4|0 |2 |0 |
+ROW |50757 |840 |28782 |0 |2 |F63100|0 |2 |0 |
+ROW |50758 |840 |28781 |0 |3 |A54F10|0 |2 |0 |
+ROW |50759 |840 |28780 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |50760 |840 |28778 |0 |5 |6C59DC|0 |2 |0 |
+ROW |50761 |840 |28786 |0 |6 |AC8C14|0 |2 |0 |
+ROW |50762 |840 |28785 |0 |7 |611F27|0 |2 |0 |
+ROW |50763 |840 |28783 |0 |8 |F230E0|0 |2 |0 |
+ROW |50764 |840 |28779 |0 |9 |FFAD40|0 |2 |0 |
+ROW |50765 |840 |28796 |0 |10 |40CDFF|0 |2 |0 |
+ROW |50766 |839 |28789 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50767 |839 |28788 |0 |1 |2774A4|0 |2 |0 |
+ROW |50768 |1278 |31855 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50769 |1278 |31856 |0 |1 |2774A4|0 |2 |0 |
+ROW |50770 |1304 |32007 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50771 |1304 |32010 |0 |1 |2774A4|0 |2 |0 |
+ROW |50772 |1305 |32008 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50773 |1305 |32011 |0 |1 |2774A4|0 |2 |0 |
+ROW |50774 |1306 |32003 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50775 |1306 |32004 |0 |1 |2774A4|0 |2 |0 |
+ROW |50776 |1306 |32009 |0 |2 |F63100|0 |2 |0 |
+ROW |50777 |1282 |31818 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50778 |1282 |31825 |0 |1 |2774A4|0 |2 |0 |
+ROW |50779 |1283 |31850 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50780 |1283 |31819 |0 |1 |2774A4|0 |2 |0 |
+ROW |50781 |1284 |31824 |1 |0 |1A7C11|0 |2 |0 |
+ROW |50782 |1284 |31821 |1 |1 |2774A4|0 |2 |0 |
+ROW |50783 |1285 |31839 |2 |0 |1A7C11|0 |2 |0 |
+ROW |50784 |1285 |31841 |0 |1 |2774A4|0 |2 |0 |
+ROW |50785 |1285 |31842 |0 |2 |F63100|0 |2 |0 |
+ROW |50786 |1285 |31837 |2 |3 |A54F10|0 |2 |0 |
+ROW |50787 |1285 |31838 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |50788 |1285 |31829 |0 |5 |6C59DC|0 |2 |0 |
+ROW |50789 |1286 |31833 |2 |0 |1A7C11|0 |2 |0 |
+ROW |50790 |1286 |31834 |0 |1 |2774A4|0 |2 |0 |
+ROW |50791 |1286 |31835 |0 |2 |F63100|0 |2 |0 |
+ROW |50792 |1121 |30606 |5 |0 |1A7C11|0 |2 |0 |
+ROW |50793 |1121 |30590 |5 |1 |2774A4|0 |2 |0 |
+ROW |50794 |1121 |30582 |5 |2 |F63100|0 |2 |0 |
+ROW |50795 |1122 |30580 |5 |0 |1A7C11|0 |2 |0 |
+ROW |50796 |1122 |30578 |5 |1 |2774A4|0 |2 |0 |
+ROW |50797 |1123 |30586 |2 |0 |1A7C11|0 |2 |0 |
+ROW |50798 |1123 |30608 |2 |1 |2774A4|0 |2 |0 |
+ROW |50799 |1123 |30585 |2 |2 |F63100|0 |2 |0 |
+ROW |50800 |1123 |30589 |2 |3 |A54F10|0 |2 |0 |
+ROW |50801 |1123 |30584 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |50802 |1123 |30588 |2 |5 |6C59DC|0 |2 |0 |
+ROW |50803 |1124 |30583 |2 |0 |1A7C11|0 |2 |0 |
+ROW |50804 |1124 |30587 |2 |1 |2774A4|0 |2 |0 |
+ROW |50805 |1125 |30555 |5 |0 |1A7C11|0 |2 |0 |
+ROW |50806 |1125 |30554 |2 |1 |2774A4|0 |2 |0 |
+ROW |50807 |1125 |30556 |2 |2 |F63100|0 |2 |0 |
+ROW |50808 |1125 |30557 |2 |3 |A54F10|0 |2 |0 |
+ROW |50809 |1126 |30565 |5 |0 |1A7C11|0 |2 |0 |
+ROW |50810 |1127 |30567 |2 |0 |1A7C11|0 |2 |0 |
+ROW |50811 |1127 |30568 |2 |1 |2774A4|0 |2 |0 |
+ROW |50812 |1128 |30536 |2 |0 |1A7C11|0 |2 |0 |
+ROW |50813 |1129 |30566 |2 |0 |1A7C11|0 |2 |0 |
+ROW |50814 |1129 |30549 |2 |1 |2774A4|0 |2 |0 |
+ROW |50815 |1129 |30553 |2 |2 |F63100|0 |2 |0 |
+ROW |50816 |1129 |30570 |2 |3 |A54F10|0 |2 |0 |
+ROW |50817 |1143 |30714 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50818 |1143 |30716 |0 |1 |2774A4|0 |2 |0 |
+ROW |50819 |1143 |30717 |0 |2 |F63100|0 |2 |0 |
+ROW |50820 |1143 |30715 |0 |3 |A54F10|0 |2 |0 |
+ROW |50821 |1144 |30753 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50822 |1144 |30738 |0 |1 |2774A4|0 |2 |0 |
+ROW |50823 |1145 |30718 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50824 |1145 |30737 |0 |1 |2774A4|0 |2 |0 |
+ROW |50825 |1145 |30727 |0 |2 |F63100|0 |2 |0 |
+ROW |50826 |1145 |30729 |0 |3 |A54F10|0 |2 |0 |
+ROW |50827 |1146 |30730 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50828 |1146 |30732 |0 |1 |2774A4|0 |2 |0 |
+ROW |50829 |1146 |30731 |0 |2 |F63100|0 |2 |0 |
+ROW |50830 |1146 |30733 |0 |3 |A54F10|0 |2 |0 |
+ROW |50831 |1147 |30734 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50832 |1147 |30736 |0 |1 |2774A4|0 |2 |0 |
+ROW |50833 |1147 |30735 |0 |2 |F63100|0 |2 |0 |
+ROW |50834 |1147 |30758 |0 |3 |A54F10|0 |2 |0 |
+ROW |50835 |1148 |30711 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50836 |1148 |30706 |0 |1 |2774A4|0 |2 |0 |
+ROW |50837 |1148 |30710 |0 |2 |F63100|0 |2 |0 |
+ROW |50838 |1148 |30712 |0 |3 |A54F10|0 |2 |0 |
+ROW |50839 |1148 |30702 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |50840 |1148 |30707 |0 |5 |6C59DC|0 |2 |0 |
+ROW |50841 |1148 |30704 |0 |6 |AC8C14|0 |2 |0 |
+ROW |50842 |1177 |30927 |5 |0 |1A7C11|0 |2 |0 |
+ROW |50843 |1177 |30944 |2 |1 |2774A4|0 |2 |0 |
+ROW |50844 |1178 |30935 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50845 |1178 |30942 |0 |1 |2774A4|0 |2 |0 |
+ROW |50846 |1179 |30949 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50847 |1179 |30950 |0 |1 |2774A4|0 |2 |0 |
+ROW |50848 |1179 |30951 |0 |2 |F63100|0 |2 |0 |
+ROW |50849 |1180 |30952 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50850 |1180 |30954 |0 |1 |2774A4|0 |2 |0 |
+ROW |50851 |1180 |30955 |0 |2 |F63100|0 |2 |0 |
+ROW |50852 |1181 |30936 |5 |0 |1A7C11|0 |2 |0 |
+ROW |50853 |1181 |30940 |5 |1 |2774A4|0 |2 |0 |
+ROW |50854 |1182 |30930 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50855 |1182 |30929 |0 |1 |2774A4|0 |2 |0 |
+ROW |50856 |1182 |30928 |0 |2 |F63100|0 |2 |0 |
+ROW |50857 |1182 |30931 |2 |3 |A54F10|1 |2 |0 |
+ROW |50858 |1183 |30934 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50859 |1183 |30941 |0 |1 |2774A4|0 |2 |0 |
+ROW |50860 |1380 |32498 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50861 |1380 |32499 |0 |1 |2774A4|0 |2 |0 |
+ROW |50862 |1381 |32505 |0 |0 |1A7C11|1 |2 |0 |
+ROW |50863 |1381 |32508 |0 |1 |2774A4|1 |2 |0 |
+ROW |50864 |1381 |32506 |0 |2 |F63100|0 |2 |0 |
+ROW |50865 |1381 |32507 |0 |3 |A54F10|0 |2 |0 |
+ROW |50866 |1381 |32509 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |50867 |1381 |32510 |0 |5 |6C59DC|0 |2 |0 |
+ROW |50868 |1382 |32488 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50869 |1382 |32491 |0 |1 |2774A4|0 |2 |0 |
+ROW |50870 |1382 |32493 |0 |2 |F63100|0 |2 |0 |
+ROW |50871 |1382 |32494 |0 |3 |A54F10|0 |2 |0 |
+ROW |50872 |1383 |32528 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50873 |1383 |32529 |0 |1 |2774A4|0 |2 |0 |
+ROW |50874 |1384 |32535 |0 |0 |1A7C11|1 |2 |0 |
+ROW |50875 |1384 |32538 |0 |1 |2774A4|1 |2 |0 |
+ROW |50876 |1384 |32536 |0 |2 |F63100|0 |2 |0 |
+ROW |50877 |1384 |32537 |0 |3 |A54F10|0 |2 |0 |
+ROW |50878 |1384 |32539 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |50879 |1384 |32540 |0 |5 |6C59DC|0 |2 |0 |
+ROW |50880 |1385 |32518 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50881 |1385 |32521 |0 |1 |2774A4|0 |2 |0 |
+ROW |50882 |1385 |32523 |0 |2 |F63100|0 |2 |0 |
+ROW |50883 |1385 |32524 |0 |3 |A54F10|0 |2 |0 |
+ROW |50884 |1250 |31527 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50885 |1250 |31529 |0 |1 |2774A4|0 |2 |0 |
+ROW |50886 |1250 |31499 |0 |2 |F63100|0 |2 |0 |
+ROW |50887 |1251 |31532 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50888 |1251 |31534 |0 |1 |2774A4|0 |2 |0 |
+ROW |50889 |1251 |31538 |0 |2 |F63100|0 |2 |0 |
+ROW |50890 |1251 |31536 |0 |3 |A54F10|0 |2 |0 |
+ROW |50891 |1251 |31528 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |50892 |1251 |31542 |0 |5 |6C59DC|0 |2 |0 |
+ROW |50893 |1252 |31552 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50894 |1252 |31551 |0 |1 |2774A4|0 |2 |0 |
+ROW |50895 |1252 |31541 |0 |2 |F63100|0 |2 |0 |
+ROW |50896 |1253 |31513 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50897 |1253 |31526 |0 |1 |2774A4|0 |2 |0 |
+ROW |50898 |1253 |31525 |0 |2 |F63100|0 |2 |0 |
+ROW |50899 |1254 |31502 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50900 |1254 |31501 |0 |1 |2774A4|0 |2 |0 |
+ROW |50901 |1254 |31503 |0 |2 |F63100|0 |2 |0 |
+ROW |50902 |1255 |31505 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50903 |1255 |31504 |0 |1 |2774A4|0 |2 |0 |
+ROW |50904 |1255 |31506 |0 |2 |F63100|0 |2 |0 |
+ROW |50905 |1256 |31508 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50906 |1256 |31507 |0 |1 |2774A4|0 |2 |0 |
+ROW |50907 |1256 |31509 |0 |2 |F63100|0 |2 |0 |
+ROW |50908 |1257 |31511 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50909 |1257 |31510 |0 |1 |2774A4|0 |2 |0 |
+ROW |50910 |1257 |31500 |0 |2 |F63100|0 |2 |0 |
+ROW |50911 |1258 |31514 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50912 |1258 |31512 |0 |1 |2774A4|0 |2 |0 |
+ROW |50913 |1258 |31515 |0 |2 |F63100|0 |2 |0 |
+ROW |50914 |1259 |31516 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50915 |1259 |31517 |0 |1 |2774A4|0 |2 |0 |
+ROW |50916 |1260 |31523 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50917 |1260 |31522 |0 |1 |2774A4|0 |2 |0 |
+ROW |50918 |1260 |31524 |0 |2 |F63100|0 |2 |0 |
+ROW |50919 |1307 |32051 |1 |0 |1A7C11|0 |2 |0 |
+ROW |50920 |1307 |32057 |1 |1 |2774A4|0 |2 |0 |
+ROW |50921 |1149 |30770 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50922 |1149 |30771 |0 |1 |2774A4|0 |2 |0 |
+ROW |50923 |1075 |30204 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50924 |1075 |30205 |0 |1 |2774A4|0 |2 |0 |
+ROW |50925 |1150 |30775 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50926 |1150 |30774 |0 |1 |2774A4|0 |2 |0 |
+ROW |50927 |1151 |30772 |5 |0 |1A7C11|0 |2 |0 |
+ROW |50928 |1151 |30773 |5 |1 |2774A4|0 |2 |0 |
+ROW |50929 |1152 |30777 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50930 |1152 |30776 |0 |1 |2774A4|0 |2 |0 |
+ROW |50931 |1076 |30209 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50932 |1076 |30208 |0 |1 |2774A4|0 |2 |0 |
+ROW |50933 |1077 |30206 |5 |0 |1A7C11|0 |2 |0 |
+ROW |50934 |1077 |30207 |5 |1 |2774A4|0 |2 |0 |
+ROW |50935 |1078 |30216 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50936 |1078 |30215 |0 |1 |2774A4|0 |2 |0 |
+ROW |50937 |1079 |30210 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50938 |1079 |30211 |0 |1 |2774A4|0 |2 |0 |
+ROW |50939 |1079 |30212 |0 |2 |F63100|0 |2 |0 |
+ROW |50940 |1079 |30213 |0 |3 |A54F10|0 |2 |0 |
+ROW |50941 |1079 |30214 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |50942 |1153 |30785 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50943 |1153 |30784 |0 |1 |2774A4|0 |2 |0 |
+ROW |50944 |1080 |30226 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50945 |1080 |30225 |0 |1 |2774A4|0 |2 |0 |
+ROW |50946 |1154 |30802 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50947 |1154 |30803 |0 |1 |2774A4|0 |2 |0 |
+ROW |50948 |1081 |30247 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50949 |1081 |30248 |0 |1 |2774A4|0 |2 |0 |
+ROW |50950 |1155 |30807 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50951 |1155 |30806 |0 |1 |2774A4|0 |2 |0 |
+ROW |50952 |1156 |30804 |5 |0 |1A7C11|0 |2 |0 |
+ROW |50953 |1156 |30805 |5 |1 |2774A4|0 |2 |0 |
+ROW |50954 |1157 |30809 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50955 |1157 |30808 |0 |1 |2774A4|0 |2 |0 |
+ROW |50956 |1082 |30252 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50957 |1082 |30251 |0 |1 |2774A4|0 |2 |0 |
+ROW |50958 |1083 |30249 |5 |0 |1A7C11|0 |2 |0 |
+ROW |50959 |1083 |30250 |5 |1 |2774A4|0 |2 |0 |
+ROW |50960 |1084 |30259 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50961 |1084 |30258 |0 |1 |2774A4|0 |2 |0 |
+ROW |50962 |1085 |30253 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50963 |1085 |30254 |0 |1 |2774A4|0 |2 |0 |
+ROW |50964 |1085 |30255 |0 |2 |F63100|0 |2 |0 |
+ROW |50965 |1085 |30256 |0 |3 |A54F10|0 |2 |0 |
+ROW |50966 |1085 |30257 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |50967 |1158 |30817 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50968 |1158 |30816 |0 |1 |2774A4|0 |2 |0 |
+ROW |50969 |1086 |30269 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50970 |1086 |30268 |0 |1 |2774A4|0 |2 |0 |
+ROW |50971 |1184 |30982 |5 |0 |1A7C11|0 |2 |0 |
+ROW |50972 |1184 |30980 |5 |1 |2774A4|0 |2 |0 |
+ROW |50973 |1185 |30983 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50974 |1185 |30981 |0 |1 |2774A4|0 |2 |0 |
+ROW |50975 |1186 |30976 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50976 |1186 |30985 |0 |1 |2774A4|0 |2 |0 |
+ROW |50977 |1186 |30997 |0 |2 |F63100|0 |2 |0 |
+ROW |50978 |1186 |30970 |0 |3 |A54F10|0 |2 |0 |
+ROW |50979 |1186 |30973 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |50980 |1186 |30995 |0 |5 |6C59DC|0 |2 |0 |
+ROW |50981 |1186 |30998 |0 |6 |AC8C14|0 |2 |0 |
+ROW |50982 |1186 |30978 |0 |7 |611F27|0 |2 |0 |
+ROW |50983 |1187 |31024 |5 |0 |1A7C11|0 |2 |0 |
+ROW |50984 |1187 |31022 |5 |1 |2774A4|0 |2 |0 |
+ROW |50985 |1188 |31025 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50986 |1188 |31023 |0 |1 |2774A4|0 |2 |0 |
+ROW |50987 |1189 |31018 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50988 |1189 |31027 |0 |1 |2774A4|0 |2 |0 |
+ROW |50989 |1189 |31039 |0 |2 |F63100|0 |2 |0 |
+ROW |50990 |1189 |31012 |0 |3 |A54F10|0 |2 |0 |
+ROW |50991 |1189 |31015 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |50992 |1189 |31037 |0 |5 |6C59DC|0 |2 |0 |
+ROW |50993 |1189 |31040 |0 |6 |AC8C14|0 |2 |0 |
+ROW |50994 |1189 |31020 |0 |7 |611F27|0 |2 |0 |
+ROW |50995 |1308 |32078 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50996 |1308 |32077 |0 |1 |2774A4|0 |2 |0 |
+ROW |50997 |1309 |32088 |0 |0 |1A7C11|0 |2 |0 |
+ROW |50998 |1309 |32087 |0 |1 |2774A4|0 |2 |0 |
+ROW |50999 |1310 |32071 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51000 |1310 |32102 |0 |1 |2774A4|0 |2 |0 |
+ROW |51001 |1311 |32108 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51002 |1311 |32109 |0 |1 |2774A4|0 |2 |0 |
+ROW |51003 |1311 |32106 |0 |2 |F63100|0 |2 |0 |
+ROW |51004 |1311 |32107 |0 |3 |A54F10|0 |2 |0 |
+ROW |51005 |1312 |32083 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51006 |1312 |32084 |0 |1 |2774A4|0 |2 |0 |
+ROW |51007 |1313 |32080 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51008 |1313 |32081 |0 |1 |2774A4|0 |2 |0 |
+ROW |51009 |1314 |32086 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51010 |1314 |32100 |2 |1 |2774A4|0 |2 |0 |
+ROW |51011 |1314 |32073 |0 |2 |F63100|0 |2 |0 |
+ROW |51012 |1314 |32131 |0 |3 |A54F10|0 |2 |0 |
+ROW |51013 |1314 |32118 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |51014 |1314 |32101 |0 |5 |6C59DC|0 |2 |0 |
+ROW |51015 |1314 |32125 |0 |6 |AC8C14|0 |2 |0 |
+ROW |51016 |1314 |32126 |2 |7 |611F27|0 |2 |0 |
+ROW |51017 |1314 |32127 |0 |8 |F230E0|0 |2 |0 |
+ROW |51018 |1314 |32128 |0 |9 |FFAD40|0 |2 |0 |
+ROW |51019 |1314 |32129 |2 |10 |40CDFF|0 |2 |0 |
+ROW |51020 |1314 |32130 |0 |11 |40FFA0|0 |2 |0 |
+ROW |51021 |1315 |32124 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51022 |1315 |32123 |2 |1 |2774A4|0 |2 |0 |
+ROW |51023 |1315 |32122 |0 |2 |F63100|0 |2 |0 |
+ROW |51024 |1315 |32121 |0 |3 |A54F10|0 |2 |0 |
+ROW |51025 |1315 |32121 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |51026 |1315 |32120 |0 |5 |6C59DC|0 |2 |0 |
+ROW |51027 |1316 |32098 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51028 |1316 |32099 |0 |1 |2774A4|0 |2 |0 |
+ROW |51029 |1316 |32097 |0 |2 |F63100|0 |2 |0 |
+ROW |51030 |1316 |32096 |0 |3 |A54F10|0 |2 |0 |
+ROW |51031 |1130 |30613 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51032 |1130 |30635 |0 |1 |2774A4|0 |2 |0 |
+ROW |51033 |1130 |30625 |0 |2 |F63100|0 |2 |0 |
+ROW |51034 |1131 |30632 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51035 |1131 |30633 |5 |1 |2774A4|0 |2 |0 |
+ROW |51036 |1131 |30629 |5 |2 |F63100|0 |2 |0 |
+ROW |51037 |1132 |30630 |2 |0 |1A7C11|0 |2 |0 |
+ROW |51038 |1132 |30628 |2 |1 |2774A4|0 |2 |0 |
+ROW |51039 |1132 |30631 |2 |2 |F63100|0 |2 |0 |
+ROW |51040 |1133 |30619 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51041 |1133 |30618 |0 |1 |2774A4|0 |2 |0 |
+ROW |51042 |1134 |30623 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51043 |1134 |30622 |5 |1 |2774A4|0 |2 |0 |
+ROW |51044 |1135 |30615 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51045 |841 |28813 |2 |0 |1A7C11|0 |2 |0 |
+ROW |51046 |841 |28811 |0 |1 |2774A4|0 |2 |0 |
+ROW |51047 |841 |28812 |0 |2 |F63100|0 |2 |0 |
+ROW |51048 |841 |28814 |0 |3 |A54F10|0 |2 |0 |
+ROW |51049 |842 |28817 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51050 |842 |28815 |0 |1 |2774A4|0 |2 |0 |
+ROW |51051 |842 |28816 |0 |2 |F63100|0 |2 |0 |
+ROW |51052 |844 |28808 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51053 |844 |28807 |0 |1 |2774A4|0 |2 |0 |
+ROW |51054 |843 |28818 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51055 |845 |28829 |2 |0 |1A7C11|0 |2 |0 |
+ROW |51056 |845 |28831 |0 |1 |2774A4|0 |2 |0 |
+ROW |51057 |845 |28832 |0 |2 |F63100|0 |2 |0 |
+ROW |51058 |845 |28830 |0 |3 |A54F10|0 |2 |0 |
+ROW |51059 |846 |28826 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51060 |846 |28828 |0 |1 |2774A4|0 |2 |0 |
+ROW |51061 |846 |28827 |0 |2 |F63100|0 |2 |0 |
+ROW |51062 |847 |28825 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51063 |1287 |31890 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51064 |1287 |31882 |0 |1 |2774A4|0 |2 |0 |
+ROW |51065 |1287 |31880 |0 |2 |F63100|0 |2 |0 |
+ROW |51066 |1287 |31883 |0 |3 |A54F10|0 |2 |0 |
+ROW |51067 |1288 |31889 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51068 |1288 |31881 |0 |1 |2774A4|0 |2 |0 |
+ROW |51069 |1288 |31888 |0 |2 |F63100|0 |2 |0 |
+ROW |51070 |1289 |31900 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51071 |1289 |31895 |0 |1 |2774A4|0 |2 |0 |
+ROW |51072 |1289 |31899 |0 |2 |F63100|0 |2 |0 |
+ROW |51073 |1289 |31902 |0 |3 |A54F10|0 |2 |0 |
+ROW |51074 |1290 |31907 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51075 |1290 |31908 |0 |1 |2774A4|0 |2 |0 |
+ROW |51076 |1290 |31906 |0 |2 |F63100|0 |2 |0 |
+ROW |51077 |1412 |32908 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51078 |1412 |32923 |0 |1 |2774A4|0 |2 |0 |
+ROW |51079 |1412 |32921 |0 |2 |F63100|0 |2 |0 |
+ROW |51080 |1412 |32919 |0 |3 |A54F10|0 |2 |0 |
+ROW |51081 |1412 |32917 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |51082 |1412 |32911 |0 |5 |6C59DC|0 |2 |0 |
+ROW |51083 |1412 |32914 |0 |6 |AC8C14|0 |2 |0 |
+ROW |51084 |1412 |32909 |0 |7 |611F27|0 |2 |0 |
+ROW |51085 |1413 |32912 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51086 |1413 |32922 |0 |1 |2774A4|0 |2 |0 |
+ROW |51087 |1413 |32920 |0 |2 |F63100|0 |2 |0 |
+ROW |51088 |1413 |32918 |0 |3 |A54F10|0 |2 |0 |
+ROW |51089 |1413 |32915 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |51090 |1413 |32910 |0 |5 |6C59DC|0 |2 |0 |
+ROW |51091 |1413 |32913 |0 |6 |AC8C14|0 |2 |0 |
+ROW |51092 |1413 |32924 |0 |7 |611F27|0 |2 |0 |
+ROW |51093 |1414 |32847 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51094 |1414 |32848 |0 |1 |2774A4|0 |2 |0 |
+ROW |51095 |1414 |32846 |0 |2 |F63100|0 |2 |0 |
+ROW |51096 |1415 |32871 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51097 |1415 |32876 |2 |1 |FF0000|0 |2 |0 |
+ROW |51098 |1416 |32875 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51099 |1417 |32839 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51100 |1417 |32838 |0 |1 |2774A4|0 |2 |0 |
+ROW |51101 |1418 |32878 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51102 |1418 |32873 |2 |1 |FF0000|0 |2 |0 |
+ROW |51103 |1419 |32843 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51104 |1419 |32842 |0 |1 |2774A4|0 |2 |0 |
+ROW |51105 |1419 |32841 |0 |2 |F63100|0 |2 |0 |
+ROW |51106 |1420 |32857 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51107 |1420 |32851 |0 |1 |2774A4|0 |2 |0 |
+ROW |51108 |1420 |32861 |0 |2 |F63100|0 |2 |0 |
+ROW |51109 |1420 |32859 |0 |3 |A54F10|0 |2 |0 |
+ROW |51110 |1420 |32855 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |51111 |1420 |32853 |0 |5 |6C59DC|0 |2 |0 |
+ROW |51112 |1420 |32863 |0 |6 |AC8C14|0 |2 |0 |
+ROW |51113 |1420 |32849 |0 |7 |611F27|0 |2 |0 |
+ROW |51114 |1421 |32858 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51115 |1421 |32850 |0 |1 |2774A4|0 |2 |0 |
+ROW |51116 |1421 |32862 |0 |2 |F63100|0 |2 |0 |
+ROW |51117 |1421 |32860 |0 |3 |A54F10|0 |2 |0 |
+ROW |51118 |1421 |32856 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |51119 |1421 |32854 |0 |5 |6C59DC|0 |2 |0 |
+ROW |51120 |1421 |32852 |0 |6 |AC8C14|0 |2 |0 |
+ROW |51121 |1421 |32840 |0 |7 |611F27|0 |2 |0 |
+ROW |51122 |1422 |32864 |2 |0 |1A7C11|0 |2 |0 |
+ROW |51123 |1423 |32844 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51124 |1424 |32866 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51125 |1424 |32867 |0 |1 |2774A4|0 |2 |0 |
+ROW |51126 |1425 |32865 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51127 |1426 |33000 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51128 |1426 |33015 |0 |1 |2774A4|0 |2 |0 |
+ROW |51129 |1426 |33013 |0 |2 |F63100|0 |2 |0 |
+ROW |51130 |1426 |33011 |0 |3 |A54F10|0 |2 |0 |
+ROW |51131 |1426 |33009 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |51132 |1426 |33003 |0 |5 |6C59DC|0 |2 |0 |
+ROW |51133 |1426 |33006 |0 |6 |AC8C14|0 |2 |0 |
+ROW |51134 |1426 |33001 |0 |7 |611F27|0 |2 |0 |
+ROW |51135 |1427 |33004 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51136 |1427 |33014 |0 |1 |2774A4|0 |2 |0 |
+ROW |51137 |1427 |33012 |0 |2 |F63100|0 |2 |0 |
+ROW |51138 |1427 |33010 |0 |3 |A54F10|0 |2 |0 |
+ROW |51139 |1427 |33007 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |51140 |1427 |33002 |0 |5 |6C59DC|0 |2 |0 |
+ROW |51141 |1427 |33005 |0 |6 |AC8C14|0 |2 |0 |
+ROW |51142 |1427 |33016 |0 |7 |611F27|0 |2 |0 |
+ROW |51143 |1428 |32937 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51144 |1428 |32938 |0 |1 |2774A4|0 |2 |0 |
+ROW |51145 |1428 |32936 |0 |2 |F63100|0 |2 |0 |
+ROW |51146 |1429 |32969 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51147 |1429 |32967 |2 |1 |FF0000|0 |2 |0 |
+ROW |51148 |1430 |32966 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51149 |1431 |32964 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51150 |1431 |32962 |2 |1 |FF0000|0 |2 |0 |
+ROW |51151 |1432 |32933 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51152 |1432 |32932 |0 |1 |2774A4|0 |2 |0 |
+ROW |51153 |1432 |32955 |0 |2 |F63100|0 |2 |0 |
+ROW |51154 |1433 |32947 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51155 |1433 |32953 |0 |1 |2774A4|0 |2 |0 |
+ROW |51156 |1433 |32951 |0 |2 |F63100|0 |2 |0 |
+ROW |51157 |1433 |32949 |0 |3 |A54F10|0 |2 |0 |
+ROW |51158 |1433 |32945 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |51159 |1433 |32943 |0 |5 |6C59DC|0 |2 |0 |
+ROW |51160 |1433 |32941 |0 |6 |AC8C14|0 |2 |0 |
+ROW |51161 |1433 |32939 |0 |7 |611F27|0 |2 |0 |
+ROW |51162 |1434 |32948 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51163 |1434 |32954 |0 |1 |2774A4|0 |2 |0 |
+ROW |51164 |1434 |32952 |0 |2 |F63100|0 |2 |0 |
+ROW |51165 |1434 |32950 |0 |3 |A54F10|0 |2 |0 |
+ROW |51166 |1434 |32946 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |51167 |1434 |32944 |0 |5 |6C59DC|0 |2 |0 |
+ROW |51168 |1434 |32942 |0 |6 |AC8C14|0 |2 |0 |
+ROW |51169 |1434 |32940 |0 |7 |611F27|0 |2 |0 |
+ROW |51170 |1435 |32960 |2 |0 |1A7C11|0 |2 |0 |
+ROW |51171 |1436 |32934 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51172 |1437 |32957 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51173 |1437 |32958 |0 |1 |2774A4|0 |2 |0 |
+ROW |51174 |1438 |32970 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51175 |1291 |31947 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51176 |1291 |31946 |0 |1 |2774A4|0 |2 |0 |
+ROW |51177 |1292 |31952 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51178 |1292 |31938 |0 |1 |2774A4|0 |2 |0 |
+ROW |51179 |1292 |31950 |0 |2 |F63100|0 |2 |0 |
+ROW |51180 |1293 |31939 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51181 |1293 |31945 |0 |1 |2774A4|0 |2 |0 |
+ROW |51182 |1293 |31942 |0 |2 |F63100|0 |2 |0 |
+ROW |51183 |1294 |31959 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51184 |1294 |31962 |0 |1 |2774A4|0 |2 |0 |
+ROW |51185 |1295 |31918 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51186 |1295 |31916 |0 |1 |2774A4|0 |2 |0 |
+ROW |51187 |1295 |31917 |0 |2 |F63100|0 |2 |0 |
+ROW |51188 |1296 |31919 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51189 |1296 |31920 |0 |1 |2774A4|0 |2 |0 |
+ROW |51190 |1296 |31921 |0 |2 |F63100|0 |2 |0 |
+ROW |51191 |1297 |31911 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51192 |1297 |31944 |0 |1 |2774A4|0 |2 |0 |
+ROW |51193 |1298 |31953 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51194 |1298 |31954 |0 |1 |2774A4|0 |2 |0 |
+ROW |51195 |1298 |31960 |0 |2 |F63100|0 |2 |0 |
+ROW |51196 |1298 |31961 |0 |3 |A54F10|0 |2 |0 |
+ROW |51197 |1298 |31957 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |51198 |1298 |31958 |0 |5 |6C59DC|0 |2 |0 |
+ROW |51199 |1298 |31912 |0 |6 |AC8C14|0 |2 |0 |
+ROW |51200 |1298 |31913 |0 |7 |611F27|0 |2 |0 |
+ROW |51201 |1298 |31914 |0 |8 |F230E0|0 |2 |0 |
+ROW |51202 |1298 |31915 |0 |9 |FFAD40|0 |2 |0 |
+ROW |51203 |1298 |31948 |0 |10 |40CDFF|0 |2 |0 |
+ROW |51204 |1298 |31949 |0 |11 |40FFA0|0 |2 |0 |
+ROW |51205 |1317 |32146 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51206 |1317 |32145 |5 |1 |2774A4|0 |2 |0 |
+ROW |51207 |1318 |32151 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51208 |1318 |32150 |5 |1 |2774A4|0 |2 |0 |
+ROW |51209 |1318 |32153 |5 |2 |F63100|0 |2 |0 |
+ROW |51210 |1318 |32152 |5 |3 |A54F10|0 |2 |0 |
+ROW |51211 |1319 |32157 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51212 |1319 |32155 |5 |1 |2774A4|0 |2 |0 |
+ROW |51213 |1319 |32156 |5 |2 |F63100|0 |2 |0 |
+ROW |51214 |1320 |32196 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51215 |1320 |32197 |0 |1 |2774A4|0 |2 |0 |
+ROW |51216 |1320 |32195 |2 |2 |F63100|0 |2 |0 |
+ROW |51217 |1321 |32200 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51218 |1321 |32199 |0 |1 |2774A4|0 |2 |0 |
+ROW |51219 |1322 |32175 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51220 |1322 |32165 |0 |1 |2774A4|0 |2 |0 |
+ROW |51221 |1323 |32162 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51222 |1323 |32163 |0 |1 |2774A4|0 |2 |0 |
+ROW |51223 |1323 |32190 |2 |2 |F63100|0 |2 |0 |
+ROW |51224 |1324 |32192 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51225 |1324 |32179 |0 |1 |2774A4|0 |2 |0 |
+ROW |51226 |1325 |32168 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51227 |1325 |32166 |0 |1 |2774A4|0 |2 |0 |
+ROW |51228 |803 |28599 |0 |0 |DD0000|0 |2 |0 |
+ROW |51229 |803 |28596 |0 |1 |00DDDD|0 |2 |0 |
+ROW |51230 |803 |28597 |0 |2 |3333FF|0 |2 |0 |
+ROW |51231 |803 |28598 |0 |3 |00FF00|0 |2 |0 |
+ROW |51232 |804 |28602 |0 |0 |990099|0 |2 |0 |
+ROW |51233 |804 |28606 |0 |1 |990000|0 |2 |0 |
+ROW |51234 |804 |28608 |0 |2 |0000EE|0 |2 |0 |
+ROW |51235 |804 |28615 |0 |3 |FF33FF|0 |2 |0 |
+ROW |51236 |804 |28610 |0 |4 |00EE00|0 |2 |0 |
+ROW |51237 |804 |28611 |0 |5 |003300|0 |2 |0 |
+ROW |51238 |804 |28616 |0 |6 |33FFFF|0 |2 |0 |
+ROW |51239 |804 |28607 |0 |7 |DD0000|0 |2 |0 |
+ROW |51240 |804 |28604 |0 |8 |000099|0 |2 |0 |
+ROW |51241 |804 |28588 |0 |9 |00FF00|0 |2 |0 |
+ROW |51242 |805 |28612 |0 |0 |FFAA00|0 |2 |0 |
+ROW |51243 |805 |28600 |0 |1 |990099|0 |2 |0 |
+ROW |51244 |805 |28613 |0 |2 |EE0000|0 |2 |0 |
+ROW |51245 |805 |28605 |0 |3 |FF66FF|0 |2 |0 |
+ROW |51246 |805 |28614 |0 |4 |960000|0 |2 |0 |
+ROW |51247 |805 |28601 |0 |5 |009600|0 |2 |0 |
+ROW |51248 |805 |28603 |0 |6 |009999|0 |2 |0 |
+ROW |51249 |805 |28609 |0 |7 |BBBB00|0 |2 |0 |
+ROW |51250 |806 |28595 |0 |0 |00C800|0 |2 |0 |
+ROW |51251 |806 |28586 |0 |1 |C80000|0 |2 |0 |
+ROW |51252 |797 |28546 |0 |0 |C80000|0 |2 |0 |
+ROW |51253 |797 |28545 |0 |1 |00C800|0 |2 |0 |
+ROW |51254 |798 |28551 |0 |0 |009900|0 |2 |0 |
+ROW |51255 |798 |28543 |0 |1 |DD0000|0 |2 |0 |
+ROW |51256 |798 |28542 |0 |2 |00DDDD|0 |2 |0 |
+ROW |51257 |798 |28549 |0 |3 |3333FF|0 |2 |0 |
+ROW |51258 |798 |28544 |0 |4 |999900|0 |2 |0 |
+ROW |51259 |798 |28548 |0 |5 |00FF00|0 |2 |0 |
+ROW |51260 |799 |28581 |0 |0 |990099|0 |2 |0 |
+ROW |51261 |799 |28574 |0 |1 |990000|0 |2 |0 |
+ROW |51262 |799 |28571 |0 |2 |0000EE|0 |2 |0 |
+ROW |51263 |799 |28565 |0 |3 |FF33FF|0 |2 |0 |
+ROW |51264 |799 |28570 |0 |4 |009600|0 |2 |0 |
+ROW |51265 |799 |28569 |0 |5 |003300|0 |2 |0 |
+ROW |51266 |799 |28577 |0 |6 |CCCC00|0 |2 |0 |
+ROW |51267 |799 |28552 |0 |7 |33FFFF|0 |2 |0 |
+ROW |51268 |799 |28573 |0 |8 |DD0000|0 |2 |0 |
+ROW |51269 |799 |28579 |0 |9 |000099|0 |2 |0 |
+ROW |51270 |799 |28559 |0 |10 |00FF00|0 |2 |0 |
+ROW |51271 |800 |28572 |0 |0 |00EE00|0 |2 |0 |
+ROW |51272 |800 |28566 |0 |1 |0000EE|0 |2 |0 |
+ROW |51273 |800 |28568 |0 |2 |FFAA00|0 |2 |0 |
+ROW |51274 |800 |28561 |0 |3 |00EEEE|0 |2 |0 |
+ROW |51275 |800 |28564 |0 |4 |990099|0 |2 |0 |
+ROW |51276 |800 |28567 |0 |5 |EE0000|0 |2 |0 |
+ROW |51277 |800 |28578 |0 |6 |FF66FF|0 |2 |0 |
+ROW |51278 |800 |28580 |0 |7 |009999|0 |2 |0 |
+ROW |51279 |800 |28562 |0 |8 |BBBB00|0 |2 |0 |
+ROW |51280 |800 |28563 |0 |9 |AA0000|0 |2 |0 |
+ROW |51281 |800 |28575 |0 |10 |990000|0 |2 |0 |
+ROW |51282 |800 |28576 |0 |11 |008800|0 |2 |0 |
+ROW |51283 |800 |28582 |0 |12 |80B0E0|0 |2 |0 |
+ROW |51284 |800 |28583 |0 |13 |4080B0|0 |2 |0 |
+ROW |51285 |800 |29821 |0 |14 |8000FF|0 |2 |0 |
+ROW |51286 |801 |28560 |0 |0 |008800|0 |2 |0 |
+ROW |51287 |801 |28584 |0 |1 |EE0000|0 |2 |0 |
+ROW |51288 |802 |28550 |5 |0 |00C800|0 |2 |0 |
+ROW |51289 |802 |28540 |0 |1 |F63100|0 |2 |0 |
+ROW |51290 |529 |23357 |0 |0 |DD0000|0 |2 |0 |
+ROW |51291 |529 |23341 |0 |1 |00DDDD|0 |2 |0 |
+ROW |51292 |529 |23342 |0 |2 |3333FF|0 |2 |0 |
+ROW |51293 |529 |28251 |0 |3 |00FF00|0 |2 |0 |
+ROW |51294 |530 |23345 |0 |0 |990099|0 |2 |0 |
+ROW |51295 |530 |23348 |0 |1 |990000|0 |2 |0 |
+ROW |51296 |530 |23355 |0 |2 |0000EE|0 |2 |0 |
+ROW |51297 |530 |23352 |0 |3 |FF33FF|0 |2 |0 |
+ROW |51298 |530 |23356 |0 |4 |007700|0 |2 |0 |
+ROW |51299 |530 |23354 |0 |5 |003300|0 |2 |0 |
+ROW |51300 |530 |23346 |0 |6 |33FFFF|0 |2 |0 |
+ROW |51301 |530 |23349 |0 |7 |DD0000|0 |2 |0 |
+ROW |51302 |530 |23344 |0 |8 |000099|0 |7 |0 |
+ROW |51303 |530 |28250 |0 |9 |00FF00|0 |2 |0 |
+ROW |51304 |531 |23353 |0 |0 |FFAA00|0 |2 |0 |
+ROW |51305 |531 |23347 |0 |1 |990099|0 |2 |0 |
+ROW |51306 |531 |23350 |0 |2 |EE0000|0 |2 |0 |
+ROW |51307 |531 |23343 |0 |3 |FF66FF|0 |2 |0 |
+ROW |51308 |531 |23351 |0 |4 |0000EE|0 |2 |0 |
+ROW |51309 |531 |23360 |0 |5 |00EE00|0 |2 |0 |
+ROW |51310 |531 |25369 |0 |6 |009999|0 |2 |0 |
+ROW |51311 |531 |25368 |0 |7 |BBBB00|0 |2 |0 |
+ROW |51312 |531 |28618 |0 |8 |990000|0 |2 |0 |
+ROW |51313 |531 |28619 |0 |9 |008800|0 |2 |0 |
+ROW |51314 |807 |28617 |0 |0 |008800|0 |2 |0 |
+ROW |51315 |532 |23340 |5 |0 |00C800|0 |2 |0 |
+ROW |51316 |532 |23358 |5 |1 |C80000|1 |2 |0 |
+ROW |51317 |527 |22199 |0 |0 |C80000|0 |2 |0 |
+ROW |51318 |527 |22196 |0 |1 |00C800|0 |2 |0 |
+ROW |51319 |528 |23628 |0 |0 |C80000|0 |2 |0 |
+ROW |51320 |528 |23625 |0 |1 |00C800|0 |2 |0 |
+ROW |51321 |410 |22185 |0 |0 |009900|0 |2 |0 |
+ROW |51322 |410 |22189 |0 |1 |DD0000|0 |2 |0 |
+ROW |51323 |410 |22396 |0 |2 |00DDDD|0 |2 |0 |
+ROW |51324 |410 |22183 |0 |3 |3333FF|0 |2 |0 |
+ROW |51325 |410 |22191 |0 |4 |999900|0 |2 |0 |
+ROW |51326 |410 |23634 |0 |5 |00FF00|0 |2 |0 |
+ROW |51327 |520 |23276 |0 |0 |009900|0 |2 |0 |
+ROW |51328 |520 |23273 |0 |1 |DD0000|0 |2 |0 |
+ROW |51329 |520 |23275 |0 |2 |00DDDD|0 |2 |0 |
+ROW |51330 |520 |23274 |0 |3 |3333FF|0 |2 |0 |
+ROW |51331 |520 |23620 |0 |4 |999900|0 |2 |0 |
+ROW |51332 |520 |23635 |0 |5 |00FF00|0 |2 |0 |
+ROW |51333 |404 |22404 |0 |0 |990099|0 |2 |0 |
+ROW |51334 |404 |22399 |0 |1 |990000|0 |2 |0 |
+ROW |51335 |404 |22416 |0 |2 |0000EE|0 |2 |0 |
+ROW |51336 |404 |22430 |0 |3 |FF33FF|0 |2 |0 |
+ROW |51337 |404 |22418 |0 |4 |009600|0 |2 |0 |
+ROW |51338 |404 |22402 |0 |5 |003300|0 |2 |0 |
+ROW |51339 |404 |22420 |0 |6 |CCCC00|0 |2 |0 |
+ROW |51340 |404 |22400 |0 |7 |33FFFF|0 |2 |0 |
+ROW |51341 |404 |22689 |0 |8 |DD0000|0 |2 |0 |
+ROW |51342 |404 |23171 |0 |9 |000099|0 |2 |0 |
+ROW |51343 |404 |22401 |0 |10 |00FF00|0 |2 |0 |
+ROW |51344 |518 |23269 |0 |0 |990099|0 |2 |0 |
+ROW |51345 |518 |23264 |0 |1 |990000|0 |2 |0 |
+ROW |51346 |518 |23261 |0 |2 |0000EE|0 |2 |0 |
+ROW |51347 |518 |23255 |0 |3 |FF33FF|0 |2 |0 |
+ROW |51348 |518 |23260 |0 |4 |009600|0 |2 |0 |
+ROW |51349 |518 |23259 |0 |5 |003300|0 |2 |0 |
+ROW |51350 |518 |23265 |0 |6 |CCCC00|0 |2 |0 |
+ROW |51351 |518 |23270 |0 |7 |33FFFF|0 |2 |0 |
+ROW |51352 |518 |23262 |0 |8 |DD0000|0 |2 |0 |
+ROW |51353 |518 |23267 |0 |9 |000099|0 |2 |0 |
+ROW |51354 |518 |23328 |0 |10 |00FF00|0 |2 |0 |
+ROW |51355 |406 |22426 |0 |0 |00EE00|0 |2 |0 |
+ROW |51356 |406 |22422 |0 |1 |0000EE|0 |2 |0 |
+ROW |51357 |406 |22408 |0 |2 |FFAA00|0 |2 |0 |
+ROW |51358 |406 |22424 |0 |3 |00EEEE|0 |2 |0 |
+ROW |51359 |406 |22412 |0 |4 |990099|0 |2 |0 |
+ROW |51360 |406 |22406 |0 |5 |EE0000|0 |2 |0 |
+ROW |51361 |406 |22414 |0 |6 |FF66FF|0 |2 |0 |
+ROW |51362 |406 |23663 |0 |7 |009999|0 |2 |0 |
+ROW |51363 |406 |25366 |0 |8 |BBBB00|0 |2 |0 |
+ROW |51364 |406 |25370 |0 |9 |AA0000|0 |2 |0 |
+ROW |51365 |406 |25665 |0 |10 |990000|0 |2 |0 |
+ROW |51366 |406 |25666 |0 |11 |008800|0 |2 |0 |
+ROW |51367 |406 |28535 |0 |12 |80B0E0|0 |2 |0 |
+ROW |51368 |406 |28537 |0 |13 |4080B0|0 |2 |0 |
+ROW |51369 |406 |29822 |0 |14 |8000FF|0 |2 |0 |
+ROW |51370 |517 |23268 |0 |0 |00EE00|0 |2 |0 |
+ROW |51371 |517 |23256 |0 |1 |0000EE|0 |2 |0 |
+ROW |51372 |517 |23258 |0 |2 |FFAA00|0 |2 |0 |
+ROW |51373 |517 |23252 |0 |3 |00EEEE|0 |2 |0 |
+ROW |51374 |517 |23253 |0 |4 |990099|0 |2 |0 |
+ROW |51375 |517 |23257 |0 |5 |EE0000|0 |2 |0 |
+ROW |51376 |517 |23266 |0 |6 |FF66FF|0 |2 |0 |
+ROW |51377 |517 |23664 |0 |7 |009999|0 |2 |0 |
+ROW |51378 |517 |25367 |0 |8 |BBBB00|0 |2 |0 |
+ROW |51379 |517 |25371 |0 |9 |AA0000|0 |2 |0 |
+ROW |51380 |517 |25667 |0 |10 |990000|0 |2 |0 |
+ROW |51381 |517 |25668 |0 |11 |008800|0 |2 |0 |
+ROW |51382 |517 |28536 |0 |12 |80B0E0|0 |2 |0 |
+ROW |51383 |517 |28538 |0 |13 |4080B0|0 |2 |0 |
+ROW |51384 |517 |29823 |0 |14 |8000FF|0 |2 |0 |
+ROW |51385 |788 |28248 |0 |0 |008800|0 |2 |0 |
+ROW |51386 |788 |28533 |0 |1 |EE0000|0 |2 |0 |
+ROW |51387 |789 |28249 |0 |0 |008800|0 |2 |0 |
+ROW |51388 |789 |28534 |0 |1 |EE0000|0 |2 |0 |
+ROW |51389 |392 |22187 |5 |0 |00C800|0 |2 |0 |
+ROW |51390 |392 |23251 |5 |1 |C80000|1 |2 |0 |
+ROW |51391 |519 |23277 |5 |0 |00C800|0 |2 |0 |
+ROW |51392 |519 |23272 |5 |1 |C80000|1 |2 |0 |
+ROW |51393 |472 |22945 |5 |0 |00AA00|0 |2 |0 |
+ROW |51394 |472 |22946 |5 |1 |3333FF|0 |2 |0 |
+ROW |51395 |473 |22950 |0 |0 |C80000|0 |2 |2 |
+ROW |51396 |473 |22948 |0 |1 |00C800|0 |2 |0 |
+ROW |51397 |471 |22924 |0 |0 |009900|0 |2 |0 |
+ROW |51398 |471 |22920 |0 |1 |000099|0 |2 |0 |
+ROW |51399 |469 |22922 |0 |0 |009900|0 |2 |0 |
+ROW |51400 |469 |22923 |0 |1 |000099|0 |2 |0 |
+ROW |51401 |469 |22921 |0 |2 |990000|0 |2 |0 |
+ROW |51402 |498 |23109 |0 |0 |009999|0 |2 |0 |
+ROW |51403 |498 |23112 |0 |1 |990099|0 |2 |0 |
+ROW |51404 |498 |23115 |0 |2 |999900|0 |2 |0 |
+ROW |51405 |498 |23113 |0 |3 |990000|0 |2 |0 |
+ROW |51406 |498 |23114 |0 |4 |000099|0 |2 |0 |
+ROW |51407 |498 |23110 |0 |5 |009900|0 |2 |0 |
+ROW |51408 |540 |22942 |5 |0 |00C800|0 |2 |0 |
+ROW |51409 |492 |23073 |5 |0 |00AA00|0 |2 |0 |
+ROW |51410 |492 |23074 |5 |1 |3333FF|0 |2 |0 |
+ROW |51411 |467 |22910 |0 |0 |C80000|0 |2 |2 |
+ROW |51412 |467 |22908 |0 |1 |00C800|0 |2 |0 |
+ROW |51413 |465 |22884 |0 |0 |009900|0 |2 |0 |
+ROW |51414 |465 |22880 |0 |1 |000099|0 |2 |0 |
+ROW |51415 |463 |22882 |0 |0 |009900|0 |2 |0 |
+ROW |51416 |463 |22883 |0 |1 |000099|0 |2 |0 |
+ROW |51417 |463 |22881 |0 |2 |990000|0 |2 |0 |
+ROW |51418 |462 |22886 |1 |0 |009999|0 |2 |0 |
+ROW |51419 |462 |22888 |1 |1 |990099|0 |2 |0 |
+ROW |51420 |462 |22891 |1 |2 |990000|0 |2 |0 |
+ROW |51421 |462 |22892 |1 |3 |000099|0 |2 |0 |
+ROW |51422 |462 |22885 |1 |4 |009900|0 |2 |0 |
+ROW |51423 |541 |22902 |5 |0 |00C800|0 |2 |0 |
+ROW |51424 |464 |22897 |0 |0 |AA0000|0 |2 |2 |
+ROW |51425 |464 |22895 |0 |1 |00AA00|0 |2 |0 |
+ROW |51426 |478 |22985 |5 |0 |00AA00|0 |2 |0 |
+ROW |51427 |478 |22986 |5 |1 |3333FF|0 |2 |0 |
+ROW |51428 |479 |22990 |0 |0 |C80000|0 |2 |2 |
+ROW |51429 |479 |22988 |0 |1 |00C800|0 |2 |0 |
+ROW |51430 |475 |22962 |0 |0 |009900|0 |2 |0 |
+ROW |51431 |475 |22963 |0 |1 |000099|0 |2 |0 |
+ROW |51432 |475 |22961 |0 |2 |990000|0 |2 |0 |
+ROW |51433 |474 |22968 |1 |0 |990099|0 |2 |0 |
+ROW |51434 |474 |22971 |1 |1 |990000|0 |2 |0 |
+ROW |51435 |474 |22972 |1 |2 |000099|0 |2 |0 |
+ROW |51436 |474 |22965 |1 |3 |009900|0 |2 |0 |
+ROW |51437 |542 |22982 |5 |0 |00C800|0 |2 |0 |
+ROW |51438 |491 |23070 |0 |0 |C80000|0 |2 |2 |
+ROW |51439 |491 |23068 |0 |1 |00C800|0 |2 |0 |
+ROW |51440 |487 |23042 |0 |0 |009900|0 |2 |0 |
+ROW |51441 |487 |23043 |0 |1 |000099|0 |2 |0 |
+ROW |51442 |487 |23041 |0 |2 |990000|0 |2 |0 |
+ROW |51443 |543 |23062 |5 |0 |00C800|0 |2 |0 |
+ROW |51444 |494 |23077 |5 |0 |00AA00|0 |2 |0 |
+ROW |51445 |494 |23078 |5 |1 |3333FF|0 |2 |0 |
+ROW |51446 |493 |23075 |5 |0 |00AA00|0 |2 |0 |
+ROW |51447 |493 |23076 |5 |1 |3333FF|0 |2 |0 |
+ROW |51448 |461 |22870 |0 |0 |C80000|0 |2 |2 |
+ROW |51449 |461 |22868 |0 |1 |00C800|0 |2 |0 |
+ROW |51450 |459 |22844 |0 |0 |009900|0 |2 |0 |
+ROW |51451 |459 |22840 |0 |1 |000099|0 |2 |0 |
+ROW |51452 |457 |22842 |0 |0 |009900|0 |2 |0 |
+ROW |51453 |457 |22843 |0 |1 |000099|0 |2 |0 |
+ROW |51454 |457 |22841 |0 |2 |990000|0 |2 |0 |
+ROW |51455 |456 |22846 |1 |0 |009999|0 |2 |0 |
+ROW |51456 |456 |22848 |1 |1 |990099|0 |2 |0 |
+ROW |51457 |456 |22851 |1 |2 |990000|0 |2 |0 |
+ROW |51458 |456 |22852 |1 |3 |000099|0 |2 |0 |
+ROW |51459 |456 |22845 |1 |4 |009900|0 |2 |0 |
+ROW |51460 |544 |22862 |5 |0 |00C800|0 |2 |0 |
+ROW |51461 |458 |22857 |0 |0 |AA0000|0 |2 |2 |
+ROW |51462 |458 |22855 |0 |1 |00AA00|0 |2 |0 |
+ROW |51463 |484 |23025 |5 |0 |00AA00|0 |2 |0 |
+ROW |51464 |484 |23026 |5 |1 |3333FF|0 |2 |0 |
+ROW |51465 |485 |23030 |0 |0 |C80000|0 |2 |2 |
+ROW |51466 |485 |23028 |0 |1 |00C800|0 |2 |0 |
+ROW |51467 |483 |23004 |0 |0 |009900|0 |2 |0 |
+ROW |51468 |483 |23000 |0 |1 |000099|0 |2 |0 |
+ROW |51469 |481 |23002 |0 |0 |009900|0 |2 |0 |
+ROW |51470 |481 |23003 |0 |1 |000099|0 |2 |0 |
+ROW |51471 |481 |23001 |0 |2 |990000|0 |2 |0 |
+ROW |51472 |480 |23007 |1 |0 |999900|0 |2 |0 |
+ROW |51473 |480 |23011 |1 |1 |990000|0 |2 |0 |
+ROW |51474 |480 |23012 |1 |2 |000099|0 |2 |0 |
+ROW |51475 |480 |23005 |1 |3 |009900|0 |2 |0 |
+ROW |51476 |545 |23022 |5 |0 |00C800|0 |2 |0 |
+ROW |51477 |482 |23017 |0 |0 |AA0000|0 |2 |2 |
+ROW |51478 |482 |23015 |0 |1 |00AA00|0 |2 |0 |
+ROW |51479 |651 |26928 |5 |0 |EE0000|0 |2 |0 |
+ROW |51480 |651 |26927 |0 |1 |000000|1 |2 |0 |
+ROW |51481 |652 |26925 |2 |0 |880000|0 |2 |0 |
+ROW |51482 |652 |26932 |0 |1 |009900|0 |2 |0 |
+ROW |51483 |652 |26930 |0 |2 |00CCCC|0 |2 |0 |
+ROW |51484 |652 |26931 |0 |3 |000000|0 |2 |0 |
+ROW |51485 |652 |26929 |0 |4 |3333FF|0 |2 |0 |
+ROW |51486 |652 |26926 |0 |5 |777700|0 |2 |0 |
+ROW |51487 |653 |26933 |2 |0 |EE0000|0 |2 |0 |
+ROW |51488 |653 |26943 |2 |1 |EE00EE|0 |2 |0 |
+ROW |51489 |653 |26935 |0 |2 |000000|1 |2 |0 |
+ROW |51490 |653 |26936 |4 |3 |000000|1 |2 |0 |
+ROW |51491 |654 |26934 |2 |0 |880000|0 |2 |0 |
+ROW |51492 |654 |26939 |0 |1 |009900|0 |2 |0 |
+ROW |51493 |654 |26942 |0 |2 |00CCCC|0 |2 |0 |
+ROW |51494 |654 |26938 |0 |3 |000000|0 |2 |0 |
+ROW |51495 |654 |26937 |0 |4 |3333FF|0 |2 |0 |
+ROW |51496 |1326 |32292 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51497 |1326 |32291 |0 |1 |2774A4|0 |2 |0 |
+ROW |51498 |1326 |32278 |0 |2 |F63100|0 |2 |0 |
+ROW |51499 |1326 |32277 |0 |3 |A54F10|0 |2 |0 |
+ROW |51500 |1327 |32304 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51501 |1327 |32289 |0 |1 |2774A4|0 |2 |0 |
+ROW |51502 |1328 |32259 |2 |0 |1A7C11|0 |2 |0 |
+ROW |51503 |1328 |32260 |2 |1 |2774A4|0 |2 |0 |
+ROW |51504 |1329 |32268 |2 |0 |1A7C11|0 |2 |0 |
+ROW |51505 |1329 |32264 |2 |1 |2774A4|0 |2 |0 |
+ROW |51506 |1330 |32261 |2 |0 |1A7C11|0 |2 |0 |
+ROW |51507 |1330 |32265 |2 |1 |2774A4|0 |2 |0 |
+ROW |51508 |1330 |32262 |0 |2 |F63100|0 |2 |0 |
+ROW |51509 |1330 |32263 |0 |3 |A54F10|0 |2 |0 |
+ROW |51510 |1330 |32266 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |51511 |1330 |32267 |0 |5 |6C59DC|0 |2 |0 |
+ROW |51512 |1331 |32272 |2 |0 |1A7C11|0 |2 |0 |
+ROW |51513 |1331 |32271 |2 |1 |2774A4|0 |2 |0 |
+ROW |51514 |1332 |32256 |2 |0 |1A7C11|0 |2 |0 |
+ROW |51515 |1332 |32242 |2 |1 |2774A4|0 |2 |0 |
+ROW |51516 |1333 |32273 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51517 |1333 |32238 |0 |1 |2774A4|0 |2 |0 |
+ROW |51518 |1334 |32245 |2 |0 |1A7C11|0 |2 |0 |
+ROW |51519 |1334 |32250 |2 |1 |2774A4|0 |2 |0 |
+ROW |51520 |1334 |32246 |0 |2 |F63100|0 |2 |0 |
+ROW |51521 |1334 |32247 |0 |3 |A54F10|0 |2 |0 |
+ROW |51522 |1334 |32251 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |51523 |1334 |32252 |0 |5 |6C59DC|0 |2 |0 |
+ROW |51524 |1159 |30886 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51525 |1159 |30887 |0 |1 |2774A4|0 |2 |0 |
+ROW |51526 |1160 |30888 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51527 |1160 |30882 |0 |1 |2774A4|0 |2 |0 |
+ROW |51528 |1160 |30890 |0 |2 |F63100|0 |2 |0 |
+ROW |51529 |1160 |30881 |0 |3 |A54F10|0 |2 |0 |
+ROW |51530 |1160 |30889 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |51531 |1161 |30847 |2 |0 |1A7C11|0 |2 |0 |
+ROW |51532 |1161 |30872 |2 |1 |2774A4|0 |2 |0 |
+ROW |51533 |1162 |30853 |2 |0 |1A7C11|0 |2 |0 |
+ROW |51534 |1162 |30849 |2 |1 |2774A4|0 |2 |0 |
+ROW |51535 |1162 |30852 |2 |2 |F63100|0 |2 |0 |
+ROW |51536 |1162 |30851 |2 |3 |A54F10|0 |2 |0 |
+ROW |51537 |1162 |30848 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |51538 |1163 |30856 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51539 |1163 |30855 |0 |1 |2774A4|0 |2 |0 |
+ROW |51540 |1163 |30854 |2 |2 |F63100|1 |2 |0 |
+ROW |51541 |1164 |30859 |2 |0 |1A7C11|0 |2 |0 |
+ROW |51542 |1164 |30870 |2 |1 |2774A4|0 |2 |0 |
+ROW |51543 |1165 |30860 |2 |0 |1A7C11|0 |2 |0 |
+ROW |51544 |1165 |30871 |2 |1 |2774A4|0 |2 |0 |
+ROW |51545 |1166 |30868 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51546 |1166 |30869 |0 |1 |2774A4|0 |2 |0 |
+ROW |51547 |1166 |30867 |0 |2 |F63100|0 |2 |0 |
+ROW |51548 |1166 |30866 |0 |3 |A54F10|0 |2 |0 |
+ROW |51549 |1166 |30865 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |51550 |1167 |30850 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51551 |1167 |30863 |5 |1 |2774A4|0 |2 |0 |
+ROW |51552 |1167 |30861 |5 |2 |F63100|0 |2 |0 |
+ROW |51553 |1168 |30833 |2 |0 |1A7C11|0 |2 |0 |
+ROW |51554 |1168 |30841 |2 |1 |2774A4|0 |2 |0 |
+ROW |51555 |1168 |30857 |2 |2 |F63100|0 |2 |0 |
+ROW |51556 |1169 |30834 |2 |0 |1A7C11|0 |2 |0 |
+ROW |51557 |1169 |30831 |2 |1 |2774A4|0 |2 |0 |
+ROW |51558 |1170 |30846 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51559 |1488 |30840 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51560 |1488 |30845 |0 |1 |2774A4|0 |2 |0 |
+ROW |51561 |1488 |30842 |0 |2 |F63100|0 |2 |0 |
+ROW |51562 |1488 |30873 |2 |3 |A54F10|1 |2 |0 |
+ROW |51563 |1390 |32665 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51564 |1390 |32668 |0 |1 |2774A4|0 |2 |0 |
+ROW |51565 |1390 |32666 |0 |2 |F63100|0 |2 |0 |
+ROW |51566 |1390 |32667 |0 |3 |A54F10|0 |2 |0 |
+ROW |51567 |1391 |32674 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51568 |1391 |32673 |0 |1 |2774A4|0 |2 |0 |
+ROW |51569 |1391 |32672 |0 |2 |F63100|0 |2 |0 |
+ROW |51570 |1392 |32677 |2 |0 |1A7C11|0 |2 |0 |
+ROW |51571 |1392 |32686 |0 |1 |2774A4|0 |2 |0 |
+ROW |51572 |1393 |32681 |2 |0 |1A7C11|0 |2 |0 |
+ROW |51573 |1393 |32682 |0 |1 |2774A4|0 |2 |0 |
+ROW |51574 |1394 |32687 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51575 |1394 |32692 |0 |1 |2774A4|0 |2 |0 |
+ROW |51576 |1394 |32690 |0 |2 |F63100|0 |2 |0 |
+ROW |51577 |1394 |32688 |0 |3 |A54F10|0 |2 |0 |
+ROW |51578 |1395 |32694 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51579 |1395 |32696 |0 |1 |2774A4|0 |2 |0 |
+ROW |51580 |1395 |32695 |0 |2 |F63100|0 |2 |0 |
+ROW |51581 |1396 |32708 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51582 |1396 |32706 |0 |1 |2774A4|0 |2 |0 |
+ROW |51583 |1397 |32715 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51584 |1397 |32716 |0 |1 |2774A4|0 |2 |0 |
+ROW |51585 |1398 |32718 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51586 |1398 |32720 |0 |1 |2774A4|0 |2 |0 |
+ROW |51587 |1399 |32721 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51588 |1399 |32719 |0 |1 |2774A4|0 |2 |0 |
+ROW |51589 |1400 |32723 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51590 |1400 |32724 |0 |1 |2774A4|0 |2 |0 |
+ROW |51591 |1401 |32722 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51592 |1401 |32725 |0 |1 |2774A4|0 |2 |0 |
+ROW |51593 |1401 |32726 |0 |2 |F63100|0 |2 |0 |
+ROW |51594 |1402 |32728 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51595 |1402 |32729 |0 |1 |2774A4|0 |2 |0 |
+ROW |51596 |1439 |33072 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51597 |1439 |33092 |0 |1 |2774A4|0 |2 |0 |
+ROW |51598 |1440 |33073 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51599 |1440 |33069 |0 |1 |2774A4|0 |2 |0 |
+ROW |51600 |1441 |33079 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51601 |1441 |33084 |0 |1 |2774A4|0 |2 |0 |
+ROW |51602 |1441 |33082 |0 |2 |F63100|0 |2 |0 |
+ROW |51603 |1441 |33074 |0 |3 |A54F10|0 |2 |0 |
+ROW |51604 |1441 |33078 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |51605 |1441 |33086 |0 |5 |6C59DC|0 |2 |0 |
+ROW |51606 |1441 |33076 |2 |6 |AC8C14|0 |2 |0 |
+ROW |51607 |1442 |33081 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51608 |1442 |33085 |0 |1 |2774A4|0 |2 |0 |
+ROW |51609 |1442 |33083 |0 |2 |F63100|0 |2 |0 |
+ROW |51610 |1442 |33075 |0 |3 |A54F10|0 |2 |0 |
+ROW |51611 |1442 |33068 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |51612 |1442 |33087 |0 |5 |6C59DC|0 |2 |0 |
+ROW |51613 |1442 |33077 |2 |6 |AC8C14|0 |2 |0 |
+ROW |51614 |1443 |33093 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51615 |1443 |33098 |0 |1 |2774A4|0 |2 |0 |
+ROW |51616 |1444 |33097 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51617 |1444 |33100 |0 |1 |2774A4|0 |2 |0 |
+ROW |51618 |1444 |33096 |0 |2 |F63100|0 |2 |0 |
+ROW |51619 |1444 |33094 |0 |3 |A54F10|0 |2 |0 |
+ROW |51620 |1445 |33116 |2 |0 |1A7C11|0 |2 |0 |
+ROW |51621 |1446 |33045 |2 |0 |1A7C11|0 |2 |0 |
+ROW |51622 |1446 |33044 |0 |1 |2774A4|0 |2 |0 |
+ROW |51623 |1446 |33046 |0 |2 |F63100|0 |2 |0 |
+ROW |51624 |1447 |33055 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51625 |1447 |33023 |0 |1 |2774A4|0 |2 |0 |
+ROW |51626 |1448 |33053 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51627 |1448 |33052 |0 |1 |2774A4|0 |2 |0 |
+ROW |51628 |1448 |33054 |0 |2 |F63100|0 |2 |0 |
+ROW |51629 |1449 |33051 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51630 |1449 |33059 |0 |1 |2774A4|0 |2 |0 |
+ROW |51631 |1449 |33027 |0 |2 |F63100|0 |2 |0 |
+ROW |51632 |1450 |33022 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51633 |1450 |33040 |0 |1 |2774A4|0 |2 |0 |
+ROW |51634 |1450 |33042 |0 |2 |F63100|0 |2 |0 |
+ROW |51635 |1450 |33043 |0 |3 |A54F10|0 |2 |0 |
+ROW |51636 |1451 |33038 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51637 |1451 |33025 |0 |1 |2774A4|0 |2 |0 |
+ROW |51638 |1451 |33026 |0 |2 |F63100|0 |2 |0 |
+ROW |51639 |1451 |33024 |0 |3 |A54F10|0 |2 |0 |
+ROW |51640 |1452 |33029 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51641 |1452 |33028 |0 |1 |2774A4|0 |2 |0 |
+ROW |51642 |1453 |33035 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51643 |1453 |33034 |0 |1 |2774A4|0 |2 |0 |
+ROW |51644 |1453 |33033 |0 |2 |F63100|0 |2 |0 |
+ROW |51645 |1453 |33036 |0 |3 |A54F10|0 |2 |0 |
+ROW |51646 |1453 |33030 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |51647 |1453 |33031 |0 |5 |6C59DC|0 |2 |0 |
+ROW |51648 |1454 |33057 |2 |0 |1A7C11|0 |2 |0 |
+ROW |51649 |1454 |33056 |2 |1 |2774A4|0 |2 |0 |
+ROW |51650 |1454 |33058 |2 |2 |F63100|0 |2 |0 |
+ROW |51651 |1455 |33190 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51652 |1455 |33193 |0 |1 |2774A4|0 |2 |0 |
+ROW |51653 |1455 |33189 |0 |2 |F63100|0 |2 |0 |
+ROW |51654 |1455 |33187 |0 |3 |A54F10|0 |2 |0 |
+ROW |51655 |1456 |33158 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51656 |1456 |33168 |0 |1 |2774A4|0 |2 |0 |
+ROW |51657 |1456 |33169 |0 |2 |F63100|0 |2 |0 |
+ROW |51658 |1456 |33167 |0 |3 |A54F10|0 |2 |0 |
+ROW |51659 |1456 |33171 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |51660 |1457 |33165 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51661 |1457 |33166 |0 |1 |2774A4|0 |2 |0 |
+ROW |51662 |1457 |33164 |0 |2 |F63100|0 |2 |0 |
+ROW |51663 |1457 |33163 |2 |3 |A54F10|1 |2 |0 |
+ROW |51664 |1458 |33161 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51665 |1458 |33162 |0 |1 |2774A4|0 |2 |0 |
+ROW |51666 |1458 |33155 |0 |2 |F63100|0 |2 |0 |
+ROW |51667 |1459 |33146 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51668 |1459 |33145 |0 |1 |2774A4|0 |2 |0 |
+ROW |51669 |1460 |33152 |2 |0 |1A7C11|0 |2 |0 |
+ROW |51670 |1460 |33151 |2 |1 |2774A4|0 |2 |0 |
+ROW |51671 |1460 |33148 |2 |2 |F63100|0 |2 |0 |
+ROW |51672 |1460 |33153 |2 |3 |A54F10|0 |2 |0 |
+ROW |51673 |1460 |33149 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |51674 |1460 |33144 |2 |5 |6C59DC|0 |2 |0 |
+ROW |51675 |1190 |31140 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51676 |1190 |31141 |0 |1 |2774A4|0 |2 |0 |
+ROW |51677 |1261 |31145 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51678 |1261 |31146 |0 |1 |2774A4|0 |2 |0 |
+ROW |51679 |1261 |31147 |0 |2 |F63100|0 |2 |0 |
+ROW |51680 |1191 |31138 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51681 |1192 |31157 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51682 |1192 |31158 |0 |1 |2774A4|0 |2 |0 |
+ROW |51683 |1193 |31092 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51684 |1193 |31108 |0 |1 |2774A4|0 |2 |0 |
+ROW |51685 |1193 |31110 |0 |2 |F63100|0 |2 |0 |
+ROW |51686 |1193 |31067 |0 |3 |A54F10|0 |2 |0 |
+ROW |51687 |1193 |31086 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |51688 |1193 |31087 |0 |5 |6C59DC|0 |2 |0 |
+ROW |51689 |1194 |31120 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51690 |1194 |31105 |0 |1 |2774A4|0 |2 |0 |
+ROW |51691 |1194 |31071 |0 |2 |F63100|0 |2 |0 |
+ROW |51692 |1194 |31081 |0 |3 |A54F10|0 |2 |0 |
+ROW |51693 |1195 |31098 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51694 |1195 |31099 |0 |1 |2774A4|0 |2 |0 |
+ROW |51695 |1196 |31072 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51696 |1196 |31072 |0 |1 |2774A4|0 |2 |0 |
+ROW |51697 |1197 |31103 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51698 |1197 |31074 |0 |1 |2774A4|0 |2 |0 |
+ROW |51699 |1198 |31104 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51700 |1198 |31063 |0 |1 |2774A4|0 |2 |0 |
+ROW |51701 |1198 |31111 |0 |2 |F63100|0 |2 |0 |
+ROW |51702 |1198 |31112 |0 |3 |A54F10|0 |2 |0 |
+ROW |51703 |1198 |31084 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |51704 |1199 |31115 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51705 |1199 |31116 |0 |1 |2774A4|0 |2 |0 |
+ROW |51706 |1199 |31062 |0 |2 |F63100|0 |2 |0 |
+ROW |51707 |1199 |31118 |0 |3 |A54F10|0 |2 |0 |
+ROW |51708 |1199 |31056 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |51709 |1200 |31107 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51710 |1200 |31090 |0 |1 |2774A4|0 |2 |0 |
+ROW |51711 |1201 |31097 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51712 |1201 |31096 |0 |1 |2774A4|0 |2 |0 |
+ROW |51713 |1202 |31089 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51714 |1202 |31061 |0 |1 |2774A4|0 |2 |0 |
+ROW |51715 |1203 |31064 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51716 |1204 |31065 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51717 |1204 |31066 |0 |1 |2774A4|0 |2 |0 |
+ROW |51718 |1204 |31068 |0 |2 |F63100|0 |2 |0 |
+ROW |51719 |1204 |31070 |0 |3 |A54F10|0 |2 |0 |
+ROW |51720 |1204 |31101 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |51721 |1204 |31106 |0 |5 |6C59DC|0 |2 |0 |
+ROW |51722 |1204 |31114 |0 |6 |AC8C14|0 |2 |0 |
+ROW |51723 |1205 |31069 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51724 |1206 |31076 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51725 |1206 |31078 |0 |1 |2774A4|0 |2 |0 |
+ROW |51726 |1206 |31109 |0 |2 |F63100|0 |2 |0 |
+ROW |51727 |1206 |31075 |0 |3 |A54F10|0 |2 |0 |
+ROW |51728 |1207 |31080 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51729 |1207 |31095 |0 |1 |2774A4|0 |2 |0 |
+ROW |51730 |1208 |31113 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51731 |1208 |31118 |0 |1 |2774A4|0 |2 |0 |
+ROW |51732 |1209 |31058 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51733 |1209 |31077 |0 |1 |2774A4|0 |2 |0 |
+ROW |51734 |1209 |31056 |0 |2 |F63100|0 |2 |0 |
+ROW |51735 |1209 |31117 |0 |3 |A54F10|0 |2 |0 |
+ROW |51736 |1109 |30453 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51737 |1109 |30455 |5 |1 |2774A4|0 |2 |0 |
+ROW |51738 |1110 |30471 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51739 |1110 |30470 |0 |1 |2774A4|0 |2 |0 |
+ROW |51740 |1110 |30466 |0 |2 |F63100|0 |2 |0 |
+ROW |51741 |1110 |30441 |0 |3 |A54F10|0 |2 |0 |
+ROW |51742 |1111 |30463 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51743 |1111 |30452 |0 |1 |2774A4|0 |2 |0 |
+ROW |51744 |1111 |30451 |0 |2 |F63100|0 |2 |0 |
+ROW |51745 |1111 |30437 |0 |3 |A54F10|0 |2 |0 |
+ROW |51746 |1112 |30456 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51747 |1112 |30457 |0 |1 |2774A4|0 |2 |0 |
+ROW |51748 |1112 |30458 |0 |2 |F63100|0 |2 |0 |
+ROW |51749 |1112 |30459 |0 |3 |A54F10|0 |2 |0 |
+ROW |51750 |1113 |30442 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51751 |1113 |30444 |0 |1 |2774A4|0 |2 |0 |
+ROW |51752 |1113 |30445 |0 |2 |F63100|0 |2 |0 |
+ROW |51753 |1114 |30446 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51754 |1114 |30447 |0 |1 |2774A4|0 |2 |0 |
+ROW |51755 |1114 |31168 |0 |2 |F63100|0 |2 |0 |
+ROW |51756 |1114 |30449 |0 |3 |A54F10|0 |2 |0 |
+ROW |51757 |1136 |30659 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51758 |1136 |30661 |5 |1 |2774A4|0 |2 |0 |
+ROW |51759 |1137 |30677 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51760 |1137 |30676 |0 |1 |2774A4|0 |2 |0 |
+ROW |51761 |1137 |30672 |0 |2 |F63100|0 |2 |0 |
+ROW |51762 |1137 |30647 |0 |3 |A54F10|0 |2 |0 |
+ROW |51763 |1138 |30669 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51764 |1138 |30658 |0 |1 |2774A4|0 |2 |0 |
+ROW |51765 |1138 |30657 |0 |2 |F63100|0 |2 |0 |
+ROW |51766 |1138 |30643 |0 |3 |A54F10|0 |2 |0 |
+ROW |51767 |1139 |30662 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51768 |1139 |30663 |0 |1 |2774A4|0 |2 |0 |
+ROW |51769 |1139 |30664 |0 |2 |F63100|0 |2 |0 |
+ROW |51770 |1139 |30665 |0 |3 |A54F10|0 |2 |0 |
+ROW |51771 |1140 |30648 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51772 |1140 |30650 |0 |1 |2774A4|0 |2 |0 |
+ROW |51773 |1140 |30651 |0 |2 |F63100|0 |2 |0 |
+ROW |51774 |1141 |30652 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51775 |1141 |30653 |0 |1 |2774A4|0 |2 |0 |
+ROW |51776 |1141 |31172 |0 |2 |F63100|0 |2 |0 |
+ROW |51777 |1141 |30655 |0 |3 |A54F10|0 |2 |0 |
+ROW |51778 |1115 |30506 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51779 |1115 |30507 |5 |1 |2774A4|0 |2 |0 |
+ROW |51780 |1116 |30504 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51781 |1116 |30505 |0 |1 |2774A4|0 |2 |0 |
+ROW |51782 |1116 |30518 |0 |2 |F63100|0 |2 |0 |
+ROW |51783 |1116 |30492 |0 |3 |A54F10|0 |2 |0 |
+ROW |51784 |1117 |30493 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51785 |1117 |30500 |0 |1 |2774A4|0 |2 |0 |
+ROW |51786 |1117 |30486 |0 |2 |F63100|0 |2 |0 |
+ROW |51787 |1117 |30488 |0 |3 |A54F10|0 |2 |0 |
+ROW |51788 |1118 |30508 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51789 |1118 |30509 |0 |1 |2774A4|0 |2 |0 |
+ROW |51790 |1118 |30503 |0 |2 |F63100|0 |2 |0 |
+ROW |51791 |1118 |30510 |0 |3 |A54F10|0 |2 |0 |
+ROW |51792 |1119 |30491 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51793 |1119 |30494 |0 |1 |2774A4|0 |2 |0 |
+ROW |51794 |1119 |30495 |0 |2 |F63100|0 |2 |0 |
+ROW |51795 |1120 |30496 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51796 |1120 |30497 |0 |1 |2774A4|0 |2 |0 |
+ROW |51797 |1120 |31176 |0 |2 |F63100|0 |2 |0 |
+ROW |51798 |1120 |30499 |0 |3 |A54F10|0 |2 |0 |
+ROW |51799 |1262 |31718 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51800 |1262 |31719 |0 |1 |2774A4|0 |2 |0 |
+ROW |51801 |1263 |31722 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51802 |1263 |31724 |0 |1 |2774A4|0 |2 |0 |
+ROW |51803 |1263 |32588 |0 |2 |F63100|0 |2 |0 |
+ROW |51804 |1264 |31630 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51805 |1264 |31683 |0 |1 |2774A4|0 |2 |0 |
+ROW |51806 |1265 |31668 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51807 |1265 |31702 |0 |1 |2774A4|0 |2 |0 |
+ROW |51808 |1265 |31666 |0 |2 |F63100|0 |2 |0 |
+ROW |51809 |1266 |31673 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51810 |1266 |31704 |0 |1 |2774A4|0 |2 |0 |
+ROW |51811 |1267 |31690 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51812 |1267 |31672 |0 |1 |2774A4|0 |2 |0 |
+ROW |51813 |1268 |31632 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51814 |1268 |31655 |0 |1 |2774A4|0 |2 |0 |
+ROW |51815 |1269 |31650 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51816 |1269 |31648 |0 |1 |2774A4|0 |2 |0 |
+ROW |51817 |1269 |31651 |0 |2 |F63100|0 |2 |0 |
+ROW |51818 |1269 |31646 |0 |3 |A54F10|0 |2 |0 |
+ROW |51819 |1269 |31653 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |51820 |1270 |31660 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51821 |1270 |31671 |0 |1 |2774A4|0 |2 |0 |
+ROW |51822 |1270 |31662 |0 |2 |F63100|0 |2 |0 |
+ROW |51823 |1270 |31661 |0 |3 |A54F10|0 |2 |0 |
+ROW |51824 |1270 |31659 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |51825 |1270 |31658 |0 |5 |6C59DC|0 |2 |0 |
+ROW |51826 |1237 |31442 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51827 |1237 |31443 |0 |1 |2774A4|0 |2 |0 |
+ROW |51828 |1238 |31786 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51829 |1238 |31451 |0 |1 |2774A4|0 |2 |0 |
+ROW |51830 |1238 |32590 |0 |2 |F63100|0 |2 |0 |
+ROW |51831 |1271 |31770 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51832 |1271 |31771 |0 |1 |2774A4|0 |2 |0 |
+ROW |51833 |1272 |31755 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51834 |1272 |31774 |0 |1 |2774A4|0 |2 |0 |
+ROW |51835 |1272 |31753 |0 |2 |F63100|0 |2 |0 |
+ROW |51836 |1273 |31730 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51837 |1273 |31759 |0 |1 |2774A4|0 |2 |0 |
+ROW |51838 |1274 |31745 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51839 |1274 |31758 |0 |1 |2774A4|0 |2 |0 |
+ROW |51840 |1275 |31731 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51841 |1275 |31732 |0 |1 |2774A4|0 |2 |0 |
+ROW |51842 |1276 |31739 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51843 |1276 |31736 |0 |1 |2774A4|0 |2 |0 |
+ROW |51844 |1276 |31740 |0 |2 |F63100|0 |2 |0 |
+ROW |51845 |1276 |31737 |0 |3 |A54F10|0 |2 |0 |
+ROW |51846 |1276 |31741 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |51847 |1277 |31746 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51848 |1277 |31747 |0 |1 |2774A4|0 |2 |0 |
+ROW |51849 |1277 |31749 |0 |2 |F63100|0 |2 |0 |
+ROW |51850 |1277 |31748 |0 |3 |A54F10|0 |2 |0 |
+ROW |51851 |1277 |31757 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |51852 |1277 |31744 |0 |5 |6C59DC|0 |2 |0 |
+ROW |51853 |814 |28730 |0 |0 |66BB6A|0 |2 |0 |
+ROW |51854 |814 |28728 |0 |1 |42A5F5|0 |2 |0 |
+ROW |51855 |815 |28712 |0 |0 |66BB6A|0 |2 |0 |
+ROW |51856 |816 |28733 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51857 |816 |28715 |0 |1 |F63100|0 |2 |0 |
+ROW |51858 |816 |28729 |0 |2 |2774A4|0 |2 |0 |
+ROW |51859 |816 |28732 |0 |3 |A54F10|0 |2 |0 |
+ROW |51860 |817 |28716 |0 |0 |EC407A|0 |2 |0 |
+ROW |51861 |818 |28726 |0 |0 |4CAF50|1 |2 |0 |
+ROW |51862 |818 |28723 |0 |1 |03A9F4|1 |2 |0 |
+ROW |51863 |818 |28720 |0 |2 |9C27B0|1 |2 |0 |
+ROW |51864 |818 |28725 |5 |3 |81C784|0 |2 |0 |
+ROW |51865 |818 |28722 |5 |4 |90CAF9|0 |2 |0 |
+ROW |51866 |818 |28719 |5 |5 |CE93D8|0 |2 |0 |
+ROW |51867 |819 |28727 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51868 |819 |28724 |0 |1 |F63100|0 |2 |0 |
+ROW |51869 |819 |28721 |0 |2 |2774A4|0 |2 |0 |
+ROW |51870 |820 |28740 |5 |0 |66BB6A|0 |2 |0 |
+ROW |51871 |820 |28739 |0 |1 |42A5F5|1 |2 |0 |
+ROW |51872 |821 |28738 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51873 |821 |28737 |0 |1 |F63100|0 |2 |0 |
+ROW |51874 |821 |28736 |0 |2 |2774A4|0 |2 |0 |
+ROW |51875 |821 |28735 |0 |3 |A54F10|0 |2 |0 |
+ROW |51876 |821 |28734 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |51877 |822 |28693 |0 |0 |1A7C11|1 |2 |0 |
+ROW |51878 |822 |28698 |0 |1 |F63100|1 |2 |0 |
+ROW |51879 |822 |28694 |0 |2 |2774A4|1 |2 |0 |
+ROW |51880 |822 |28697 |0 |3 |A54F10|1 |2 |0 |
+ROW |51881 |822 |28702 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |51882 |822 |28696 |0 |5 |6C59DC|0 |2 |0 |
+ROW |51883 |823 |28700 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51884 |823 |28699 |0 |1 |F63100|0 |2 |0 |
+ROW |51885 |823 |28701 |0 |2 |2774A4|1 |2 |0 |
+ROW |51886 |823 |28695 |0 |3 |A54F10|1 |2 |0 |
+ROW |51887 |824 |28708 |5 |0 |C8E6C9|1 |2 |0 |
+ROW |51888 |824 |28709 |0 |1 |6C59DC|0 |2 |0 |
+ROW |51889 |824 |28704 |0 |2 |1A7C11|1 |2 |0 |
+ROW |51890 |824 |28705 |0 |3 |F63100|1 |2 |0 |
+ROW |51891 |824 |28706 |0 |4 |2774A4|1 |2 |0 |
+ROW |51892 |824 |28707 |0 |5 |A54F10|1 |2 |0 |
+ROW |51893 |824 |28703 |0 |6 |AC8C14|1 |2 |0 |
+ROW |51894 |825 |28674 |5 |1 |A5D6A7|0 |2 |0 |
+ROW |51895 |825 |28673 |0 |2 |039BE5|1 |2 |0 |
+ROW |51896 |826 |28677 |0 |0 |42A5F5|0 |2 |0 |
+ROW |51897 |827 |28689 |0 |0 |1A7C11|1 |2 |0 |
+ROW |51898 |827 |28688 |0 |1 |F63100|1 |2 |0 |
+ROW |51899 |827 |28690 |0 |2 |2774A4|1 |2 |0 |
+ROW |51900 |827 |28691 |0 |3 |A54F10|1 |2 |0 |
+ROW |51901 |828 |28684 |0 |0 |66BB6A|0 |2 |0 |
+ROW |51902 |828 |28681 |0 |1 |03A9F4|1 |2 |0 |
+ROW |51903 |829 |28710 |0 |0 |29B6F6|0 |2 |0 |
+ROW |51904 |829 |28692 |0 |1 |AB47BC|1 |2 |0 |
+ROW |51905 |1210 |31269 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51906 |1210 |31252 |0 |1 |2774A4|0 |2 |0 |
+ROW |51907 |1210 |31251 |0 |2 |F63100|0 |2 |0 |
+ROW |51908 |1210 |31250 |0 |3 |A54F10|0 |2 |0 |
+ROW |51909 |1210 |31249 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |51910 |1210 |31248 |0 |5 |6C59DC|0 |2 |0 |
+ROW |51911 |1210 |31246 |0 |6 |AC8C14|0 |2 |0 |
+ROW |51912 |1210 |31245 |0 |7 |611F27|0 |2 |0 |
+ROW |51913 |1210 |31247 |0 |8 |F230E0|0 |2 |0 |
+ROW |51914 |1210 |31247 |0 |9 |FFAD40|0 |2 |0 |
+ROW |51915 |1211 |31243 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51916 |1212 |31266 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51917 |1212 |31265 |0 |1 |2774A4|0 |2 |0 |
+ROW |51918 |1212 |31263 |0 |2 |F63100|0 |2 |0 |
+ROW |51919 |1212 |31262 |0 |3 |A54F10|0 |2 |0 |
+ROW |51920 |1212 |31260 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |51921 |1212 |31259 |0 |5 |6C59DC|0 |2 |0 |
+ROW |51922 |1212 |31258 |0 |6 |AC8C14|0 |2 |0 |
+ROW |51923 |1212 |31256 |0 |7 |611F27|0 |2 |0 |
+ROW |51924 |1212 |31257 |0 |8 |F230E0|0 |2 |0 |
+ROW |51925 |1212 |31244 |0 |9 |FFAD40|0 |2 |0 |
+ROW |51926 |1212 |31255 |0 |10 |40CDFF|0 |2 |0 |
+ROW |51927 |1212 |31254 |0 |11 |40FFA0|0 |2 |0 |
+ROW |51928 |1212 |31253 |0 |12 |AE4500|0 |2 |0 |
+ROW |51929 |1213 |31242 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51930 |1386 |32598 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51931 |1386 |32599 |0 |1 |2774A4|0 |2 |0 |
+ROW |51932 |1386 |32600 |0 |2 |F63100|0 |2 |0 |
+ROW |51933 |1087 |30346 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51934 |1087 |30345 |0 |1 |2774A4|0 |2 |0 |
+ROW |51935 |1088 |30350 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51936 |1088 |30349 |5 |1 |2774A4|0 |2 |0 |
+ROW |51937 |1089 |30396 |2 |0 |1A7C11|0 |2 |0 |
+ROW |51938 |1090 |30398 |2 |0 |1A7C11|0 |2 |0 |
+ROW |51939 |1091 |30322 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51940 |1091 |30277 |5 |1 |2774A4|0 |2 |0 |
+ROW |51941 |1092 |30284 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51942 |1093 |30313 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51943 |1093 |30314 |0 |1 |2774A4|0 |2 |0 |
+ROW |51944 |1093 |30315 |5 |2 |F63100|0 |2 |0 |
+ROW |51945 |1093 |30316 |0 |3 |A54F10|0 |2 |0 |
+ROW |51946 |1094 |30279 |2 |0 |1A7C11|0 |2 |0 |
+ROW |51947 |1094 |30280 |2 |1 |2774A4|0 |2 |0 |
+ROW |51948 |1095 |30290 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51949 |1095 |30293 |0 |1 |2774A4|0 |2 |0 |
+ROW |51950 |1096 |30318 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51951 |1096 |30308 |2 |1 |2774A4|0 |2 |0 |
+ROW |51952 |1096 |30320 |2 |2 |F63100|0 |2 |0 |
+ROW |51953 |1097 |30317 |2 |0 |1A7C11|0 |2 |0 |
+ROW |51954 |1098 |30289 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51955 |1098 |30291 |5 |1 |2774A4|0 |2 |0 |
+ROW |51956 |1099 |30334 |2 |0 |1A7C11|0 |2 |0 |
+ROW |51957 |1099 |30325 |2 |1 |2774A4|0 |2 |0 |
+ROW |51958 |1100 |30306 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51959 |1101 |30274 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51960 |1102 |30281 |0 |0 |1A7C11|0 |2 |0 |
+ROW |51961 |1060 |30159 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51962 |1061 |30165 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51963 |1063 |30177 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51964 |1064 |30183 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51965 |1065 |30161 |0 |0 |969696|0 |9 |2 |
+ROW |51966 |1065 |30162 |0 |1 |C80000|0 |9 |0 |
+ROW |51967 |1066 |30167 |0 |0 |969696|0 |9 |2 |
+ROW |51968 |1066 |30168 |0 |1 |C80000|0 |9 |0 |
+ROW |51969 |1068 |30179 |0 |0 |969696|0 |9 |2 |
+ROW |51970 |1068 |30180 |0 |1 |C80000|0 |9 |0 |
+ROW |51971 |1069 |30185 |0 |0 |969696|0 |9 |2 |
+ROW |51972 |1069 |30186 |0 |1 |C80000|0 |9 |0 |
+ROW |51973 |1070 |30142 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51974 |1071 |30143 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51975 |1073 |30145 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51976 |1074 |30146 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51977 |741 |27084 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51978 |741 |27085 |2 |1 |2774A4|0 |2 |0 |
+ROW |51979 |741 |27083 |0 |2 |F63100|1 |2 |0 |
+ROW |51980 |741 |27086 |0 |3 |A54F10|1 |2 |0 |
+ROW |51981 |741 |27082 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |51982 |741 |27079 |0 |5 |6C59DC|1 |2 |0 |
+ROW |51983 |742 |27622 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51984 |742 |27625 |2 |1 |2774A4|0 |2 |0 |
+ROW |51985 |742 |27624 |0 |2 |F63100|1 |2 |0 |
+ROW |51986 |742 |27621 |0 |3 |A54F10|1 |2 |0 |
+ROW |51987 |742 |27623 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |51988 |742 |27620 |0 |5 |6C59DC|1 |2 |0 |
+ROW |51989 |743 |27979 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51990 |743 |27982 |2 |1 |2774A4|0 |2 |0 |
+ROW |51991 |743 |27981 |0 |2 |F63100|1 |2 |0 |
+ROW |51992 |743 |27978 |0 |3 |A54F10|1 |2 |0 |
+ROW |51993 |743 |27980 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |51994 |743 |27977 |0 |5 |6C59DC|1 |2 |0 |
+ROW |51995 |740 |28008 |5 |0 |1A7C11|0 |2 |0 |
+ROW |51996 |740 |28011 |2 |1 |2774A4|0 |2 |0 |
+ROW |51997 |740 |28010 |0 |2 |F63100|1 |2 |0 |
+ROW |51998 |740 |28007 |0 |3 |A54F10|1 |2 |0 |
+ROW |51999 |740 |28009 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52000 |740 |28006 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52001 |745 |27104 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52002 |745 |27105 |2 |1 |2774A4|0 |2 |0 |
+ROW |52003 |745 |27103 |0 |2 |F63100|1 |2 |0 |
+ROW |52004 |745 |27106 |0 |3 |A54F10|1 |2 |0 |
+ROW |52005 |745 |27102 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52006 |745 |27099 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52007 |746 |27183 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52008 |746 |27186 |2 |1 |2774A4|0 |2 |0 |
+ROW |52009 |746 |27185 |0 |2 |F63100|1 |2 |0 |
+ROW |52010 |746 |27182 |0 |3 |A54F10|1 |2 |0 |
+ROW |52011 |746 |27184 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52012 |746 |27181 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52013 |747 |27218 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52014 |747 |27221 |2 |1 |2774A4|0 |2 |0 |
+ROW |52015 |747 |27220 |0 |2 |F63100|1 |2 |0 |
+ROW |52016 |747 |27217 |0 |3 |A54F10|1 |2 |0 |
+ROW |52017 |747 |27219 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52018 |747 |27216 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52019 |748 |27254 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52020 |748 |27257 |2 |1 |2774A4|0 |2 |0 |
+ROW |52021 |748 |27256 |0 |2 |F63100|1 |2 |0 |
+ROW |52022 |748 |27253 |0 |3 |A54F10|1 |2 |0 |
+ROW |52023 |748 |27255 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52024 |748 |27252 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52025 |749 |27275 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52026 |749 |27278 |2 |1 |2774A4|0 |2 |0 |
+ROW |52027 |749 |27277 |0 |2 |F63100|1 |2 |0 |
+ROW |52028 |749 |27274 |0 |3 |A54F10|1 |2 |0 |
+ROW |52029 |749 |27276 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52030 |749 |27273 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52031 |750 |27324 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52032 |750 |27327 |2 |1 |2774A4|0 |2 |0 |
+ROW |52033 |750 |27326 |0 |2 |F63100|1 |2 |0 |
+ROW |52034 |750 |27323 |0 |3 |A54F10|1 |2 |0 |
+ROW |52035 |750 |27325 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52036 |750 |27322 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52037 |752 |27453 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52038 |752 |27456 |2 |1 |2774A4|0 |2 |0 |
+ROW |52039 |752 |27455 |0 |2 |F63100|1 |2 |0 |
+ROW |52040 |752 |27452 |0 |3 |A54F10|1 |2 |0 |
+ROW |52041 |752 |27454 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52042 |752 |27451 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52043 |753 |27489 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52044 |753 |27492 |2 |1 |2774A4|0 |2 |0 |
+ROW |52045 |753 |27491 |0 |2 |F63100|1 |2 |0 |
+ROW |52046 |753 |27488 |0 |3 |A54F10|1 |2 |0 |
+ROW |52047 |753 |27490 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52048 |753 |27487 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52049 |754 |27523 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52050 |754 |27526 |2 |1 |2774A4|0 |2 |0 |
+ROW |52051 |754 |27525 |0 |2 |F63100|1 |2 |0 |
+ROW |52052 |754 |27522 |0 |3 |A54F10|1 |2 |0 |
+ROW |52053 |754 |27524 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52054 |754 |27521 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52055 |755 |27559 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52056 |755 |27562 |2 |1 |2774A4|0 |2 |0 |
+ROW |52057 |755 |27561 |0 |2 |F63100|1 |2 |0 |
+ROW |52058 |755 |27558 |0 |3 |A54F10|1 |2 |0 |
+ROW |52059 |755 |27560 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52060 |755 |27557 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52061 |756 |27645 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52062 |756 |27648 |2 |1 |2774A4|0 |2 |0 |
+ROW |52063 |756 |27647 |0 |2 |F63100|1 |2 |0 |
+ROW |52064 |756 |27644 |0 |3 |A54F10|1 |2 |0 |
+ROW |52065 |756 |27646 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52066 |756 |27643 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52067 |758 |27725 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52068 |758 |27728 |2 |1 |2774A4|0 |2 |0 |
+ROW |52069 |758 |27727 |0 |2 |F63100|1 |2 |0 |
+ROW |52070 |758 |27724 |0 |3 |A54F10|1 |2 |0 |
+ROW |52071 |758 |27726 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52072 |758 |27723 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52073 |759 |27759 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52074 |759 |27762 |2 |1 |2774A4|0 |2 |0 |
+ROW |52075 |759 |27761 |0 |2 |F63100|1 |2 |0 |
+ROW |52076 |759 |27758 |0 |3 |A54F10|1 |2 |0 |
+ROW |52077 |759 |27760 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52078 |759 |27757 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52079 |760 |27791 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52080 |760 |27794 |2 |1 |2774A4|0 |2 |0 |
+ROW |52081 |760 |27793 |0 |2 |F63100|1 |2 |0 |
+ROW |52082 |760 |27790 |0 |3 |A54F10|1 |2 |0 |
+ROW |52083 |760 |27792 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52084 |760 |27789 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52085 |762 |27875 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52086 |762 |27878 |2 |1 |2774A4|0 |2 |0 |
+ROW |52087 |762 |27877 |0 |2 |F63100|1 |2 |0 |
+ROW |52088 |762 |27874 |0 |3 |A54F10|1 |2 |0 |
+ROW |52089 |762 |27876 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52090 |762 |27873 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52091 |763 |27912 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52092 |763 |27915 |2 |1 |2774A4|0 |2 |0 |
+ROW |52093 |763 |27914 |0 |2 |F63100|1 |2 |0 |
+ROW |52094 |763 |27911 |0 |3 |A54F10|1 |2 |0 |
+ROW |52095 |763 |27913 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52096 |763 |27910 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52097 |764 |27947 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52098 |764 |27950 |2 |1 |2774A4|0 |2 |0 |
+ROW |52099 |764 |27949 |0 |2 |F63100|1 |2 |0 |
+ROW |52100 |764 |27946 |0 |3 |A54F10|1 |2 |0 |
+ROW |52101 |764 |27948 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52102 |764 |27945 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52103 |773 |28121 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52104 |773 |28124 |2 |1 |2774A4|0 |2 |0 |
+ROW |52105 |773 |28123 |0 |2 |F63100|1 |2 |0 |
+ROW |52106 |773 |28120 |0 |3 |A54F10|1 |2 |0 |
+ROW |52107 |773 |28122 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52108 |773 |28119 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52109 |785 |28226 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52110 |785 |28229 |2 |1 |2774A4|0 |2 |0 |
+ROW |52111 |785 |28228 |0 |2 |F63100|1 |2 |0 |
+ROW |52112 |785 |28225 |0 |3 |A54F10|1 |2 |0 |
+ROW |52113 |785 |28227 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52114 |785 |28224 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52115 |790 |28296 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52116 |790 |28299 |2 |1 |2774A4|0 |2 |0 |
+ROW |52117 |790 |28298 |0 |2 |F63100|1 |2 |0 |
+ROW |52118 |790 |28295 |0 |3 |A54F10|1 |2 |0 |
+ROW |52119 |790 |28297 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52120 |790 |28294 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52121 |865 |28971 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52122 |865 |28974 |2 |1 |2774A4|0 |2 |0 |
+ROW |52123 |865 |28973 |0 |2 |F63100|1 |2 |0 |
+ROW |52124 |865 |28970 |0 |3 |A54F10|1 |2 |0 |
+ROW |52125 |865 |28972 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52126 |865 |28969 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52127 |766 |27124 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52128 |766 |27125 |2 |1 |2774A4|0 |2 |0 |
+ROW |52129 |766 |27123 |0 |2 |F63100|1 |2 |0 |
+ROW |52130 |766 |27126 |0 |3 |A54F10|1 |2 |0 |
+ROW |52131 |766 |27122 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52132 |766 |27119 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52133 |886 |29080 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52134 |886 |29083 |2 |1 |2774A4|0 |2 |0 |
+ROW |52135 |886 |29082 |0 |2 |F63100|1 |2 |0 |
+ROW |52136 |886 |29079 |0 |3 |A54F10|1 |2 |0 |
+ROW |52137 |886 |29081 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52138 |886 |29078 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52139 |668 |27208 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52140 |1032 |30088 |2 |0 |1A7C11|0 |2 |0 |
+ROW |52141 |1032 |30087 |5 |1 |2774A4|0 |2 |0 |
+ROW |52142 |1033 |30089 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52143 |671 |27240 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52144 |1034 |30093 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52145 |675 |27294 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52146 |676 |27299 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52147 |677 |27301 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52148 |1035 |30094 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52149 |1036 |30095 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52150 |1037 |30096 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52151 |1461 |33219 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52152 |1462 |33224 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52153 |1463 |33227 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52154 |1463 |33230 |2 |1 |2774A4|0 |2 |0 |
+ROW |52155 |1463 |33229 |0 |2 |F63100|1 |2 |0 |
+ROW |52156 |1463 |33226 |0 |3 |A54F10|1 |2 |0 |
+ROW |52157 |1463 |33228 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52158 |1463 |33225 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52159 |1464 |33260 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52160 |1465 |33265 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52161 |1466 |33268 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52162 |1466 |33271 |2 |1 |2774A4|0 |2 |0 |
+ROW |52163 |1466 |33270 |0 |2 |F63100|1 |2 |0 |
+ROW |52164 |1466 |33267 |0 |3 |A54F10|1 |2 |0 |
+ROW |52165 |1466 |33269 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52166 |1466 |33266 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52167 |1467 |33301 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52168 |1468 |33306 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52169 |1469 |33309 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52170 |1469 |33312 |2 |1 |2774A4|0 |2 |0 |
+ROW |52171 |1469 |33311 |0 |2 |F63100|1 |2 |0 |
+ROW |52172 |1469 |33308 |0 |3 |A54F10|1 |2 |0 |
+ROW |52173 |1469 |33310 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52174 |1469 |33307 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52175 |1470 |33342 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52176 |1471 |33347 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52177 |1472 |33350 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52178 |1472 |33353 |2 |1 |2774A4|0 |2 |0 |
+ROW |52179 |1472 |33352 |0 |2 |F63100|1 |2 |0 |
+ROW |52180 |1472 |33349 |0 |3 |A54F10|1 |2 |0 |
+ROW |52181 |1472 |33351 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52182 |1472 |33348 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52183 |1473 |33383 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52184 |1474 |33388 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52185 |1475 |33391 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52186 |1475 |33394 |2 |1 |2774A4|0 |2 |0 |
+ROW |52187 |1475 |33393 |0 |2 |F63100|1 |2 |0 |
+ROW |52188 |1475 |33390 |0 |3 |A54F10|1 |2 |0 |
+ROW |52189 |1475 |33392 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52190 |1475 |33389 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52191 |1038 |30101 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52192 |1039 |30102 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52193 |1040 |30103 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52194 |1041 |30104 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52195 |786 |28246 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52196 |787 |28247 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52197 |687 |27417 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52198 |688 |27427 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52199 |691 |27376 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52200 |692 |27380 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52201 |694 |27478 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52202 |1042 |30105 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52203 |1043 |30107 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52204 |698 |27511 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52205 |1044 |30108 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52206 |701 |27547 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52207 |1045 |27591 |2 |0 |1A7C11|0 |2 |0 |
+ROW |52208 |1045 |30110 |5 |1 |2774A4|0 |2 |0 |
+ROW |52209 |1046 |30111 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52210 |704 |27586 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52211 |708 |27671 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52212 |1047 |30112 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52213 |1048 |30114 |2 |0 |1A7C11|0 |2 |0 |
+ROW |52214 |1048 |30113 |5 |1 |2774A4|0 |2 |0 |
+ROW |52215 |1049 |30115 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52216 |775 |28143 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52217 |714 |27753 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52218 |1050 |30116 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52219 |856 |28894 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52220 |1051 |30118 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52221 |1476 |33419 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52222 |1476 |33422 |2 |1 |2774A4|0 |2 |0 |
+ROW |52223 |1476 |33421 |0 |2 |F63100|1 |2 |0 |
+ROW |52224 |1476 |33418 |0 |3 |A54F10|1 |2 |0 |
+ROW |52225 |1476 |33420 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52226 |1476 |33417 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52227 |1477 |33427 |0 |0 |969696|0 |9 |2 |
+ROW |52228 |1477 |33428 |0 |1 |C80000|0 |9 |0 |
+ROW |52229 |1478 |33431 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52230 |1479 |33407 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52231 |724 |27904 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52232 |1299 |31968 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52233 |1299 |31966 |0 |1 |2774A4|0 |2 |0 |
+ROW |52234 |1299 |31965 |0 |2 |F63100|0 |2 |0 |
+ROW |52235 |1299 |31967 |0 |3 |A54F10|0 |2 |0 |
+ROW |52236 |1052 |27907 |0 |0 |969696|0 |9 |2 |
+ROW |52237 |1052 |27908 |0 |1 |C80000|0 |9 |0 |
+ROW |52238 |1053 |30120 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52239 |1335 |32330 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52240 |1335 |32317 |5 |1 |2774A4|0 |2 |0 |
+ROW |52241 |1336 |32319 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52242 |1336 |32327 |5 |1 |2774A4|0 |2 |0 |
+ROW |52243 |1336 |32326 |5 |2 |F63100|0 |2 |0 |
+ROW |52244 |1337 |32324 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52245 |1337 |32318 |5 |1 |2774A4|0 |2 |0 |
+ROW |52246 |1338 |32311 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52247 |1338 |32310 |5 |1 |2774A4|0 |2 |0 |
+ROW |52248 |1338 |32328 |5 |2 |F63100|0 |2 |0 |
+ROW |52249 |1339 |32350 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52250 |1339 |32339 |5 |1 |2774A4|0 |2 |0 |
+ROW |52251 |1340 |32331 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52252 |1341 |32347 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52253 |1341 |32342 |5 |1 |2774A4|0 |2 |0 |
+ROW |52254 |1342 |32334 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52255 |1342 |32333 |5 |1 |2774A4|0 |2 |0 |
+ROW |52256 |1342 |32348 |5 |2 |F63100|0 |2 |0 |
+ROW |52257 |1343 |32373 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52258 |1343 |32360 |5 |1 |2774A4|0 |2 |0 |
+ROW |52259 |1344 |32362 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52260 |1344 |32370 |5 |1 |2774A4|0 |2 |0 |
+ROW |52261 |1344 |32369 |5 |2 |F63100|0 |2 |0 |
+ROW |52262 |1345 |32367 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52263 |1345 |32361 |5 |1 |2774A4|0 |2 |0 |
+ROW |52264 |1346 |32354 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52265 |1346 |32353 |5 |1 |2774A4|0 |2 |0 |
+ROW |52266 |1346 |32371 |5 |2 |F63100|0 |2 |0 |
+ROW |52267 |1347 |32382 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52268 |1348 |32375 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52269 |1349 |32380 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52270 |1350 |32401 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52271 |1351 |32398 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52272 |1351 |32397 |5 |1 |2774A4|0 |2 |0 |
+ROW |52273 |1351 |32396 |5 |2 |F63100|0 |2 |0 |
+ROW |52274 |1352 |32394 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52275 |1353 |32393 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52276 |1354 |32385 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52277 |1354 |32399 |5 |1 |2774A4|0 |2 |0 |
+ROW |52278 |1355 |32420 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52279 |1356 |32417 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52280 |1356 |32416 |5 |1 |2774A4|0 |2 |0 |
+ROW |52281 |1356 |32415 |5 |2 |F63100|0 |2 |0 |
+ROW |52282 |1357 |32413 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52283 |1358 |32412 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52284 |1359 |32404 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52285 |1359 |32418 |5 |1 |2774A4|0 |2 |0 |
+ROW |52286 |1360 |32436 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52287 |1361 |32439 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52288 |1362 |32440 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52289 |1363 |32442 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52290 |1364 |32443 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52291 |1365 |32428 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52292 |1365 |32429 |5 |1 |2774A4|0 |2 |0 |
+ROW |52293 |727 |27936 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52294 |1054 |27935 |2 |0 |1A7C11|0 |2 |0 |
+ROW |52295 |1054 |30122 |5 |1 |2774A4|0 |2 |0 |
+ROW |52296 |1055 |30123 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52297 |730 |27975 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52298 |1056 |30126 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52299 |733 |28003 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52300 |1057 |30131 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52301 |736 |28031 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52302 |1058 |30136 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52303 |1214 |31276 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52304 |1214 |31277 |5 |1 |2774A4|0 |2 |0 |
+ROW |52305 |1215 |31279 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52306 |1215 |31280 |5 |1 |2774A4|0 |2 |0 |
+ROW |52307 |1216 |31282 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52308 |1216 |31283 |5 |1 |2774A4|0 |2 |0 |
+ROW |52309 |1217 |31286 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52310 |1217 |31289 |5 |1 |2774A4|0 |2 |0 |
+ROW |52311 |1218 |31292 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52312 |1218 |31295 |5 |1 |2774A4|0 |2 |0 |
+ROW |52313 |1219 |31298 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52314 |1219 |31301 |5 |1 |2774A4|0 |2 |0 |
+ROW |52315 |1220 |31285 |0 |0 |1A7C11|1 |2 |0 |
+ROW |52316 |1220 |31288 |5 |1 |2774A4|0 |2 |0 |
+ROW |52317 |1221 |31291 |0 |0 |1A7C11|1 |2 |0 |
+ROW |52318 |1221 |31294 |5 |1 |2774A4|0 |2 |0 |
+ROW |52319 |1222 |31297 |0 |0 |1A7C11|1 |2 |0 |
+ROW |52320 |1222 |31300 |5 |1 |2774A4|0 |2 |0 |
+ROW |52321 |887 |29211 |0 |0 |969696|0 |9 |2 |
+ROW |52322 |887 |29210 |0 |1 |C80000|0 |9 |0 |
+ROW |52323 |888 |29225 |0 |0 |969696|0 |9 |2 |
+ROW |52324 |888 |29224 |0 |1 |C80000|0 |9 |0 |
+ROW |52325 |889 |29239 |0 |0 |969696|0 |9 |2 |
+ROW |52326 |889 |29238 |0 |1 |C80000|0 |9 |0 |
+ROW |52327 |899 |29216 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52328 |899 |29217 |2 |1 |2774A4|0 |2 |0 |
+ROW |52329 |899 |29218 |0 |2 |F63100|1 |2 |0 |
+ROW |52330 |899 |29219 |0 |3 |A54F10|1 |2 |0 |
+ROW |52331 |899 |29220 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52332 |899 |29221 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52333 |900 |29230 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52334 |900 |29231 |2 |1 |2774A4|0 |2 |0 |
+ROW |52335 |900 |29232 |0 |2 |F63100|1 |2 |0 |
+ROW |52336 |900 |29233 |0 |3 |A54F10|1 |2 |0 |
+ROW |52337 |900 |29234 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52338 |900 |29235 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52339 |901 |29244 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52340 |901 |29245 |2 |1 |2774A4|0 |2 |0 |
+ROW |52341 |901 |29246 |0 |2 |F63100|1 |2 |0 |
+ROW |52342 |901 |29247 |0 |3 |A54F10|1 |2 |0 |
+ROW |52343 |901 |29248 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52344 |901 |29249 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52345 |911 |29089 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52346 |911 |29102 |0 |1 |2774A4|0 |2 |0 |
+ROW |52347 |912 |29126 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52348 |912 |29139 |0 |1 |2774A4|0 |2 |0 |
+ROW |52349 |913 |29163 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52350 |913 |29176 |0 |1 |2774A4|0 |2 |0 |
+ROW |52351 |908 |29098 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52352 |908 |29097 |0 |1 |2774A4|0 |2 |0 |
+ROW |52353 |908 |29095 |0 |2 |F63100|0 |2 |0 |
+ROW |52354 |908 |29088 |0 |3 |A54F10|0 |2 |0 |
+ROW |52355 |908 |29094 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |52356 |908 |29093 |0 |5 |6C59DC|0 |2 |0 |
+ROW |52357 |908 |29092 |0 |6 |AC8C14|0 |2 |0 |
+ROW |52358 |908 |29091 |0 |7 |611F27|0 |2 |0 |
+ROW |52359 |908 |29090 |0 |8 |F230E0|0 |2 |0 |
+ROW |52360 |909 |29135 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52361 |909 |29134 |0 |1 |2774A4|0 |2 |0 |
+ROW |52362 |909 |29132 |0 |2 |F63100|0 |2 |0 |
+ROW |52363 |909 |29125 |0 |3 |A54F10|0 |2 |0 |
+ROW |52364 |909 |29131 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |52365 |909 |29130 |0 |5 |6C59DC|0 |2 |0 |
+ROW |52366 |909 |29129 |0 |6 |AC8C14|0 |2 |0 |
+ROW |52367 |909 |29128 |0 |7 |611F27|0 |2 |0 |
+ROW |52368 |909 |29127 |0 |8 |F230E0|0 |2 |0 |
+ROW |52369 |910 |29172 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52370 |910 |29171 |0 |1 |2774A4|0 |2 |0 |
+ROW |52371 |910 |29169 |0 |2 |F63100|0 |2 |0 |
+ROW |52372 |910 |29162 |0 |3 |A54F10|0 |2 |0 |
+ROW |52373 |910 |29168 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |52374 |910 |29167 |0 |5 |6C59DC|0 |2 |0 |
+ROW |52375 |910 |29166 |0 |6 |AC8C14|0 |2 |0 |
+ROW |52376 |910 |29165 |0 |7 |611F27|0 |2 |0 |
+ROW |52377 |910 |29164 |0 |8 |F230E0|0 |2 |0 |
+ROW |52378 |905 |29198 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52379 |906 |29199 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52380 |907 |29200 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52381 |917 |29104 |2 |0 |1A7C11|0 |2 |0 |
+ROW |52382 |917 |29105 |5 |1 |2774A4|0 |2 |0 |
+ROW |52383 |918 |29141 |2 |0 |1A7C11|0 |2 |0 |
+ROW |52384 |918 |29142 |5 |1 |2774A4|0 |2 |0 |
+ROW |52385 |919 |29178 |2 |0 |1A7C11|0 |2 |0 |
+ROW |52386 |919 |29179 |5 |1 |2774A4|0 |2 |0 |
+ROW |52387 |914 |31270 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52388 |915 |31271 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52389 |916 |31272 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52390 |923 |29118 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52391 |923 |29119 |0 |1 |2774A4|0 |2 |0 |
+ROW |52392 |923 |29117 |0 |2 |F63100|0 |2 |0 |
+ROW |52393 |924 |29155 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52394 |924 |29156 |0 |1 |2774A4|0 |2 |0 |
+ROW |52395 |924 |29154 |0 |2 |F63100|0 |2 |0 |
+ROW |52396 |925 |29192 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52397 |925 |29193 |0 |1 |2774A4|0 |2 |0 |
+ROW |52398 |925 |29191 |0 |2 |F63100|0 |2 |0 |
+ROW |52399 |920 |29107 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52400 |920 |29106 |0 |1 |2774A4|0 |2 |0 |
+ROW |52401 |921 |29144 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52402 |921 |29143 |0 |1 |2774A4|0 |2 |0 |
+ROW |52403 |922 |29181 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52404 |922 |29180 |0 |1 |2774A4|0 |2 |0 |
+ROW |52405 |902 |29096 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52406 |902 |29101 |0 |1 |2774A4|0 |2 |0 |
+ROW |52407 |902 |29100 |0 |2 |F63100|0 |2 |0 |
+ROW |52408 |902 |29087 |0 |3 |A54F10|1 |2 |0 |
+ROW |52409 |903 |29133 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52410 |903 |29138 |0 |1 |2774A4|0 |2 |0 |
+ROW |52411 |903 |29137 |0 |2 |F63100|0 |2 |0 |
+ROW |52412 |903 |29124 |0 |3 |A54F10|1 |2 |0 |
+ROW |52413 |904 |29170 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52414 |904 |29175 |0 |1 |2774A4|0 |2 |0 |
+ROW |52415 |904 |29174 |0 |2 |F63100|0 |2 |0 |
+ROW |52416 |904 |29161 |0 |3 |A54F10|1 |2 |0 |
+ROW |52417 |1223 |31307 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52418 |1223 |31308 |5 |1 |2774A4|0 |2 |0 |
+ROW |52419 |1224 |31310 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52420 |1224 |31311 |5 |1 |2774A4|0 |2 |0 |
+ROW |52421 |1225 |31314 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52422 |1225 |31317 |5 |1 |2774A4|0 |2 |0 |
+ROW |52423 |1226 |31320 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52424 |1226 |31323 |5 |1 |2774A4|0 |2 |0 |
+ROW |52425 |1227 |31313 |0 |0 |1A7C11|1 |2 |0 |
+ROW |52426 |1227 |31316 |5 |1 |2774A4|0 |2 |0 |
+ROW |52427 |1228 |31319 |0 |0 |1A7C11|1 |2 |0 |
+ROW |52428 |1228 |31322 |5 |1 |2774A4|0 |2 |0 |
+ROW |52429 |926 |29356 |0 |0 |969696|0 |9 |2 |
+ROW |52430 |926 |29355 |0 |1 |C80000|0 |9 |0 |
+ROW |52431 |927 |29370 |0 |0 |969696|0 |9 |2 |
+ROW |52432 |927 |29369 |0 |1 |C80000|0 |9 |0 |
+ROW |52433 |934 |29361 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52434 |934 |29362 |2 |1 |2774A4|0 |2 |0 |
+ROW |52435 |934 |29363 |0 |2 |F63100|1 |2 |0 |
+ROW |52436 |934 |29364 |0 |3 |A54F10|1 |2 |0 |
+ROW |52437 |934 |29365 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52438 |934 |29366 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52439 |935 |29375 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52440 |935 |29376 |2 |1 |2774A4|0 |2 |0 |
+ROW |52441 |935 |29377 |0 |2 |F63100|1 |2 |0 |
+ROW |52442 |935 |29378 |0 |3 |A54F10|1 |2 |0 |
+ROW |52443 |935 |29379 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52444 |935 |29380 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52445 |942 |29275 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52446 |942 |29288 |0 |1 |2774A4|0 |2 |0 |
+ROW |52447 |943 |29312 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52448 |943 |29325 |0 |1 |2774A4|0 |2 |0 |
+ROW |52449 |940 |29284 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52450 |940 |29283 |0 |1 |2774A4|0 |2 |0 |
+ROW |52451 |940 |29281 |0 |2 |F63100|0 |2 |0 |
+ROW |52452 |940 |29274 |0 |3 |A54F10|0 |2 |0 |
+ROW |52453 |940 |29280 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |52454 |940 |29279 |0 |5 |6C59DC|0 |2 |0 |
+ROW |52455 |940 |29278 |0 |6 |AC8C14|0 |2 |0 |
+ROW |52456 |940 |29277 |0 |7 |611F27|0 |2 |0 |
+ROW |52457 |940 |29276 |0 |8 |F230E0|0 |2 |0 |
+ROW |52458 |941 |29321 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52459 |941 |29320 |0 |1 |2774A4|0 |2 |0 |
+ROW |52460 |941 |29318 |0 |2 |F63100|0 |2 |0 |
+ROW |52461 |941 |29311 |0 |3 |A54F10|0 |2 |0 |
+ROW |52462 |941 |29317 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |52463 |941 |29316 |0 |5 |6C59DC|0 |2 |0 |
+ROW |52464 |941 |29315 |0 |6 |AC8C14|0 |2 |0 |
+ROW |52465 |941 |29314 |0 |7 |611F27|0 |2 |0 |
+ROW |52466 |941 |29313 |0 |8 |F230E0|0 |2 |0 |
+ROW |52467 |938 |29347 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52468 |939 |29348 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52469 |946 |29290 |2 |0 |1A7C11|0 |2 |0 |
+ROW |52470 |946 |29291 |5 |1 |2774A4|0 |2 |0 |
+ROW |52471 |947 |29327 |2 |0 |1A7C11|0 |2 |0 |
+ROW |52472 |947 |29328 |5 |1 |2774A4|0 |2 |0 |
+ROW |52473 |944 |31303 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52474 |945 |31304 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52475 |950 |29304 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52476 |950 |29305 |0 |1 |2774A4|0 |2 |0 |
+ROW |52477 |950 |29303 |0 |2 |F63100|0 |2 |0 |
+ROW |52478 |951 |29341 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52479 |951 |29342 |0 |1 |2774A4|0 |2 |0 |
+ROW |52480 |951 |29340 |0 |2 |F63100|0 |2 |0 |
+ROW |52481 |948 |29293 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52482 |948 |29292 |0 |1 |2774A4|0 |2 |0 |
+ROW |52483 |949 |29330 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52484 |949 |29329 |0 |1 |2774A4|0 |2 |0 |
+ROW |52485 |936 |29282 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52486 |936 |29287 |0 |1 |2774A4|0 |2 |0 |
+ROW |52487 |936 |29286 |0 |2 |F63100|0 |2 |0 |
+ROW |52488 |936 |29273 |0 |3 |A54F10|1 |2 |0 |
+ROW |52489 |937 |29319 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52490 |937 |29324 |0 |1 |2774A4|0 |2 |0 |
+ROW |52491 |937 |29323 |0 |2 |F63100|0 |2 |0 |
+ROW |52492 |937 |29310 |0 |3 |A54F10|1 |2 |0 |
+ROW |52493 |952 |29436 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52494 |952 |29437 |2 |1 |2774A4|0 |2 |0 |
+ROW |52495 |952 |29438 |0 |2 |F63100|1 |2 |0 |
+ROW |52496 |952 |29439 |0 |3 |A54F10|1 |2 |0 |
+ROW |52497 |952 |29441 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52498 |952 |29440 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52499 |955 |29434 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52500 |955 |29435 |5 |1 |2774A4|0 |2 |0 |
+ROW |52501 |954 |29448 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52502 |954 |29449 |5 |1 |2774A4|0 |2 |0 |
+ROW |52503 |956 |29452 |0 |0 |1A7C11|1 |2 |0 |
+ROW |52504 |956 |29453 |5 |1 |2774A4|0 |2 |0 |
+ROW |52505 |953 |29446 |0 |0 |969696|0 |9 |2 |
+ROW |52506 |953 |29432 |0 |1 |C80000|0 |9 |0 |
+ROW |52507 |960 |29405 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52508 |960 |29406 |0 |1 |2774A4|0 |2 |0 |
+ROW |52509 |959 |29426 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52510 |959 |29413 |0 |1 |2774A4|0 |2 |0 |
+ROW |52511 |959 |29411 |0 |2 |F63100|0 |2 |0 |
+ROW |52512 |959 |29410 |0 |3 |A54F10|0 |2 |0 |
+ROW |52513 |959 |29399 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |52514 |959 |29409 |0 |5 |6C59DC|0 |2 |0 |
+ROW |52515 |959 |29412 |0 |6 |AC8C14|0 |2 |0 |
+ROW |52516 |959 |29408 |0 |7 |611F27|0 |2 |0 |
+ROW |52517 |959 |29407 |0 |8 |F230E0|0 |2 |0 |
+ROW |52518 |958 |29427 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52519 |962 |29403 |2 |0 |1A7C11|0 |2 |0 |
+ROW |52520 |962 |29402 |5 |1 |2774A4|0 |2 |0 |
+ROW |52521 |961 |29396 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52522 |963 |29400 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52523 |963 |29401 |0 |1 |2774A4|0 |2 |0 |
+ROW |52524 |957 |29420 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52525 |957 |29419 |0 |1 |2774A4|0 |2 |0 |
+ROW |52526 |957 |29418 |0 |2 |F63100|0 |2 |0 |
+ROW |52527 |957 |29417 |0 |3 |A54F10|1 |2 |0 |
+ROW |52528 |866 |29014 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52529 |866 |29015 |5 |1 |2774A4|0 |2 |0 |
+ROW |52530 |867 |29031 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52531 |867 |29032 |5 |1 |2774A4|0 |2 |0 |
+ROW |52532 |868 |29018 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52533 |868 |29019 |0 |1 |2774A4|0 |2 |0 |
+ROW |52534 |868 |29022 |0 |2 |F63100|0 |2 |0 |
+ROW |52535 |868 |29023 |0 |3 |A54F10|0 |2 |0 |
+ROW |52536 |868 |29020 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |52537 |868 |29024 |0 |5 |6C59DC|0 |2 |0 |
+ROW |52538 |868 |29021 |0 |6 |AC8C14|0 |2 |0 |
+ROW |52539 |868 |29025 |0 |7 |611F27|0 |2 |0 |
+ROW |52540 |868 |29026 |0 |8 |F230E0|0 |2 |0 |
+ROW |52541 |869 |29035 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52542 |869 |29036 |0 |1 |2774A4|0 |2 |0 |
+ROW |52543 |869 |29039 |0 |2 |F63100|0 |2 |0 |
+ROW |52544 |869 |29040 |0 |3 |A54F10|0 |2 |0 |
+ROW |52545 |869 |29037 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |52546 |869 |29041 |0 |5 |6C59DC|0 |2 |0 |
+ROW |52547 |869 |29038 |0 |6 |AC8C14|0 |2 |0 |
+ROW |52548 |869 |29042 |0 |7 |611F27|0 |2 |0 |
+ROW |52549 |869 |29043 |0 |8 |F230E0|0 |2 |0 |
+ROW |52550 |870 |29048 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52551 |871 |29049 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52552 |872 |29028 |0 |0 |969696|0 |9 |2 |
+ROW |52553 |872 |29027 |0 |1 |C80000|0 |9 |0 |
+ROW |52554 |873 |29045 |0 |0 |969696|0 |9 |2 |
+ROW |52555 |873 |29044 |0 |1 |C80000|0 |9 |0 |
+ROW |52556 |882 |28992 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52557 |882 |28991 |0 |1 |2774A4|0 |2 |0 |
+ROW |52558 |883 |29007 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52559 |883 |29006 |0 |1 |2774A4|0 |2 |0 |
+ROW |52560 |876 |28982 |2 |0 |1A7C11|0 |2 |0 |
+ROW |52561 |876 |28983 |5 |1 |2774A4|0 |2 |0 |
+ROW |52562 |877 |28997 |2 |0 |1A7C11|0 |2 |0 |
+ROW |52563 |877 |28998 |5 |1 |2774A4|0 |2 |0 |
+ROW |52564 |874 |28978 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52565 |875 |28993 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52566 |878 |28985 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52567 |878 |28984 |0 |1 |2774A4|0 |2 |0 |
+ROW |52568 |879 |29000 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52569 |879 |28999 |0 |1 |2774A4|0 |2 |0 |
+ROW |52570 |880 |28987 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52571 |880 |28988 |0 |1 |2774A4|0 |2 |0 |
+ROW |52572 |880 |28989 |0 |2 |F63100|0 |2 |0 |
+ROW |52573 |880 |28990 |0 |3 |A54F10|1 |2 |0 |
+ROW |52574 |881 |29002 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52575 |881 |29003 |0 |1 |2774A4|0 |2 |0 |
+ROW |52576 |881 |29004 |0 |2 |F63100|0 |2 |0 |
+ROW |52577 |881 |29005 |0 |3 |A54F10|1 |2 |0 |
+ROW |52578 |964 |29513 |0 |0 |969696|0 |9 |2 |
+ROW |52579 |964 |29512 |0 |1 |C80000|0 |9 |0 |
+ROW |52580 |965 |29522 |0 |0 |969696|0 |9 |2 |
+ROW |52581 |965 |29521 |0 |1 |C80000|0 |9 |0 |
+ROW |52582 |1246 |31461 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52583 |1246 |31464 |2 |1 |2774A4|0 |2 |0 |
+ROW |52584 |1246 |31463 |0 |2 |F63100|1 |2 |0 |
+ROW |52585 |1246 |31460 |0 |3 |A54F10|1 |2 |0 |
+ROW |52586 |1246 |31462 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52587 |1246 |31459 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52588 |1247 |31467 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52589 |1247 |31470 |2 |1 |2774A4|0 |2 |0 |
+ROW |52590 |1247 |31469 |0 |2 |F63100|1 |2 |0 |
+ROW |52591 |1247 |31466 |0 |3 |A54F10|1 |2 |0 |
+ROW |52592 |1247 |31468 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52593 |1247 |31465 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52594 |1366 |32445 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52595 |1366 |32448 |0 |1 |2774A4|0 |2 |0 |
+ROW |52596 |1367 |32449 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52597 |1367 |32452 |0 |1 |2774A4|0 |2 |0 |
+ROW |52598 |1368 |32446 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52599 |1368 |32447 |5 |1 |2774A4|0 |2 |0 |
+ROW |52600 |1369 |32450 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52601 |1369 |32451 |5 |1 |2774A4|0 |2 |0 |
+ROW |52602 |1229 |31337 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52603 |1229 |31338 |5 |1 |2774A4|0 |2 |0 |
+ROW |52604 |1230 |31341 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52605 |1230 |31342 |5 |1 |2774A4|0 |2 |0 |
+ROW |52606 |1231 |31336 |0 |0 |1A7C11|1 |2 |0 |
+ROW |52607 |1231 |31335 |5 |1 |2774A4|0 |2 |0 |
+ROW |52608 |1232 |31340 |0 |0 |1A7C11|1 |2 |0 |
+ROW |52609 |1232 |31339 |5 |1 |2774A4|0 |2 |0 |
+ROW |52610 |974 |29456 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52611 |974 |29455 |0 |1 |2774A4|0 |2 |0 |
+ROW |52612 |975 |29482 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52613 |975 |29481 |0 |1 |2774A4|0 |2 |0 |
+ROW |52614 |976 |29458 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52615 |976 |29457 |0 |1 |2774A4|0 |2 |0 |
+ROW |52616 |977 |29484 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52617 |977 |29483 |0 |1 |2774A4|0 |2 |0 |
+ROW |52618 |972 |29454 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52619 |973 |29480 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52620 |978 |29462 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52621 |979 |29488 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52622 |980 |31327 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52623 |980 |29466 |0 |1 |2774A4|0 |2 |0 |
+ROW |52624 |981 |31330 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52625 |981 |29492 |0 |1 |2774A4|0 |2 |0 |
+ROW |52626 |982 |29620 |0 |0 |969696|0 |9 |2 |
+ROW |52627 |982 |29619 |0 |1 |C80000|0 |9 |0 |
+ROW |52628 |983 |29629 |0 |0 |969696|0 |9 |2 |
+ROW |52629 |983 |29628 |0 |1 |C80000|0 |9 |0 |
+ROW |52630 |1248 |31483 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52631 |1248 |31486 |2 |1 |2774A4|0 |2 |0 |
+ROW |52632 |1248 |31485 |0 |2 |F63100|1 |2 |0 |
+ROW |52633 |1248 |31482 |0 |3 |A54F10|1 |2 |0 |
+ROW |52634 |1248 |31484 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52635 |1248 |31481 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52636 |1249 |31489 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52637 |1249 |31492 |2 |1 |2774A4|0 |2 |0 |
+ROW |52638 |1249 |31491 |0 |2 |F63100|1 |2 |0 |
+ROW |52639 |1249 |31488 |0 |3 |A54F10|1 |2 |0 |
+ROW |52640 |1249 |31490 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52641 |1249 |31487 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52642 |1370 |32453 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52643 |1370 |32456 |0 |1 |2774A4|0 |2 |0 |
+ROW |52644 |1371 |32457 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52645 |1371 |32460 |0 |1 |2774A4|0 |2 |0 |
+ROW |52646 |1372 |32454 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52647 |1372 |32455 |5 |1 |2774A4|0 |2 |0 |
+ROW |52648 |1373 |32458 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52649 |1373 |32459 |5 |1 |2774A4|0 |2 |0 |
+ROW |52650 |1233 |31355 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52651 |1233 |31356 |5 |1 |2774A4|0 |2 |0 |
+ROW |52652 |1234 |31359 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52653 |1234 |31360 |5 |1 |2774A4|0 |2 |0 |
+ROW |52654 |1235 |31354 |0 |0 |1A7C11|1 |2 |0 |
+ROW |52655 |1235 |31353 |5 |1 |2774A4|0 |2 |0 |
+ROW |52656 |1236 |31358 |0 |0 |1A7C11|1 |2 |0 |
+ROW |52657 |1236 |31357 |5 |1 |2774A4|0 |2 |0 |
+ROW |52658 |992 |29563 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52659 |992 |29562 |0 |1 |2774A4|0 |2 |0 |
+ROW |52660 |993 |29589 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52661 |993 |29588 |0 |1 |2774A4|0 |2 |0 |
+ROW |52662 |994 |29565 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52663 |994 |29564 |0 |1 |2774A4|0 |2 |0 |
+ROW |52664 |995 |29591 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52665 |995 |29590 |0 |1 |2774A4|0 |2 |0 |
+ROW |52666 |990 |29561 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52667 |991 |29587 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52668 |996 |29569 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52669 |997 |29595 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52670 |998 |31345 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52671 |998 |29573 |0 |1 |2774A4|0 |2 |0 |
+ROW |52672 |999 |31348 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52673 |999 |29599 |0 |1 |2774A4|0 |2 |0 |
+ROW |52674 |1489 |33568 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52675 |1490 |33581 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52676 |1490 |33569 |0 |1 |2774A4|0 |2 |0 |
+ROW |52677 |1491 |33583 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52678 |1491 |33579 |0 |1 |2774A4|0 |2 |0 |
+ROW |52679 |1492 |33619 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52680 |1493 |33632 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52681 |1493 |33620 |0 |1 |2774A4|0 |2 |0 |
+ROW |52682 |1494 |33634 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52683 |1494 |33630 |0 |1 |2774A4|0 |2 |0 |
+ROW |52684 |1495 |33670 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52685 |1496 |33683 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52686 |1496 |33671 |0 |1 |2774A4|0 |2 |0 |
+ROW |52687 |1497 |33685 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52688 |1497 |33681 |0 |1 |2774A4|0 |2 |0 |
+ROW |52689 |1498 |33721 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52690 |1499 |33734 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52691 |1499 |33722 |0 |1 |2774A4|0 |2 |0 |
+ROW |52692 |1500 |33736 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52693 |1500 |33732 |0 |1 |2774A4|0 |2 |0 |
+ROW |52694 |1501 |33772 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52695 |1502 |33785 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52696 |1502 |33773 |0 |1 |2774A4|0 |2 |0 |
+ROW |52697 |1503 |33787 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52698 |1503 |33783 |0 |1 |2774A4|0 |2 |0 |
+ROW |52699 |1504 |33823 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52700 |1505 |33836 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52701 |1505 |33824 |0 |1 |2774A4|0 |2 |0 |
+ROW |52702 |1506 |33838 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52703 |1506 |33834 |0 |1 |2774A4|0 |2 |0 |
+ROW |52704 |1507 |33874 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52705 |1508 |33887 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52706 |1508 |33875 |0 |1 |2774A4|0 |2 |0 |
+ROW |52707 |1509 |33889 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52708 |1509 |33885 |0 |1 |2774A4|0 |2 |0 |
+ROW |52709 |1510 |33925 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52710 |1481 |33445 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52711 |1481 |33433 |0 |1 |2774A4|0 |2 |0 |
+ROW |52712 |1482 |33447 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52713 |1482 |33443 |0 |1 |2774A4|0 |2 |0 |
+ROW |52714 |1511 |33930 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52715 |1512 |33943 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52716 |1512 |33931 |0 |1 |2774A4|0 |2 |0 |
+ROW |52717 |1513 |33945 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52718 |1513 |33941 |0 |1 |2774A4|0 |2 |0 |
+ROW |52719 |1514 |33981 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52720 |1515 |33994 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52721 |1515 |33982 |0 |1 |2774A4|0 |2 |0 |
+ROW |52722 |1516 |33996 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52723 |1516 |33992 |0 |1 |2774A4|0 |2 |0 |
+ROW |52724 |1517 |34032 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52725 |1518 |34045 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52726 |1518 |34033 |0 |1 |2774A4|0 |2 |0 |
+ROW |52727 |1519 |34047 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52728 |1519 |34043 |0 |1 |2774A4|0 |2 |0 |
+ROW |52729 |1403 |32790 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52730 |1404 |32809 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52731 |1404 |32807 |0 |1 |2774A4|0 |2 |0 |
+ROW |52732 |1404 |32811 |0 |2 |F63100|0 |2 |0 |
+ROW |52733 |1405 |32804 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52734 |1405 |32805 |0 |1 |2774A4|0 |2 |0 |
+ROW |52735 |1405 |32806 |0 |2 |F63100|0 |2 |0 |
+ROW |52736 |1406 |32810 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52737 |1406 |32808 |0 |1 |2774A4|0 |2 |0 |
+ROW |52738 |1406 |32812 |0 |2 |F63100|0 |2 |0 |
+ROW |52739 |1407 |32815 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52740 |1408 |32819 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52741 |1408 |32817 |0 |1 |2774A4|0 |2 |0 |
+ROW |52742 |1408 |32821 |0 |2 |F63100|0 |2 |0 |
+ROW |52743 |1409 |32820 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52744 |1409 |32818 |0 |1 |2774A4|0 |2 |0 |
+ROW |52745 |1409 |32822 |0 |2 |F63100|0 |2 |0 |
+ROW |52746 |1410 |32828 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52747 |1410 |32827 |0 |1 |2774A4|0 |2 |0 |
+ROW |52748 |1410 |32823 |0 |2 |F63100|0 |2 |0 |
+ROW |52749 |1411 |32777 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52750 |1411 |32778 |0 |1 |2774A4|0 |2 |0 |
+ROW |52751 |1483 |33525 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52752 |1483 |33524 |0 |1 |2774A4|0 |2 |0 |
+ROW |52753 |1483 |33523 |0 |2 |F63100|0 |2 |0 |
+ROW |52754 |1483 |33522 |0 |3 |A54F10|0 |2 |0 |
+ROW |52755 |1484 |33564 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52756 |1484 |33554 |0 |1 |2774A4|0 |2 |0 |
+ROW |52757 |1485 |33500 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52758 |1485 |33507 |0 |1 |2774A4|0 |2 |0 |
+ROW |52759 |1485 |33509 |0 |2 |F63100|0 |2 |0 |
+ROW |52760 |1485 |33508 |0 |3 |A54F10|0 |2 |0 |
+ROW |52761 |1486 |33480 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52762 |1486 |33491 |0 |1 |2774A4|0 |2 |0 |
+ROW |52763 |1486 |33488 |0 |2 |F63100|0 |2 |0 |
+ROW |52764 |1486 |33489 |0 |3 |A54F10|0 |2 |0 |
+ROW |52765 |1487 |33506 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52766 |1487 |33505 |0 |1 |2774A4|0 |2 |0 |
+ROW |52767 |1487 |33512 |0 |2 |F63100|0 |2 |0 |
+ROW |52768 |1487 |33504 |0 |3 |A54F10|0 |2 |0 |
+ROW |52769 |1387 |32632 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52770 |1388 |32635 |1 |0 |1A7C11|0 |2 |0 |
+ROW |52771 |1388 |32635 |1 |1 |2774A4|0 |2 |0 |
+ROW |52772 |1389 |32643 |5 |0 |1A7C11|0 |2 |0 |
+ROW |52773 |1389 |32646 |2 |1 |2774A4|0 |2 |0 |
+ROW |52774 |1389 |32645 |0 |2 |F63100|1 |2 |0 |
+ROW |52775 |1389 |32642 |0 |3 |A54F10|1 |2 |0 |
+ROW |52776 |1389 |32644 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |52777 |1389 |32641 |0 |5 |6C59DC|1 |2 |0 |
+ROW |52778 |1142 |30689 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52779 |1300 |31981 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52780 |1300 |31979 |0 |1 |2774A4|0 |2 |0 |
+ROW |52781 |1300 |31987 |0 |2 |F63100|1 |2 |0 |
+ROW |52782 |1301 |32462 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52783 |1301 |31986 |0 |1 |2774A4|0 |2 |0 |
+ROW |52784 |1301 |31984 |0 |2 |F63100|0 |2 |0 |
+ROW |52785 |1302 |32461 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52786 |1302 |31982 |0 |1 |2774A4|0 |2 |0 |
+ROW |52787 |1303 |31980 |0 |0 |1A7C11|0 |2 |0 |
+ROW |52788 |1303 |31989 |0 |1 |2774A4|0 |2 |0 |
+ROW |52789 |1303 |31977 |0 |2 |F63100|0 |2 |0 |
+ROW |52790 |1303 |31978 |0 |3 |A54F10|0 |2 |0 |
TABLE |hostmacro
FIELDS|hostmacroid|hostid|macro |value |description |type|
@@ -19549,8 +19406,6 @@ ROW |1943 |10251 |{$VFS.FS.FSTYPE.NOT_MATCHES}
ROW |1944 |10251 |{$VFS.FS.PUSED.MAX.CRIT} |90 | |0 |
ROW |1945 |10251 |{$VFS.FS.PUSED.MAX.WARN} |80 | |0 |
ROW |1946 |10371 |{$BATTERY.TEMP.MAX.WARN} |55 |Maximum battery temperature for trigger expression. |0 |
-ROW |1947 |10371 |{$ICMP.LOSS.WARN} |20 | |0 |
-ROW |1948 |10371 |{$ICMP.RESPONSE_TIME.WARN} |0.15 | |0 |
ROW |1949 |10371 |{$SNMP.TIMEOUT} |5m |The time interval for SNMP agent availability trigger expression. |0 |
ROW |1950 |10371 |{$TIME.PERIOD} |15m |Time period for trigger expression. |0 |
ROW |1951 |10371 |{$UPS.INPUT_FREQ.MAX.WARN} |50.3 |Maximum input frequency for trigger expression. |0 |
@@ -19564,8 +19419,6 @@ ROW |1958 |10372 |{$URL}
ROW |1959 |10372 |{$USERNAME} | |AFF700 user name. |0 |
ROW |1960 |10373 |{$BATTERY.CAPACITY.MIN.WARN} |50 |Minimum battery capacity percentage for trigger expression. |0 |
ROW |1961 |10373 |{$BATTERY.TEMP.MAX.WARN} |55 |Maximum battery temperature for trigger expression. |0 |
-ROW |1962 |10373 |{$ICMP.LOSS.WARN} |20 | |0 |
-ROW |1963 |10373 |{$ICMP.RESPONSE_TIME.WARN} |0.15 | |0 |
ROW |1964 |10373 |{$SNMP.TIMEOUT} |5m |The time interval for SNMP agent availability trigger expression. |0 |
ROW |1965 |10373 |{$TIME.PERIOD} |15m |Time period for trigger expression. |0 |
ROW |1966 |10373 |{$UPS.INPUT_FREQ.MAX.WARN} |50.3 |Maximum input frequency for trigger expression. |0 |
@@ -19575,8 +19428,6 @@ ROW |1969 |10373 |{$UPS.INPUT_VOLT.MIN.WARN}
ROW |1970 |10373 |{$UPS.OUTPUT.MAX.WARN} |80 |Maximum output load in % for trigger expression. |0 |
ROW |1971 |10374 |{$BATTERY.CAPACITY.MIN.WARN} |50 |Minimum battery capacity percentage for trigger expression. |0 |
ROW |1972 |10374 |{$BATTERY.TEMP.MAX.WARN} |55 |Maximum battery temperature for trigger expression. |0 |
-ROW |1973 |10374 |{$ICMP.LOSS.WARN} |20 | |0 |
-ROW |1974 |10374 |{$ICMP.RESPONSE_TIME.WARN} |0.15 | |0 |
ROW |1975 |10374 |{$SNMP.TIMEOUT} |5m |The time interval for SNMP agent availability trigger expression. |0 |
ROW |1976 |10374 |{$TIME.PERIOD} |15m |Time period for trigger expression. |0 |
ROW |1977 |10374 |{$UPS.INPUT_FREQ.MAX.WARN} |50.3 |Maximum input frequency for trigger expression. |0 |
@@ -19586,8 +19437,6 @@ ROW |1980 |10374 |{$UPS.INPUT_VOLT.MIN.WARN}
ROW |1981 |10374 |{$UPS.OUTPUT.MAX.WARN} |80 |Maximum output load in % for trigger expression. |0 |
ROW |1982 |10375 |{$BATTERY.CAPACITY.MIN.WARN} |50 |Minimum battery capacity percentage for trigger expression. |0 |
ROW |1983 |10375 |{$BATTERY.TEMP.MAX.WARN} |55 |Maximum battery temperature for trigger expression. |0 |
-ROW |1984 |10375 |{$ICMP.LOSS.WARN} |20 | |0 |
-ROW |1985 |10375 |{$ICMP.RESPONSE_TIME.WARN} |0.15 | |0 |
ROW |1986 |10375 |{$SNMP.TIMEOUT} |5m |The time interval for SNMP agent availability trigger expression. |0 |
ROW |1987 |10375 |{$TIME.PERIOD} |15m |Time period for trigger expression. |0 |
ROW |1988 |10375 |{$UPS.INPUT_FREQ.MAX.WARN} |50.3 |Maximum input frequency for trigger expression. |0 |
@@ -19597,8 +19446,6 @@ ROW |1991 |10375 |{$UPS.INPUT_VOLT.MIN.WARN}
ROW |1992 |10375 |{$UPS.OUTPUT.MAX.WARN} |80 |Maximum output load in % for trigger expression. |0 |
ROW |1993 |10376 |{$BATTERY.CAPACITY.MIN.WARN} |50 |Minimum battery capacity percentage for trigger expression. |0 |
ROW |1994 |10376 |{$BATTERY.TEMP.MAX.WARN} |55 |Maximum battery temperature for trigger expression. |0 |
-ROW |1995 |10376 |{$ICMP.LOSS.WARN} |20 | |0 |
-ROW |1996 |10376 |{$ICMP.RESPONSE_TIME.WARN} |0.15 | |0 |
ROW |1997 |10376 |{$SNMP.TIMEOUT} |5m |The time interval for SNMP agent availability trigger expression. |0 |
ROW |1998 |10376 |{$TIME.PERIOD} |15m |Time period for trigger expression. |0 |
ROW |1999 |10376 |{$UPS.INPUT_FREQ.MAX.WARN} |50.3 |Maximum input frequency for trigger expression. |0 |
@@ -19608,8 +19455,6 @@ ROW |2002 |10376 |{$UPS.INPUT_VOLT.MIN.WARN}
ROW |2003 |10376 |{$UPS.OUTPUT.MAX.WARN} |80 |Maximum output load in % for trigger expression. |0 |
ROW |2004 |10377 |{$BATTERY.CAPACITY.MIN.WARN} |50 |Minimum battery capacity percentage for trigger expression. |0 |
ROW |2005 |10377 |{$BATTERY.TEMP.MAX.WARN} |55 |Maximum battery temperature for trigger expression. |0 |
-ROW |2006 |10377 |{$ICMP.LOSS.WARN} |20 | |0 |
-ROW |2007 |10377 |{$ICMP.RESPONSE_TIME.WARN} |0.15 | |0 |
ROW |2008 |10377 |{$SNMP.TIMEOUT} |5m |The time interval for SNMP agent availability trigger expression. |0 |
ROW |2009 |10377 |{$TIME.PERIOD} |15m |Time period for trigger expression. |0 |
ROW |2010 |10377 |{$UPS.INPUT_FREQ.MAX.WARN} |50.3 |Maximum input frequency for trigger expression. |0 |
@@ -19619,8 +19464,6 @@ ROW |2013 |10377 |{$UPS.INPUT_VOLT.MIN.WARN}
ROW |2014 |10377 |{$UPS.OUTPUT.MAX.WARN} |80 |Maximum output load in % for trigger expression. |0 |
ROW |2015 |10378 |{$BATTERY.CAPACITY.MIN.WARN} |50 |Minimum battery capacity percentage for trigger expression. |0 |
ROW |2016 |10378 |{$BATTERY.TEMP.MAX.WARN} |55 |Maximum battery temperature for trigger expression. |0 |
-ROW |2017 |10378 |{$ICMP.LOSS.WARN} |20 | |0 |
-ROW |2018 |10378 |{$ICMP.RESPONSE_TIME.WARN} |0.15 | |0 |
ROW |2019 |10378 |{$SNMP.TIMEOUT} |5m |The time interval for SNMP agent availability trigger expression. |0 |
ROW |2020 |10378 |{$TIME.PERIOD} |15m |Time period for trigger expression. |0 |
ROW |2021 |10378 |{$UPS.INPUT_FREQ.MAX.WARN} |50.3 |Maximum input frequency for trigger expression. |0 |
@@ -19630,8 +19473,6 @@ ROW |2024 |10378 |{$UPS.INPUT_VOLT.MIN.WARN}
ROW |2025 |10378 |{$UPS.OUTPUT.MAX.WARN} |80 |Maximum output load in % for trigger expression. |0 |
ROW |2026 |10379 |{$BATTERY.CAPACITY.MIN.WARN} |50 |Minimum battery capacity percentage for trigger expression. |0 |
ROW |2027 |10379 |{$BATTERY.TEMP.MAX.WARN} |55 |Maximum battery temperature for trigger expression. |0 |
-ROW |2028 |10379 |{$ICMP.LOSS.WARN} |20 | |0 |
-ROW |2029 |10379 |{$ICMP.RESPONSE_TIME.WARN} |0.15 | |0 |
ROW |2030 |10379 |{$SNMP.TIMEOUT} |5m |The time interval for SNMP agent availability trigger expression. |0 |
ROW |2031 |10379 |{$TIME.PERIOD} |15m |Time period for trigger expression. |0 |
ROW |2032 |10379 |{$UPS.INPUT_FREQ.MAX.WARN} |50.3 |Maximum input frequency for trigger expression. |0 |
@@ -19642,8 +19483,6 @@ ROW |2036 |10379 |{$UPS.OUTPUT.MAX.WARN}
ROW |2037 |10371 |{$BATTERY.CAPACITY.MIN.WARN} |50 |Minimum battery capacity percentage for trigger expression. |0 |
ROW |2038 |10380 |{$BATTERY.CAPACITY.MIN.WARN} |50 |Minimum battery capacity percentage for trigger expression. |0 |
ROW |2039 |10380 |{$BATTERY.TEMP.MAX.WARN} |55 |Maximum battery temperature for trigger expression. |0 |
-ROW |2040 |10380 |{$ICMP.LOSS.WARN} |20 | |0 |
-ROW |2041 |10380 |{$ICMP.RESPONSE_TIME.WARN} |0.15 | |0 |
ROW |2042 |10380 |{$SNMP.TIMEOUT} |5m |The time interval for SNMP agent availability trigger expression. |0 |
ROW |2043 |10380 |{$TIME.PERIOD} |15m |Time period for trigger expression. |0 |
ROW |2044 |10380 |{$UPS.INPUT_FREQ.MAX.WARN} |50.3 |Maximum input frequency for trigger expression. |0 |
@@ -19653,8 +19492,6 @@ ROW |2047 |10380 |{$UPS.INPUT_VOLT.MIN.WARN}
ROW |2048 |10380 |{$UPS.OUTPUT.MAX.WARN} |80 |Maximum output load in % for trigger expression. |0 |
ROW |2049 |10381 |{$BATTERY.CAPACITY.MIN.WARN} |50 |Minimum battery capacity percentage for trigger expression. |0 |
ROW |2050 |10381 |{$BATTERY.TEMP.MAX.WARN} |55 |Maximum battery temperature for trigger expression. |0 |
-ROW |2051 |10381 |{$ICMP.LOSS.WARN} |20 | |0 |
-ROW |2052 |10381 |{$ICMP.RESPONSE_TIME.WARN} |0.15 | |0 |
ROW |2053 |10381 |{$SNMP.TIMEOUT} |5m |The time interval for SNMP agent availability trigger expression. |0 |
ROW |2054 |10381 |{$TIME.PERIOD} |15m |Time period for trigger expression. |0 |
ROW |2055 |10381 |{$UPS.INPUT_FREQ.MAX.WARN} |50.3 |Maximum input frequency for trigger expression. |0 |
@@ -19664,8 +19501,6 @@ ROW |2058 |10381 |{$UPS.INPUT_VOLT.MIN.WARN}
ROW |2059 |10381 |{$UPS.OUTPUT.MAX.WARN} |80 |Maximum output load in % for trigger expression. |0 |
ROW |2060 |10382 |{$BATTERY.CAPACITY.MIN.WARN} |50 |Minimum battery capacity percentage for trigger expression. |0 |
ROW |2061 |10382 |{$BATTERY.TEMP.MAX.WARN} |55 |Maximum battery temperature for trigger expression. |0 |
-ROW |2062 |10382 |{$ICMP.LOSS.WARN} |20 | |0 |
-ROW |2063 |10382 |{$ICMP.RESPONSE_TIME.WARN} |0.15 | |0 |
ROW |2064 |10382 |{$SNMP.TIMEOUT} |5m |The time interval for SNMP agent availability trigger expression. |0 |
ROW |2065 |10382 |{$TIME.PERIOD} |15m |Time period for trigger expression. |0 |
ROW |2066 |10382 |{$UPS.INPUT_FREQ.MAX.WARN} |50.3 |Maximum input frequency for trigger expression. |0 |
@@ -20152,4233 +19987,4200 @@ ROW |95602 |1267 |29783 |
ROW |95603 |1267 |29784 |
ROW |95604 |1267 |30044 |
ROW |95605 |1267 |30045 |
-ROW |102175 |1116 |28743 |
-ROW |102176 |1116 |28744 |
-ROW |102177 |1116 |28745 |
-ROW |102178 |1116 |28746 |
-ROW |102179 |1116 |28747 |
-ROW |102180 |1116 |28748 |
-ROW |102181 |1117 |30896 |
-ROW |102182 |1116 |30897 |
-ROW |102183 |1116 |30898 |
-ROW |102184 |1116 |30899 |
-ROW |102185 |1116 |30900 |
-ROW |102186 |1116 |30901 |
-ROW |102187 |1116 |30902 |
-ROW |102188 |1116 |30903 |
-ROW |102189 |1116 |30904 |
-ROW |102190 |1116 |30905 |
-ROW |102191 |1116 |30906 |
-ROW |102192 |1116 |30907 |
-ROW |102193 |1116 |30908 |
-ROW |102194 |1116 |30909 |
-ROW |102195 |1116 |30910 |
-ROW |102196 |1116 |30911 |
-ROW |102197 |1116 |30912 |
-ROW |102198 |1116 |30913 |
-ROW |102199 |1116 |30914 |
-ROW |102200 |1116 |30915 |
-ROW |102201 |1116 |30917 |
-ROW |102202 |1116 |30918 |
-ROW |102203 |1116 |30919 |
-ROW |102204 |1116 |30920 |
-ROW |102205 |1116 |30921 |
-ROW |102206 |1116 |30922 |
-ROW |102207 |1119 |28775 |
-ROW |102208 |1118 |28776 |
-ROW |102209 |1118 |28777 |
-ROW |102210 |1118 |28778 |
-ROW |102211 |1118 |28779 |
-ROW |102212 |1118 |28780 |
-ROW |102213 |1118 |28781 |
-ROW |102214 |1118 |28782 |
-ROW |102215 |1118 |28783 |
-ROW |102216 |1118 |28784 |
-ROW |102217 |1118 |28785 |
-ROW |102218 |1118 |28786 |
-ROW |102219 |1118 |28787 |
-ROW |102220 |1118 |28788 |
-ROW |102221 |1118 |28789 |
-ROW |102222 |1118 |28790 |
-ROW |102223 |1118 |28791 |
-ROW |102224 |1118 |28792 |
-ROW |102225 |1118 |28793 |
-ROW |102226 |1118 |28794 |
-ROW |102227 |1118 |28795 |
-ROW |102228 |1118 |28796 |
-ROW |102229 |1118 |28798 |
-ROW |102230 |1118 |28799 |
-ROW |102231 |1118 |28800 |
-ROW |102232 |1118 |28801 |
-ROW |102233 |1118 |28802 |
-ROW |102234 |1118 |28803 |
-ROW |102235 |1349 |31800 |
-ROW |102236 |1349 |31801 |
-ROW |102237 |1349 |31802 |
-ROW |102238 |1348 |31803 |
-ROW |102239 |1349 |31804 |
-ROW |102240 |1348 |31805 |
-ROW |102241 |1348 |31806 |
-ROW |102242 |1348 |31807 |
-ROW |102243 |1348 |31808 |
-ROW |102244 |1348 |31809 |
-ROW |102245 |1348 |31810 |
-ROW |102246 |1348 |31811 |
-ROW |102247 |1348 |31812 |
-ROW |102248 |1348 |31813 |
-ROW |102249 |1348 |31814 |
-ROW |102250 |1348 |31815 |
-ROW |102251 |1348 |31816 |
-ROW |102252 |1348 |31817 |
-ROW |102253 |1348 |31818 |
-ROW |102254 |1348 |31819 |
-ROW |102255 |1348 |31820 |
-ROW |102256 |1348 |31821 |
-ROW |102257 |1348 |31822 |
-ROW |102258 |1348 |31823 |
-ROW |102259 |1348 |31824 |
-ROW |102260 |1348 |31825 |
-ROW |102261 |1348 |31826 |
-ROW |102262 |1348 |31827 |
-ROW |102263 |1348 |31828 |
-ROW |102264 |1348 |31829 |
-ROW |102265 |1348 |31830 |
-ROW |102266 |1348 |31831 |
-ROW |102267 |1348 |31832 |
-ROW |102268 |1348 |31833 |
-ROW |102269 |1348 |31834 |
-ROW |102270 |1348 |31835 |
-ROW |102271 |1348 |31836 |
-ROW |102272 |1348 |31837 |
-ROW |102273 |1348 |31838 |
-ROW |102274 |1348 |31839 |
-ROW |102275 |1348 |31840 |
-ROW |102276 |1348 |31841 |
-ROW |102277 |1348 |31842 |
-ROW |102278 |1348 |31843 |
-ROW |102279 |1348 |31844 |
-ROW |102280 |1348 |31845 |
-ROW |102281 |1348 |31846 |
-ROW |102282 |1348 |31847 |
-ROW |102283 |1348 |31848 |
-ROW |102284 |1348 |31849 |
-ROW |102285 |1348 |31850 |
-ROW |102286 |1319 |30527 |
-ROW |102287 |1319 |30528 |
-ROW |102288 |1319 |30529 |
-ROW |102289 |1318 |30530 |
-ROW |102290 |1319 |30531 |
-ROW |102291 |1318 |30532 |
-ROW |102292 |1318 |30533 |
-ROW |102293 |1318 |30534 |
-ROW |102294 |1318 |30535 |
-ROW |102295 |1318 |30536 |
-ROW |102296 |1318 |30537 |
-ROW |102297 |1318 |30538 |
-ROW |102298 |1318 |30539 |
-ROW |102299 |1318 |30540 |
-ROW |102300 |1318 |30541 |
-ROW |102301 |1318 |30542 |
-ROW |102302 |1318 |30543 |
-ROW |102303 |1318 |30544 |
-ROW |102304 |1318 |30545 |
-ROW |102305 |1318 |30546 |
-ROW |102306 |1318 |30547 |
-ROW |102307 |1318 |30548 |
-ROW |102308 |1318 |30549 |
-ROW |102309 |1318 |30550 |
-ROW |102310 |1318 |30551 |
-ROW |102311 |1318 |30552 |
-ROW |102312 |1318 |30553 |
-ROW |102313 |1318 |30554 |
-ROW |102314 |1318 |30555 |
-ROW |102315 |1318 |30556 |
-ROW |102316 |1318 |30557 |
-ROW |102317 |1318 |30558 |
-ROW |102318 |1318 |30559 |
-ROW |102319 |1318 |30560 |
-ROW |102320 |1318 |30561 |
-ROW |102321 |1318 |30562 |
-ROW |102322 |1318 |30563 |
-ROW |102323 |1318 |30564 |
-ROW |102324 |1318 |30565 |
-ROW |102325 |1318 |30566 |
-ROW |102326 |1318 |30567 |
-ROW |102327 |1318 |30568 |
-ROW |102328 |1318 |30569 |
-ROW |102329 |1318 |30570 |
-ROW |102330 |1326 |30690 |
-ROW |102331 |1327 |30691 |
-ROW |102332 |1326 |30692 |
-ROW |102333 |1327 |30693 |
-ROW |102334 |1327 |30694 |
-ROW |102335 |1326 |30695 |
-ROW |102336 |1326 |30696 |
-ROW |102337 |1326 |30697 |
-ROW |102338 |1326 |30698 |
-ROW |102339 |1326 |30699 |
-ROW |102340 |1326 |30700 |
-ROW |102341 |1326 |30701 |
-ROW |102342 |1326 |30702 |
-ROW |102343 |1326 |30703 |
-ROW |102344 |1326 |30704 |
-ROW |102345 |1326 |30705 |
-ROW |102346 |1326 |30706 |
-ROW |102347 |1326 |30707 |
-ROW |102348 |1326 |30708 |
-ROW |102349 |1326 |30709 |
-ROW |102350 |1326 |30710 |
-ROW |102351 |1326 |30711 |
-ROW |102352 |1326 |30712 |
-ROW |102353 |1327 |30719 |
-ROW |102354 |1327 |30739 |
-ROW |102355 |1327 |30743 |
-ROW |102356 |1327 |30744 |
-ROW |102357 |1327 |30746 |
-ROW |102358 |1327 |30747 |
-ROW |102359 |1327 |30754 |
-ROW |102360 |1327 |30756 |
-ROW |102361 |1331 |30923 |
-ROW |102362 |1331 |30924 |
-ROW |102363 |1332 |30925 |
-ROW |102364 |1332 |30926 |
-ROW |102365 |1331 |30927 |
-ROW |102366 |1331 |30928 |
-ROW |102367 |1331 |30929 |
-ROW |102368 |1331 |30930 |
-ROW |102369 |1331 |30931 |
-ROW |102370 |1331 |30932 |
-ROW |102371 |1331 |30933 |
-ROW |102372 |1331 |30934 |
-ROW |102373 |1331 |30935 |
-ROW |102374 |1331 |30936 |
-ROW |102375 |1331 |30937 |
-ROW |102376 |1331 |30938 |
-ROW |102377 |1331 |30939 |
-ROW |102378 |1331 |30940 |
-ROW |102379 |1331 |30941 |
-ROW |102380 |1331 |30942 |
-ROW |102381 |1331 |30943 |
-ROW |102382 |1331 |30944 |
-ROW |102383 |1331 |30945 |
-ROW |102384 |1331 |30946 |
-ROW |102385 |1331 |30947 |
-ROW |102386 |1331 |30948 |
-ROW |102387 |1331 |30949 |
-ROW |102388 |1331 |30950 |
-ROW |102389 |1331 |30951 |
-ROW |102390 |1331 |30952 |
-ROW |102391 |1331 |30953 |
-ROW |102392 |1331 |30954 |
-ROW |102393 |1331 |30955 |
-ROW |102394 |1331 |30956 |
-ROW |102395 |1331 |30957 |
-ROW |102396 |1331 |30958 |
-ROW |102397 |1331 |30959 |
-ROW |102398 |1331 |30960 |
-ROW |102399 |1331 |30963 |
-ROW |102400 |1411 |32486 |
-ROW |102401 |1411 |32487 |
-ROW |102402 |1411 |32488 |
-ROW |102403 |1411 |32489 |
-ROW |102404 |1411 |32490 |
-ROW |102405 |1411 |32491 |
-ROW |102406 |1411 |32492 |
-ROW |102407 |1411 |32493 |
-ROW |102408 |1411 |32494 |
-ROW |102409 |1411 |32498 |
-ROW |102410 |1411 |32499 |
-ROW |102411 |1411 |32500 |
-ROW |102412 |1412 |32516 |
-ROW |102413 |1412 |32517 |
-ROW |102414 |1412 |32518 |
-ROW |102415 |1412 |32519 |
-ROW |102416 |1412 |32520 |
-ROW |102417 |1412 |32521 |
-ROW |102418 |1412 |32522 |
-ROW |102419 |1412 |32523 |
-ROW |102420 |1412 |32524 |
-ROW |102421 |1412 |32528 |
-ROW |102422 |1412 |32529 |
-ROW |102423 |1412 |32530 |
-ROW |102424 |1341 |31499 |
-ROW |102425 |1341 |31500 |
-ROW |102426 |1341 |31501 |
-ROW |102427 |1341 |31502 |
-ROW |102428 |1341 |31503 |
-ROW |102429 |1341 |31504 |
-ROW |102430 |1341 |31505 |
-ROW |102431 |1341 |31506 |
-ROW |102432 |1341 |31507 |
-ROW |102433 |1341 |31508 |
-ROW |102434 |1341 |31509 |
-ROW |102435 |1341 |31510 |
-ROW |102436 |1341 |31511 |
-ROW |102437 |1341 |31512 |
-ROW |102438 |1341 |31513 |
-ROW |102439 |1341 |31514 |
-ROW |102440 |1341 |31515 |
-ROW |102441 |1341 |31516 |
-ROW |102442 |1341 |31517 |
-ROW |102443 |1341 |31518 |
-ROW |102444 |1341 |31519 |
-ROW |102445 |1341 |31520 |
-ROW |102446 |1341 |31521 |
-ROW |102447 |1341 |31522 |
-ROW |102448 |1341 |31523 |
-ROW |102449 |1341 |31524 |
-ROW |102450 |1341 |31525 |
-ROW |102451 |1341 |31526 |
-ROW |102452 |1341 |31527 |
-ROW |102453 |1341 |31528 |
-ROW |102454 |1341 |31529 |
-ROW |102455 |1341 |31530 |
-ROW |102456 |1341 |31531 |
-ROW |102457 |1341 |31532 |
-ROW |102458 |1341 |31533 |
-ROW |102459 |1341 |31534 |
-ROW |102460 |1341 |31535 |
-ROW |102461 |1341 |31536 |
-ROW |102462 |1341 |31537 |
-ROW |102463 |1341 |31538 |
-ROW |102464 |1341 |31539 |
-ROW |102465 |1341 |31540 |
-ROW |102466 |1341 |31541 |
-ROW |102467 |1341 |31542 |
-ROW |102468 |1341 |31543 |
-ROW |102469 |1341 |31544 |
-ROW |102470 |1341 |31545 |
-ROW |102471 |1341 |31546 |
-ROW |102472 |1341 |31547 |
-ROW |102473 |1341 |31548 |
-ROW |102474 |1341 |31549 |
-ROW |102475 |1341 |31550 |
-ROW |102476 |1341 |31551 |
-ROW |102477 |1341 |31552 |
-ROW |102478 |1341 |31553 |
-ROW |102479 |1358 |32012 |
-ROW |102480 |1358 |32013 |
-ROW |102481 |1357 |32014 |
-ROW |102482 |1357 |32015 |
-ROW |102483 |1357 |32016 |
-ROW |102484 |1358 |32017 |
-ROW |102485 |1357 |32018 |
-ROW |102486 |1358 |32019 |
-ROW |102487 |1357 |32020 |
-ROW |102488 |1357 |32021 |
-ROW |102489 |1357 |32022 |
-ROW |102490 |1357 |32023 |
-ROW |102491 |1357 |32024 |
-ROW |102492 |1357 |32025 |
-ROW |102493 |1357 |32026 |
-ROW |102494 |1357 |32027 |
-ROW |102495 |1357 |32028 |
-ROW |102496 |1357 |32029 |
-ROW |102497 |1357 |32030 |
-ROW |102498 |1357 |32031 |
-ROW |102499 |1357 |32032 |
-ROW |102500 |1357 |32033 |
-ROW |102501 |1357 |32034 |
-ROW |102502 |1357 |32035 |
-ROW |102503 |1357 |32036 |
-ROW |102504 |1357 |32037 |
-ROW |102505 |1357 |32038 |
-ROW |102506 |1357 |32039 |
-ROW |102507 |1357 |32040 |
-ROW |102508 |1357 |32041 |
-ROW |102509 |1357 |32042 |
-ROW |102510 |1357 |32043 |
-ROW |102511 |1357 |32044 |
-ROW |102512 |1357 |32045 |
-ROW |102513 |1358 |32048 |
-ROW |102514 |1358 |32049 |
-ROW |102515 |1298 |30187 |
-ROW |102516 |1298 |30188 |
-ROW |102517 |1299 |30189 |
-ROW |102518 |1299 |30190 |
-ROW |102519 |1298 |30191 |
-ROW |102520 |1298 |30192 |
-ROW |102521 |1301 |30230 |
-ROW |102522 |1301 |30231 |
-ROW |102523 |1300 |30789 |
-ROW |102524 |1300 |30790 |
-ROW |102525 |1300 |30234 |
-ROW |102526 |1300 |30235 |
-ROW |102527 |1333 |30968 |
-ROW |102528 |1333 |30969 |
-ROW |102529 |1333 |30970 |
-ROW |102530 |1333 |30971 |
-ROW |102531 |1333 |30972 |
-ROW |102532 |1333 |30973 |
-ROW |102533 |1333 |30974 |
-ROW |102534 |1333 |30975 |
-ROW |102535 |1333 |30976 |
-ROW |102536 |1333 |30977 |
-ROW |102537 |1333 |30978 |
-ROW |102538 |1333 |30979 |
-ROW |102539 |1333 |30980 |
-ROW |102540 |1333 |30981 |
-ROW |102541 |1333 |30982 |
-ROW |102542 |1333 |30983 |
-ROW |102543 |1333 |30984 |
-ROW |102544 |1333 |30985 |
-ROW |102545 |1333 |30986 |
-ROW |102546 |1333 |30987 |
-ROW |102547 |1333 |30988 |
-ROW |102548 |1333 |30989 |
-ROW |102549 |1333 |30990 |
-ROW |102550 |1333 |30991 |
-ROW |102551 |1333 |30992 |
-ROW |102552 |1333 |30993 |
-ROW |102553 |1333 |30994 |
-ROW |102554 |1333 |30995 |
-ROW |102555 |1333 |30996 |
-ROW |102556 |1333 |30997 |
-ROW |102557 |1333 |30998 |
-ROW |102558 |1333 |30999 |
-ROW |102559 |1333 |31000 |
-ROW |102560 |1333 |31001 |
-ROW |102561 |1333 |31002 |
-ROW |102562 |1333 |31003 |
-ROW |102563 |1333 |31004 |
-ROW |102564 |1334 |31010 |
-ROW |102565 |1334 |31011 |
-ROW |102566 |1334 |31012 |
-ROW |102567 |1334 |31013 |
-ROW |102568 |1334 |31014 |
-ROW |102569 |1334 |31015 |
-ROW |102570 |1334 |31016 |
-ROW |102571 |1334 |31017 |
-ROW |102572 |1334 |31018 |
-ROW |102573 |1334 |31019 |
-ROW |102574 |1334 |31020 |
-ROW |102575 |1334 |31021 |
-ROW |102576 |1334 |31022 |
-ROW |102577 |1334 |31023 |
-ROW |102578 |1334 |31024 |
-ROW |102579 |1334 |31025 |
-ROW |102580 |1334 |31026 |
-ROW |102581 |1334 |31027 |
-ROW |102582 |1334 |31028 |
-ROW |102583 |1334 |31029 |
-ROW |102584 |1334 |31030 |
-ROW |102585 |1334 |31031 |
-ROW |102586 |1334 |31032 |
-ROW |102587 |1334 |31033 |
-ROW |102588 |1334 |31034 |
-ROW |102589 |1334 |31035 |
-ROW |102590 |1334 |31036 |
-ROW |102591 |1334 |31037 |
-ROW |102592 |1334 |31038 |
-ROW |102593 |1334 |31039 |
-ROW |102594 |1334 |31040 |
-ROW |102595 |1334 |31041 |
-ROW |102596 |1334 |31042 |
-ROW |102597 |1334 |31043 |
-ROW |102598 |1334 |31044 |
-ROW |102599 |1334 |31045 |
-ROW |102600 |1334 |31046 |
-ROW |102601 |1359 |32071 |
-ROW |102602 |1359 |32072 |
-ROW |102603 |1359 |32073 |
-ROW |102604 |1359 |32074 |
-ROW |102605 |1359 |32075 |
-ROW |102606 |1359 |32076 |
-ROW |102607 |1359 |32077 |
-ROW |102608 |1359 |32078 |
-ROW |102609 |1359 |32079 |
-ROW |102610 |1359 |32080 |
-ROW |102611 |1359 |32081 |
-ROW |102612 |1359 |32082 |
-ROW |102613 |1359 |32083 |
-ROW |102614 |1359 |32084 |
-ROW |102615 |1359 |32085 |
-ROW |102616 |1359 |32086 |
-ROW |102617 |1359 |32087 |
-ROW |102618 |1359 |32088 |
-ROW |102619 |1359 |32089 |
-ROW |102620 |1359 |32090 |
-ROW |102621 |1359 |32091 |
-ROW |102622 |1359 |32092 |
-ROW |102623 |1359 |32093 |
-ROW |102624 |1359 |32094 |
-ROW |102625 |1359 |32095 |
-ROW |102626 |1359 |32096 |
-ROW |102627 |1359 |32097 |
-ROW |102628 |1359 |32098 |
-ROW |102629 |1359 |32099 |
-ROW |102630 |1359 |32100 |
-ROW |102631 |1359 |32101 |
-ROW |102632 |1359 |32102 |
-ROW |102633 |1359 |32103 |
-ROW |102634 |1359 |32104 |
-ROW |102635 |1359 |32105 |
-ROW |102636 |1359 |32106 |
-ROW |102637 |1359 |32107 |
-ROW |102638 |1359 |32108 |
-ROW |102639 |1359 |32109 |
-ROW |102640 |1359 |32110 |
-ROW |102641 |1359 |32111 |
-ROW |102642 |1359 |32112 |
-ROW |102643 |1359 |32113 |
-ROW |102644 |1359 |32114 |
-ROW |102645 |1359 |32115 |
-ROW |102646 |1359 |32116 |
-ROW |102647 |1359 |32117 |
-ROW |102648 |1359 |32118 |
-ROW |102649 |1359 |32119 |
-ROW |102650 |1359 |32120 |
-ROW |102651 |1359 |32121 |
-ROW |102652 |1359 |32122 |
-ROW |102653 |1359 |32123 |
-ROW |102654 |1359 |32124 |
-ROW |102655 |1359 |32125 |
-ROW |102656 |1359 |32126 |
-ROW |102657 |1359 |32127 |
-ROW |102658 |1359 |32128 |
-ROW |102659 |1359 |32129 |
-ROW |102660 |1359 |32130 |
-ROW |102661 |1359 |32131 |
-ROW |102662 |1359 |32132 |
-ROW |102663 |1320 |30611 |
-ROW |102664 |1321 |30612 |
-ROW |102665 |1320 |30613 |
-ROW |102666 |1320 |30614 |
-ROW |102667 |1320 |30615 |
-ROW |102668 |1320 |30616 |
-ROW |102669 |1320 |30617 |
-ROW |102670 |1320 |30618 |
-ROW |102671 |1320 |30619 |
-ROW |102672 |1320 |30620 |
-ROW |102673 |1320 |30621 |
-ROW |102674 |1320 |30622 |
-ROW |102675 |1320 |30623 |
-ROW |102676 |1320 |30624 |
-ROW |102677 |1320 |30625 |
-ROW |102678 |1320 |30626 |
-ROW |102679 |1320 |30627 |
-ROW |102680 |1320 |30628 |
-ROW |102681 |1320 |30629 |
-ROW |102682 |1320 |30630 |
-ROW |102683 |1320 |30631 |
-ROW |102684 |1320 |30632 |
-ROW |102685 |1320 |30633 |
-ROW |102686 |1320 |30634 |
-ROW |102687 |1320 |30635 |
-ROW |102688 |1320 |30636 |
-ROW |102689 |1121 |28804 |
-ROW |102690 |1120 |28805 |
-ROW |102691 |1120 |28806 |
-ROW |102692 |1120 |28807 |
-ROW |102693 |1120 |28808 |
-ROW |102694 |1120 |28809 |
-ROW |102695 |1120 |28810 |
-ROW |102696 |1120 |28811 |
-ROW |102697 |1120 |28812 |
-ROW |102698 |1120 |28813 |
-ROW |102699 |1120 |28814 |
-ROW |102700 |1120 |28815 |
-ROW |102701 |1120 |28816 |
-ROW |102702 |1120 |28817 |
-ROW |102703 |1120 |28818 |
-ROW |102704 |1120 |28819 |
-ROW |102705 |1120 |28820 |
-ROW |102706 |1123 |28821 |
-ROW |102707 |1122 |28822 |
-ROW |102708 |1122 |28823 |
-ROW |102709 |1122 |28824 |
-ROW |102710 |1122 |28825 |
-ROW |102711 |1122 |28826 |
-ROW |102712 |1122 |28827 |
-ROW |102713 |1122 |28828 |
-ROW |102714 |1122 |28829 |
-ROW |102715 |1122 |28830 |
-ROW |102716 |1122 |28831 |
-ROW |102717 |1122 |28832 |
-ROW |102718 |1122 |28833 |
-ROW |102719 |1351 |31868 |
-ROW |102720 |1351 |31869 |
-ROW |102721 |1350 |31870 |
-ROW |102722 |1350 |31871 |
-ROW |102723 |1350 |31872 |
-ROW |102724 |1350 |31873 |
-ROW |102725 |1350 |31874 |
-ROW |102726 |1350 |31875 |
-ROW |102727 |1350 |31876 |
-ROW |102728 |1350 |31877 |
-ROW |102729 |1350 |31878 |
-ROW |102730 |1350 |31879 |
-ROW |102731 |1350 |31880 |
-ROW |102732 |1350 |31881 |
-ROW |102733 |1350 |31882 |
-ROW |102734 |1350 |31883 |
-ROW |102735 |1350 |31884 |
-ROW |102736 |1350 |31885 |
-ROW |102737 |1350 |31886 |
-ROW |102738 |1350 |31887 |
-ROW |102739 |1350 |31888 |
-ROW |102740 |1350 |31889 |
-ROW |102741 |1350 |31890 |
-ROW |102742 |1352 |31891 |
-ROW |102743 |1353 |31892 |
-ROW |102744 |1353 |31893 |
-ROW |102745 |1352 |31894 |
-ROW |102746 |1352 |31895 |
-ROW |102747 |1352 |31896 |
-ROW |102748 |1352 |31897 |
-ROW |102749 |1352 |31898 |
-ROW |102750 |1352 |31899 |
-ROW |102751 |1352 |31900 |
-ROW |102752 |1352 |31901 |
-ROW |102753 |1352 |31902 |
-ROW |102754 |1352 |31903 |
-ROW |102755 |1352 |31904 |
-ROW |102756 |1352 |31905 |
-ROW |102757 |1352 |31906 |
-ROW |102758 |1352 |31907 |
-ROW |102759 |1352 |31908 |
-ROW |102760 |1352 |31909 |
-ROW |102761 |1426 |32829 |
-ROW |102762 |1426 |32830 |
-ROW |102763 |1427 |32831 |
-ROW |102764 |1427 |32832 |
-ROW |102765 |1428 |32833 |
-ROW |102766 |1428 |32834 |
-ROW |102767 |1428 |32835 |
-ROW |102768 |1427 |32836 |
-ROW |102769 |1427 |32837 |
-ROW |102770 |1427 |32838 |
-ROW |102771 |1427 |32839 |
-ROW |102772 |1425 |32840 |
-ROW |102773 |1425 |32841 |
-ROW |102774 |1425 |32842 |
-ROW |102775 |1425 |32843 |
-ROW |102776 |1425 |32844 |
-ROW |102777 |1425 |32845 |
-ROW |102778 |1425 |32846 |
-ROW |102779 |1425 |32847 |
-ROW |102780 |1425 |32848 |
-ROW |102781 |1425 |32849 |
-ROW |102782 |1425 |32850 |
-ROW |102783 |1425 |32851 |
-ROW |102784 |1425 |32852 |
-ROW |102785 |1425 |32853 |
-ROW |102786 |1425 |32854 |
-ROW |102787 |1425 |32855 |
-ROW |102788 |1425 |32856 |
-ROW |102789 |1425 |32857 |
-ROW |102790 |1425 |32858 |
-ROW |102791 |1425 |32859 |
-ROW |102792 |1425 |32860 |
-ROW |102793 |1425 |32861 |
-ROW |102794 |1425 |32862 |
-ROW |102795 |1425 |32863 |
-ROW |102796 |1427 |32864 |
-ROW |102797 |1427 |32865 |
-ROW |102798 |1427 |32866 |
-ROW |102799 |1427 |32867 |
-ROW |102800 |1427 |32868 |
-ROW |102801 |1427 |32869 |
-ROW |102802 |1427 |32870 |
-ROW |102803 |1427 |32871 |
-ROW |102804 |1427 |32872 |
-ROW |102805 |1427 |32873 |
-ROW |102806 |1427 |32874 |
-ROW |102807 |1427 |32875 |
-ROW |102808 |1427 |32876 |
-ROW |102809 |1427 |32877 |
-ROW |102810 |1427 |32878 |
-ROW |102811 |1425 |32884 |
-ROW |102812 |1427 |32885 |
-ROW |102813 |1427 |32886 |
-ROW |102814 |1427 |32887 |
-ROW |102815 |1427 |32888 |
-ROW |102816 |1427 |32889 |
-ROW |102817 |1427 |32890 |
-ROW |102818 |1430 |32925 |
-ROW |102819 |1430 |32926 |
-ROW |102820 |1431 |32927 |
-ROW |102821 |1432 |32928 |
-ROW |102822 |1432 |32929 |
-ROW |102823 |1432 |32930 |
-ROW |102824 |1431 |32931 |
-ROW |102825 |1429 |32932 |
-ROW |102826 |1429 |32933 |
-ROW |102827 |1429 |32934 |
-ROW |102828 |1429 |32935 |
-ROW |102829 |1429 |32936 |
-ROW |102830 |1429 |32937 |
-ROW |102831 |1429 |32938 |
-ROW |102832 |1429 |32939 |
-ROW |102833 |1429 |32940 |
-ROW |102834 |1429 |32941 |
-ROW |102835 |1429 |32942 |
-ROW |102836 |1429 |32943 |
-ROW |102837 |1429 |32944 |
-ROW |102838 |1429 |32945 |
-ROW |102839 |1429 |32946 |
-ROW |102840 |1429 |32947 |
-ROW |102841 |1429 |32948 |
-ROW |102842 |1429 |32949 |
-ROW |102843 |1429 |32950 |
-ROW |102844 |1429 |32951 |
-ROW |102845 |1429 |32952 |
-ROW |102846 |1429 |32953 |
-ROW |102847 |1429 |32954 |
-ROW |102848 |1429 |32955 |
-ROW |102849 |1431 |32956 |
-ROW |102850 |1431 |32957 |
-ROW |102851 |1431 |32958 |
-ROW |102852 |1431 |32959 |
-ROW |102853 |1431 |32960 |
-ROW |102854 |1431 |32961 |
-ROW |102855 |1431 |32962 |
-ROW |102856 |1431 |32963 |
-ROW |102857 |1431 |32964 |
-ROW |102858 |1431 |32965 |
-ROW |102859 |1431 |32966 |
-ROW |102860 |1431 |32967 |
-ROW |102861 |1431 |32968 |
-ROW |102862 |1431 |32969 |
-ROW |102863 |1431 |32970 |
-ROW |102864 |1429 |32976 |
-ROW |102865 |1431 |32977 |
-ROW |102866 |1431 |32978 |
-ROW |102867 |1431 |32979 |
-ROW |102868 |1431 |32980 |
-ROW |102869 |1431 |32981 |
-ROW |102870 |1431 |32982 |
-ROW |102871 |1354 |31910 |
-ROW |102872 |1354 |31911 |
-ROW |102873 |1354 |31912 |
-ROW |102874 |1354 |31913 |
-ROW |102875 |1354 |31914 |
-ROW |102876 |1354 |31915 |
-ROW |102877 |1354 |31916 |
-ROW |102878 |1354 |31917 |
-ROW |102879 |1354 |31918 |
-ROW |102880 |1354 |31919 |
-ROW |102881 |1354 |31920 |
-ROW |102882 |1354 |31921 |
-ROW |102883 |1354 |31922 |
-ROW |102884 |1354 |31923 |
-ROW |102885 |1354 |31924 |
-ROW |102886 |1354 |31925 |
-ROW |102887 |1354 |31926 |
-ROW |102888 |1354 |31927 |
-ROW |102889 |1354 |31928 |
-ROW |102890 |1354 |31929 |
-ROW |102891 |1354 |31930 |
-ROW |102892 |1354 |31931 |
-ROW |102893 |1354 |31932 |
-ROW |102894 |1354 |31933 |
-ROW |102895 |1354 |31934 |
-ROW |102896 |1354 |31935 |
-ROW |102897 |1354 |31936 |
-ROW |102898 |1354 |31937 |
-ROW |102899 |1354 |31938 |
-ROW |102900 |1354 |31939 |
-ROW |102901 |1354 |31940 |
-ROW |102902 |1354 |31941 |
-ROW |102903 |1354 |31942 |
-ROW |102904 |1354 |31943 |
-ROW |102905 |1354 |31944 |
-ROW |102906 |1354 |31945 |
-ROW |102907 |1354 |31946 |
-ROW |102908 |1354 |31947 |
-ROW |102909 |1354 |31948 |
-ROW |102910 |1354 |31949 |
-ROW |102911 |1354 |31950 |
-ROW |102912 |1354 |31951 |
-ROW |102913 |1354 |31952 |
-ROW |102914 |1354 |31953 |
-ROW |102915 |1354 |31954 |
-ROW |102916 |1354 |31955 |
-ROW |102917 |1354 |31956 |
-ROW |102918 |1354 |31957 |
-ROW |102919 |1354 |31958 |
-ROW |102920 |1354 |31959 |
-ROW |102921 |1354 |31960 |
-ROW |102922 |1354 |31961 |
-ROW |102923 |1354 |31962 |
-ROW |102924 |1354 |31963 |
-ROW |102925 |1109 |28511 |
-ROW |102926 |1342 |31554 |
-ROW |102927 |1342 |31555 |
-ROW |102928 |1342 |31556 |
-ROW |102929 |1343 |31557 |
-ROW |102930 |1343 |31558 |
-ROW |102931 |1343 |31559 |
-ROW |102932 |1343 |31560 |
-ROW |102933 |1343 |31561 |
-ROW |102934 |1343 |31562 |
-ROW |102935 |1343 |31563 |
-ROW |102936 |1343 |31564 |
-ROW |102937 |1343 |31565 |
-ROW |102938 |1343 |31566 |
-ROW |102939 |1343 |31567 |
-ROW |102940 |1343 |31568 |
-ROW |102941 |1343 |31569 |
-ROW |102942 |1343 |31570 |
-ROW |102943 |1343 |31571 |
-ROW |102944 |1343 |31572 |
-ROW |102945 |1343 |31573 |
-ROW |102946 |1343 |31574 |
-ROW |102947 |1343 |31575 |
-ROW |102948 |1344 |31576 |
-ROW |102949 |1344 |31577 |
-ROW |102950 |1344 |31578 |
-ROW |102951 |1344 |31579 |
-ROW |102952 |1344 |31580 |
-ROW |102953 |1344 |31581 |
-ROW |102954 |1344 |31582 |
-ROW |102955 |1344 |31583 |
-ROW |102956 |1344 |31584 |
-ROW |102957 |1344 |31585 |
-ROW |102958 |1344 |31586 |
-ROW |102959 |1344 |31587 |
-ROW |102960 |1344 |31588 |
-ROW |102961 |1344 |31589 |
-ROW |102962 |1344 |31590 |
-ROW |102963 |1344 |31591 |
-ROW |102964 |1344 |31592 |
-ROW |102965 |1344 |31593 |
-ROW |102966 |1344 |31594 |
-ROW |102967 |1344 |31595 |
-ROW |102968 |1344 |31596 |
-ROW |102969 |1342 |31605 |
-ROW |102970 |1342 |31606 |
-ROW |102971 |1342 |31607 |
-ROW |102972 |1342 |31608 |
-ROW |102973 |1342 |31609 |
-ROW |102974 |1343 |31610 |
-ROW |102975 |1343 |31611 |
-ROW |102976 |1343 |31612 |
-ROW |102977 |1343 |31613 |
-ROW |102978 |1343 |31614 |
-ROW |102979 |1343 |31615 |
-ROW |102980 |1343 |31616 |
-ROW |102981 |1343 |31617 |
-ROW |102982 |1343 |31618 |
-ROW |102983 |1343 |31619 |
-ROW |102984 |1343 |31620 |
-ROW |102985 |1343 |31621 |
-ROW |102986 |1344 |31622 |
-ROW |102987 |1344 |31623 |
-ROW |102988 |1344 |31624 |
-ROW |102989 |1344 |31625 |
-ROW |102990 |1360 |32158 |
-ROW |102991 |1360 |32159 |
-ROW |102992 |1361 |32160 |
-ROW |102993 |1361 |32161 |
-ROW |102994 |1361 |32162 |
-ROW |102995 |1361 |32163 |
-ROW |102996 |1361 |32164 |
-ROW |102997 |1361 |32165 |
-ROW |102998 |1361 |32166 |
-ROW |102999 |1361 |32167 |
-ROW |103000 |1361 |32168 |
-ROW |103001 |1361 |32169 |
-ROW |103002 |1361 |32170 |
-ROW |103003 |1361 |32171 |
-ROW |103004 |1361 |32172 |
-ROW |103005 |1361 |32173 |
-ROW |103006 |1361 |32174 |
-ROW |103007 |1361 |32175 |
-ROW |103008 |1361 |32176 |
-ROW |103009 |1361 |32177 |
-ROW |103010 |1361 |32178 |
-ROW |103011 |1361 |32179 |
-ROW |103012 |1361 |32180 |
-ROW |103013 |1361 |32181 |
-ROW |103014 |1361 |32182 |
-ROW |103015 |1361 |32183 |
-ROW |103016 |1361 |32184 |
-ROW |103017 |1361 |32185 |
-ROW |103018 |1361 |32186 |
-ROW |103019 |1361 |32187 |
-ROW |103020 |1361 |32188 |
-ROW |103021 |1361 |32189 |
-ROW |103022 |1361 |32190 |
-ROW |103023 |1361 |32191 |
-ROW |103024 |1361 |32192 |
-ROW |103025 |1361 |32201 |
-ROW |103026 |1361 |32202 |
-ROW |103027 |1361 |32203 |
-ROW |103028 |1361 |32204 |
-ROW |103029 |1361 |32205 |
-ROW |103030 |1361 |32206 |
-ROW |103031 |446 |23644 |
-ROW |103032 |447 |23645 |
-ROW |103033 |448 |23646 |
-ROW |103034 |449 |23647 |
-ROW |103035 |450 |23648 |
-ROW |103036 |451 |23649 |
-ROW |103037 |452 |23650 |
-ROW |103038 |453 |23651 |
-ROW |103039 |1111 |28585 |
-ROW |103040 |1111 |28586 |
-ROW |103041 |1111 |28587 |
-ROW |103042 |1111 |28588 |
-ROW |103043 |1111 |28589 |
-ROW |103044 |1111 |28590 |
-ROW |103045 |1111 |28591 |
-ROW |103046 |1111 |28592 |
-ROW |103047 |1111 |28593 |
-ROW |103048 |1111 |28594 |
-ROW |103049 |1111 |28595 |
-ROW |103050 |1111 |28596 |
-ROW |103051 |1111 |28597 |
-ROW |103052 |1111 |28598 |
-ROW |103053 |1111 |28599 |
-ROW |103054 |1111 |28600 |
-ROW |103055 |1111 |28601 |
-ROW |103056 |1111 |28602 |
-ROW |103057 |1111 |28603 |
-ROW |103058 |1111 |28604 |
-ROW |103059 |1111 |28605 |
-ROW |103060 |1111 |28606 |
-ROW |103061 |1111 |28607 |
-ROW |103062 |1111 |28608 |
-ROW |103063 |1111 |28609 |
-ROW |103064 |1111 |28610 |
-ROW |103065 |1111 |28611 |
-ROW |103066 |1111 |28612 |
-ROW |103067 |1111 |28613 |
-ROW |103068 |1111 |28614 |
-ROW |103069 |1111 |28615 |
-ROW |103070 |1111 |28616 |
-ROW |103071 |1111 |31052 |
-ROW |103072 |1110 |28539 |
-ROW |103073 |1110 |28540 |
-ROW |103074 |1110 |28541 |
-ROW |103075 |1110 |28542 |
-ROW |103076 |1110 |28543 |
-ROW |103077 |1110 |28544 |
-ROW |103078 |1110 |28545 |
-ROW |103079 |1110 |28546 |
-ROW |103080 |1110 |28547 |
-ROW |103081 |1110 |28548 |
-ROW |103082 |1110 |28549 |
-ROW |103083 |1110 |28550 |
-ROW |103084 |1110 |28551 |
-ROW |103085 |1110 |28552 |
-ROW |103086 |1110 |28553 |
-ROW |103087 |1110 |28554 |
-ROW |103088 |1110 |28555 |
-ROW |103089 |1110 |28556 |
-ROW |103090 |1110 |28557 |
-ROW |103091 |1110 |28558 |
-ROW |103092 |1110 |28559 |
-ROW |103093 |1110 |28560 |
-ROW |103094 |1110 |28561 |
-ROW |103095 |1110 |28562 |
-ROW |103096 |1110 |28563 |
-ROW |103097 |1110 |28564 |
-ROW |103098 |1110 |28565 |
-ROW |103099 |1110 |28566 |
-ROW |103100 |1110 |28567 |
-ROW |103101 |1110 |28568 |
-ROW |103102 |1110 |28569 |
-ROW |103103 |1110 |28570 |
-ROW |103104 |1110 |28571 |
-ROW |103105 |1110 |28572 |
-ROW |103106 |1110 |28573 |
-ROW |103107 |1110 |28574 |
-ROW |103108 |1110 |28575 |
-ROW |103109 |1110 |28576 |
-ROW |103110 |1110 |28577 |
-ROW |103111 |1110 |28578 |
-ROW |103112 |1110 |28579 |
-ROW |103113 |1110 |28580 |
-ROW |103114 |1110 |28581 |
-ROW |103115 |1110 |28582 |
-ROW |103116 |1110 |28583 |
-ROW |103117 |1110 |28584 |
-ROW |103118 |1110 |29821 |
-ROW |103119 |1110 |31053 |
-ROW |103120 |454 |23652 |
-ROW |103121 |455 |23653 |
-ROW |103122 |456 |23654 |
-ROW |103123 |356 |10067 |
-ROW |103124 |356 |10068 |
-ROW |103125 |356 |10069 |
-ROW |103126 |356 |10070 |
-ROW |103127 |356 |10071 |
-ROW |103128 |356 |10072 |
-ROW |103129 |356 |23340 |
-ROW |103130 |356 |23341 |
-ROW |103131 |356 |23342 |
-ROW |103132 |356 |23343 |
-ROW |103133 |356 |23344 |
-ROW |103134 |356 |23345 |
-ROW |103135 |356 |23346 |
-ROW |103136 |356 |23347 |
-ROW |103137 |356 |23348 |
-ROW |103138 |356 |23349 |
-ROW |103139 |356 |23350 |
-ROW |103140 |356 |23351 |
-ROW |103141 |356 |23352 |
-ROW |103142 |356 |23353 |
-ROW |103143 |356 |23354 |
-ROW |103144 |356 |23355 |
-ROW |103145 |356 |23356 |
-ROW |103146 |356 |23357 |
-ROW |103147 |356 |23358 |
-ROW |103148 |356 |23359 |
-ROW |103149 |356 |23360 |
-ROW |103150 |356 |25368 |
-ROW |103151 |356 |25369 |
-ROW |103152 |356 |28250 |
-ROW |103153 |356 |28251 |
-ROW |103154 |356 |28617 |
-ROW |103155 |356 |28618 |
-ROW |103156 |356 |28619 |
-ROW |103157 |179 |10061 |
-ROW |103158 |179 |10062 |
-ROW |103159 |179 |10063 |
-ROW |103160 |179 |10064 |
-ROW |103161 |179 |10065 |
-ROW |103162 |179 |10066 |
-ROW |103163 |179 |22183 |
-ROW |103164 |179 |22185 |
-ROW |103165 |179 |22187 |
-ROW |103166 |179 |22189 |
-ROW |103167 |179 |22191 |
-ROW |103168 |179 |22196 |
-ROW |103169 |179 |22199 |
-ROW |103170 |179 |22219 |
-ROW |103171 |179 |22396 |
-ROW |103172 |179 |22399 |
-ROW |103173 |179 |22400 |
-ROW |103174 |179 |22401 |
-ROW |103175 |179 |22402 |
-ROW |103176 |179 |22404 |
-ROW |103177 |179 |22406 |
-ROW |103178 |179 |22408 |
-ROW |103179 |179 |22412 |
-ROW |103180 |179 |22414 |
-ROW |103181 |179 |22416 |
-ROW |103182 |179 |22418 |
-ROW |103183 |179 |22420 |
-ROW |103184 |179 |22422 |
-ROW |103185 |179 |22424 |
-ROW |103186 |179 |22426 |
-ROW |103187 |179 |22430 |
-ROW |103188 |179 |22689 |
-ROW |103189 |179 |23171 |
-ROW |103190 |179 |23251 |
-ROW |103191 |179 |23634 |
-ROW |103192 |179 |23661 |
-ROW |103193 |179 |23663 |
-ROW |103194 |179 |25366 |
-ROW |103195 |179 |25370 |
-ROW |103196 |179 |25665 |
-ROW |103197 |179 |25666 |
-ROW |103198 |179 |28248 |
-ROW |103199 |179 |28533 |
-ROW |103200 |179 |28535 |
-ROW |103201 |179 |28537 |
-ROW |103202 |179 |29822 |
-ROW |103203 |345 |10073 |
-ROW |103204 |345 |10074 |
-ROW |103205 |345 |10075 |
-ROW |103206 |345 |10076 |
-ROW |103207 |345 |10077 |
-ROW |103208 |345 |10078 |
-ROW |103209 |345 |23252 |
-ROW |103210 |345 |23253 |
-ROW |103211 |345 |23255 |
-ROW |103212 |345 |23256 |
-ROW |103213 |345 |23257 |
-ROW |103214 |345 |23258 |
-ROW |103215 |345 |23259 |
-ROW |103216 |345 |23260 |
-ROW |103217 |345 |23261 |
-ROW |103218 |345 |23262 |
-ROW |103219 |345 |23264 |
-ROW |103220 |345 |23265 |
-ROW |103221 |345 |23266 |
-ROW |103222 |345 |23267 |
-ROW |103223 |345 |23268 |
-ROW |103224 |345 |23269 |
-ROW |103225 |345 |23270 |
-ROW |103226 |345 |23271 |
-ROW |103227 |345 |23272 |
-ROW |103228 |345 |23273 |
-ROW |103229 |345 |23274 |
-ROW |103230 |345 |23275 |
-ROW |103231 |345 |23276 |
-ROW |103232 |345 |23277 |
-ROW |103233 |345 |23328 |
-ROW |103234 |345 |23620 |
-ROW |103235 |345 |23625 |
-ROW |103236 |345 |23628 |
-ROW |103237 |345 |23635 |
-ROW |103238 |345 |23662 |
-ROW |103239 |345 |23664 |
-ROW |103240 |345 |25367 |
-ROW |103241 |345 |25371 |
-ROW |103242 |345 |25667 |
-ROW |103243 |345 |25668 |
-ROW |103244 |345 |28249 |
-ROW |103245 |345 |28534 |
-ROW |103246 |345 |28536 |
-ROW |103247 |345 |28538 |
-ROW |103248 |345 |29823 |
-ROW |103249 |280 |22917 |
-ROW |103250 |280 |22918 |
-ROW |103251 |273 |22920 |
-ROW |103252 |279 |22920 |
-ROW |103253 |273 |22921 |
-ROW |103254 |279 |22921 |
-ROW |103255 |273 |22922 |
-ROW |103256 |279 |22922 |
-ROW |103257 |273 |22923 |
-ROW |103258 |279 |22923 |
-ROW |103259 |273 |22924 |
-ROW |103260 |279 |22924 |
-ROW |103261 |275 |22933 |
-ROW |103262 |278 |22933 |
-ROW |103263 |275 |22934 |
-ROW |103264 |278 |22934 |
-ROW |103265 |275 |22938 |
-ROW |103266 |278 |22938 |
-ROW |103267 |275 |22939 |
-ROW |103268 |278 |22939 |
-ROW |103269 |278 |22940 |
-ROW |103270 |281 |22940 |
-ROW |103271 |281 |22941 |
-ROW |103272 |276 |22942 |
-ROW |103273 |276 |22943 |
-ROW |103274 |273 |23108 |
-ROW |103275 |331 |23108 |
-ROW |103276 |279 |23108 |
-ROW |103277 |273 |23109 |
-ROW |103278 |331 |23109 |
-ROW |103279 |279 |23109 |
-ROW |103280 |273 |23110 |
-ROW |103281 |279 |23110 |
-ROW |103282 |273 |23111 |
-ROW |103283 |331 |23111 |
-ROW |103284 |279 |23111 |
-ROW |103285 |273 |23112 |
-ROW |103286 |331 |23112 |
-ROW |103287 |279 |23112 |
-ROW |103288 |273 |23113 |
-ROW |103289 |279 |23113 |
-ROW |103290 |273 |23114 |
-ROW |103291 |279 |23114 |
-ROW |103292 |273 |23115 |
-ROW |103293 |279 |23115 |
-ROW |103294 |274 |23116 |
-ROW |103295 |279 |23116 |
-ROW |103296 |274 |23117 |
-ROW |103297 |279 |23117 |
-ROW |103298 |273 |23118 |
-ROW |103299 |331 |23118 |
-ROW |103300 |273 |23119 |
-ROW |103301 |279 |23119 |
-ROW |103302 |273 |23120 |
-ROW |103303 |279 |23120 |
-ROW |103304 |273 |23121 |
-ROW |103305 |279 |23121 |
-ROW |103306 |276 |23122 |
-ROW |103307 |279 |23122 |
-ROW |103308 |273 |23123 |
-ROW |103309 |279 |23123 |
-ROW |103310 |276 |23124 |
-ROW |103311 |276 |23125 |
-ROW |103312 |276 |23126 |
-ROW |103313 |276 |23127 |
-ROW |103314 |276 |23128 |
-ROW |103315 |276 |23129 |
-ROW |103316 |276 |23130 |
-ROW |103317 |276 |23131 |
-ROW |103318 |277 |22945 |
-ROW |103319 |277 |22946 |
-ROW |103320 |274 |22948 |
-ROW |103321 |274 |22949 |
-ROW |103322 |274 |22950 |
-ROW |103323 |274 |22951 |
-ROW |103324 |274 |22952 |
-ROW |103325 |268 |22875 |
-ROW |103326 |268 |22876 |
-ROW |103327 |270 |22877 |
-ROW |103328 |270 |22878 |
-ROW |103329 |265 |22879 |
-ROW |103330 |268 |22879 |
-ROW |103331 |263 |22880 |
-ROW |103332 |269 |22880 |
-ROW |103333 |263 |22881 |
-ROW |103334 |269 |22881 |
-ROW |103335 |263 |22882 |
-ROW |103336 |269 |22882 |
-ROW |103337 |263 |22883 |
-ROW |103338 |269 |22883 |
-ROW |103339 |263 |22884 |
-ROW |103340 |269 |22884 |
-ROW |103341 |263 |22885 |
-ROW |103342 |269 |22885 |
-ROW |103343 |263 |22886 |
-ROW |103344 |269 |22886 |
-ROW |103345 |263 |22888 |
-ROW |103346 |269 |22888 |
-ROW |103347 |263 |22891 |
-ROW |103348 |269 |22891 |
-ROW |103349 |263 |22892 |
-ROW |103350 |269 |22892 |
-ROW |103351 |265 |22893 |
-ROW |103352 |268 |22893 |
-ROW |103353 |265 |22894 |
-ROW |103354 |268 |22894 |
-ROW |103355 |266 |22895 |
-ROW |103356 |266 |22896 |
-ROW |103357 |266 |22897 |
-ROW |103358 |265 |22898 |
-ROW |103359 |268 |22898 |
-ROW |103360 |265 |22899 |
-ROW |103361 |268 |22899 |
-ROW |103362 |268 |22900 |
-ROW |103363 |271 |22900 |
-ROW |103364 |271 |22901 |
-ROW |103365 |266 |22902 |
-ROW |103366 |266 |22903 |
-ROW |103367 |264 |22908 |
-ROW |103368 |264 |22909 |
-ROW |103369 |264 |22910 |
-ROW |103370 |264 |22911 |
-ROW |103371 |264 |22912 |
-ROW |103372 |267 |23073 |
-ROW |103373 |267 |23074 |
-ROW |103374 |283 |22961 |
-ROW |103375 |289 |22961 |
-ROW |103376 |283 |22962 |
-ROW |103377 |289 |22962 |
-ROW |103378 |283 |22963 |
-ROW |103379 |289 |22963 |
-ROW |103380 |283 |22965 |
-ROW |103381 |289 |22965 |
-ROW |103382 |283 |22968 |
-ROW |103383 |289 |22968 |
-ROW |103384 |283 |22971 |
-ROW |103385 |289 |22971 |
-ROW |103386 |283 |22972 |
-ROW |103387 |289 |22972 |
-ROW |103388 |285 |22973 |
-ROW |103389 |288 |22973 |
-ROW |103390 |285 |22974 |
-ROW |103391 |288 |22974 |
-ROW |103392 |285 |22978 |
-ROW |103393 |288 |22978 |
-ROW |103394 |288 |22980 |
-ROW |103395 |291 |22980 |
-ROW |103396 |291 |22981 |
-ROW |103397 |286 |22982 |
-ROW |103398 |286 |22983 |
-ROW |103399 |287 |22985 |
-ROW |103400 |287 |22986 |
-ROW |103401 |284 |22988 |
-ROW |103402 |284 |22989 |
-ROW |103403 |284 |22990 |
-ROW |103404 |284 |22991 |
-ROW |103405 |284 |22992 |
-ROW |103406 |308 |23035 |
-ROW |103407 |308 |23036 |
-ROW |103408 |305 |23039 |
-ROW |103409 |308 |23039 |
-ROW |103410 |303 |23041 |
-ROW |103411 |309 |23041 |
-ROW |103412 |303 |23042 |
-ROW |103413 |309 |23042 |
-ROW |103414 |303 |23043 |
-ROW |103415 |309 |23043 |
-ROW |103416 |305 |23053 |
-ROW |103417 |308 |23053 |
-ROW |103418 |305 |23054 |
-ROW |103419 |308 |23054 |
-ROW |103420 |305 |23058 |
-ROW |103421 |308 |23058 |
-ROW |103422 |305 |23059 |
-ROW |103423 |308 |23059 |
-ROW |103424 |308 |23060 |
-ROW |103425 |311 |23060 |
-ROW |103426 |311 |23061 |
-ROW |103427 |306 |23062 |
-ROW |103428 |306 |23063 |
-ROW |103429 |307 |23077 |
-ROW |103430 |307 |23078 |
-ROW |103431 |304 |23068 |
-ROW |103432 |304 |23069 |
-ROW |103433 |304 |23070 |
-ROW |103434 |304 |23071 |
-ROW |103435 |304 |23072 |
-ROW |103436 |258 |22835 |
-ROW |103437 |258 |22836 |
-ROW |103438 |260 |22837 |
-ROW |103439 |260 |22838 |
-ROW |103440 |255 |22839 |
-ROW |103441 |258 |22839 |
-ROW |103442 |253 |22840 |
-ROW |103443 |259 |22840 |
-ROW |103444 |253 |22841 |
-ROW |103445 |259 |22841 |
-ROW |103446 |253 |22842 |
-ROW |103447 |259 |22842 |
-ROW |103448 |253 |22843 |
-ROW |103449 |259 |22843 |
-ROW |103450 |253 |22844 |
-ROW |103451 |259 |22844 |
-ROW |103452 |253 |22845 |
-ROW |103453 |259 |22845 |
-ROW |103454 |253 |22846 |
-ROW |103455 |259 |22846 |
-ROW |103456 |253 |22848 |
-ROW |103457 |259 |22848 |
-ROW |103458 |253 |22851 |
-ROW |103459 |259 |22851 |
-ROW |103460 |253 |22852 |
-ROW |103461 |259 |22852 |
-ROW |103462 |255 |22853 |
-ROW |103463 |258 |22853 |
-ROW |103464 |255 |22854 |
-ROW |103465 |258 |22854 |
-ROW |103466 |256 |22855 |
-ROW |103467 |256 |22856 |
-ROW |103468 |256 |22857 |
-ROW |103469 |255 |22858 |
-ROW |103470 |258 |22858 |
-ROW |103471 |255 |22859 |
-ROW |103472 |258 |22859 |
-ROW |103473 |258 |22860 |
-ROW |103474 |261 |22860 |
-ROW |103475 |261 |22861 |
-ROW |103476 |256 |22862 |
-ROW |103477 |256 |22863 |
-ROW |103478 |254 |22868 |
-ROW |103479 |254 |22869 |
-ROW |103480 |254 |22870 |
-ROW |103481 |254 |22871 |
-ROW |103482 |254 |22872 |
-ROW |103483 |257 |23075 |
-ROW |103484 |257 |23076 |
-ROW |103485 |298 |22996 |
-ROW |103486 |300 |22997 |
-ROW |103487 |300 |22998 |
-ROW |103488 |295 |22999 |
-ROW |103489 |298 |22999 |
-ROW |103490 |293 |23000 |
-ROW |103491 |299 |23000 |
-ROW |103492 |293 |23001 |
-ROW |103493 |299 |23001 |
-ROW |103494 |293 |23002 |
-ROW |103495 |299 |23002 |
-ROW |103496 |293 |23003 |
-ROW |103497 |299 |23003 |
-ROW |103498 |293 |23004 |
-ROW |103499 |299 |23004 |
-ROW |103500 |293 |23005 |
-ROW |103501 |299 |23005 |
-ROW |103502 |293 |23007 |
-ROW |103503 |299 |23007 |
-ROW |103504 |293 |23011 |
-ROW |103505 |299 |23011 |
-ROW |103506 |293 |23012 |
-ROW |103507 |299 |23012 |
-ROW |103508 |295 |23013 |
-ROW |103509 |298 |23013 |
-ROW |103510 |295 |23014 |
-ROW |103511 |298 |23014 |
-ROW |103512 |296 |23015 |
-ROW |103513 |296 |23016 |
-ROW |103514 |296 |23017 |
-ROW |103515 |295 |23018 |
-ROW |103516 |298 |23018 |
-ROW |103517 |295 |23019 |
-ROW |103518 |298 |23019 |
-ROW |103519 |298 |23020 |
-ROW |103520 |301 |23020 |
-ROW |103521 |301 |23021 |
-ROW |103522 |296 |23022 |
-ROW |103523 |296 |23023 |
-ROW |103524 |297 |23025 |
-ROW |103525 |297 |23026 |
-ROW |103526 |294 |23028 |
-ROW |103527 |294 |23029 |
-ROW |103528 |294 |23030 |
-ROW |103529 |294 |23031 |
-ROW |103530 |294 |23032 |
-ROW |103531 |743 |26925 |
-ROW |103532 |743 |26926 |
-ROW |103533 |741 |26927 |
-ROW |103534 |742 |26928 |
-ROW |103535 |743 |26929 |
-ROW |103536 |743 |26930 |
-ROW |103537 |743 |26931 |
-ROW |103538 |743 |26932 |
-ROW |103539 |745 |26933 |
-ROW |103540 |746 |26934 |
-ROW |103541 |744 |26935 |
-ROW |103542 |744 |26936 |
-ROW |103543 |746 |26937 |
-ROW |103544 |746 |26938 |
-ROW |103545 |746 |26939 |
-ROW |103546 |746 |26940 |
-ROW |103547 |746 |26941 |
-ROW |103548 |746 |26942 |
-ROW |103549 |745 |26943 |
-ROW |103550 |1362 |32207 |
-ROW |103551 |1362 |32208 |
-ROW |103552 |1362 |32209 |
-ROW |103553 |1362 |32210 |
-ROW |103554 |1362 |32211 |
-ROW |103555 |1362 |32212 |
-ROW |103556 |1362 |32213 |
-ROW |103557 |1362 |32214 |
-ROW |103558 |1362 |32215 |
-ROW |103559 |1362 |32216 |
-ROW |103560 |1362 |32217 |
-ROW |103561 |1362 |32218 |
-ROW |103562 |1362 |32219 |
-ROW |103563 |1362 |32220 |
-ROW |103564 |1362 |32221 |
-ROW |103565 |1362 |32222 |
-ROW |103566 |1362 |32223 |
-ROW |103567 |1362 |32224 |
-ROW |103568 |1362 |32225 |
-ROW |103569 |1362 |32226 |
-ROW |103570 |1362 |32227 |
-ROW |103571 |1362 |32228 |
-ROW |103572 |1362 |32229 |
-ROW |103573 |1362 |32230 |
-ROW |103574 |1362 |32231 |
-ROW |103575 |1362 |32232 |
-ROW |103576 |1362 |32233 |
-ROW |103577 |1362 |32234 |
-ROW |103578 |1362 |32235 |
-ROW |103579 |1362 |32236 |
-ROW |103580 |1362 |32237 |
-ROW |103581 |1362 |32238 |
-ROW |103582 |1362 |32239 |
-ROW |103583 |1362 |32240 |
-ROW |103584 |1362 |32241 |
-ROW |103585 |1362 |32242 |
-ROW |103586 |1362 |32243 |
-ROW |103587 |1362 |32244 |
-ROW |103588 |1362 |32245 |
-ROW |103589 |1362 |32246 |
-ROW |103590 |1362 |32247 |
-ROW |103591 |1362 |32248 |
-ROW |103592 |1362 |32249 |
-ROW |103593 |1362 |32250 |
-ROW |103594 |1362 |32251 |
-ROW |103595 |1362 |32252 |
-ROW |103596 |1362 |32253 |
-ROW |103597 |1362 |32254 |
-ROW |103598 |1362 |32255 |
-ROW |103599 |1362 |32256 |
-ROW |103600 |1362 |32257 |
-ROW |103601 |1362 |32258 |
-ROW |103602 |1362 |32259 |
-ROW |103603 |1362 |32260 |
-ROW |103604 |1362 |32261 |
-ROW |103605 |1362 |32262 |
-ROW |103606 |1362 |32263 |
-ROW |103607 |1362 |32264 |
-ROW |103608 |1362 |32265 |
-ROW |103609 |1362 |32266 |
-ROW |103610 |1362 |32267 |
-ROW |103611 |1362 |32268 |
-ROW |103612 |1362 |32269 |
-ROW |103613 |1362 |32270 |
-ROW |103614 |1362 |32271 |
-ROW |103615 |1362 |32272 |
-ROW |103616 |1362 |32273 |
-ROW |103617 |1328 |30821 |
-ROW |103618 |1328 |30822 |
-ROW |103619 |1330 |30823 |
-ROW |103620 |1330 |30824 |
-ROW |103621 |1330 |30825 |
-ROW |103622 |1330 |30826 |
-ROW |103623 |1328 |30827 |
-ROW |103624 |1330 |30828 |
-ROW |103625 |1330 |30829 |
-ROW |103626 |1330 |30830 |
-ROW |103627 |1328 |31054 |
-ROW |103628 |1328 |30831 |
-ROW |103629 |1328 |30832 |
-ROW |103630 |1328 |30833 |
-ROW |103631 |1328 |30834 |
-ROW |103632 |1328 |30835 |
-ROW |103633 |1329 |30836 |
-ROW |103634 |1328 |30837 |
-ROW |103635 |1328 |30838 |
-ROW |103636 |1328 |30839 |
-ROW |103637 |1329 |30840 |
-ROW |103638 |1328 |30841 |
-ROW |103639 |1329 |30842 |
-ROW |103640 |1329 |30843 |
-ROW |103641 |1329 |30844 |
-ROW |103642 |1329 |30845 |
-ROW |103643 |1328 |30846 |
-ROW |103644 |1328 |30847 |
-ROW |103645 |1328 |30848 |
-ROW |103646 |1328 |30849 |
-ROW |103647 |1328 |30850 |
-ROW |103648 |1328 |30851 |
-ROW |103649 |1328 |30852 |
-ROW |103650 |1328 |30853 |
-ROW |103651 |1328 |30854 |
-ROW |103652 |1328 |30855 |
-ROW |103653 |1328 |30856 |
-ROW |103654 |1328 |30857 |
-ROW |103655 |1328 |30858 |
-ROW |103656 |1328 |30859 |
-ROW |103657 |1328 |30860 |
-ROW |103658 |1328 |30861 |
-ROW |103659 |1328 |30862 |
-ROW |103660 |1328 |30863 |
-ROW |103661 |1328 |30864 |
-ROW |103662 |1328 |30865 |
-ROW |103663 |1328 |30866 |
-ROW |103664 |1328 |30867 |
-ROW |103665 |1328 |30868 |
-ROW |103666 |1328 |30869 |
-ROW |103667 |1328 |30870 |
-ROW |103668 |1328 |30871 |
-ROW |103669 |1328 |30872 |
-ROW |103670 |1329 |30873 |
-ROW |103671 |1434 |33017 |
-ROW |103672 |1434 |33018 |
-ROW |103673 |1433 |33019 |
-ROW |103674 |1434 |33020 |
-ROW |103675 |1434 |33021 |
-ROW |103676 |1433 |33022 |
-ROW |103677 |1433 |33023 |
-ROW |103678 |1433 |33024 |
-ROW |103679 |1433 |33025 |
-ROW |103680 |1433 |33026 |
-ROW |103681 |1433 |33027 |
-ROW |103682 |1433 |33028 |
-ROW |103683 |1433 |33029 |
-ROW |103684 |1433 |33030 |
-ROW |103685 |1433 |33031 |
-ROW |103686 |1433 |33032 |
-ROW |103687 |1433 |33033 |
-ROW |103688 |1433 |33034 |
-ROW |103689 |1433 |33035 |
-ROW |103690 |1433 |33036 |
-ROW |103691 |1433 |33037 |
-ROW |103692 |1433 |33038 |
-ROW |103693 |1433 |33039 |
-ROW |103694 |1433 |33040 |
-ROW |103695 |1433 |33041 |
-ROW |103696 |1433 |33042 |
-ROW |103697 |1433 |33043 |
-ROW |103698 |1433 |33044 |
-ROW |103699 |1433 |33045 |
-ROW |103700 |1433 |33046 |
-ROW |103701 |1433 |33047 |
-ROW |103702 |1433 |33048 |
-ROW |103703 |1433 |33049 |
-ROW |103704 |1433 |33050 |
-ROW |103705 |1433 |33051 |
-ROW |103706 |1433 |33052 |
-ROW |103707 |1433 |33053 |
-ROW |103708 |1433 |33054 |
-ROW |103709 |1433 |33055 |
-ROW |103710 |1433 |33056 |
-ROW |103711 |1433 |33057 |
-ROW |103712 |1433 |33058 |
-ROW |103713 |1433 |33059 |
-ROW |103714 |1433 |33060 |
-ROW |103715 |1434 |33065 |
-ROW |103716 |1434 |33066 |
-ROW |103717 |1433 |33122 |
-ROW |103718 |1433 |33123 |
-ROW |103719 |1433 |33124 |
-ROW |103720 |1433 |33125 |
-ROW |103721 |1433 |33126 |
-ROW |103722 |1433 |33127 |
-ROW |103723 |1433 |33128 |
-ROW |103724 |1433 |33129 |
-ROW |103725 |1433 |33130 |
-ROW |103726 |1433 |33131 |
-ROW |103727 |1433 |33132 |
-ROW |103728 |1433 |33133 |
-ROW |103729 |1433 |33134 |
-ROW |103730 |1433 |33135 |
-ROW |103731 |1433 |33136 |
-ROW |103732 |1433 |33137 |
-ROW |103733 |1433 |33138 |
-ROW |103734 |1435 |33567 |
-ROW |103735 |1435 |33139 |
-ROW |103736 |1436 |33140 |
-ROW |103737 |1435 |33141 |
-ROW |103738 |1436 |33142 |
-ROW |103739 |1435 |33144 |
-ROW |103740 |1435 |33145 |
-ROW |103741 |1435 |33146 |
-ROW |103742 |1435 |33147 |
-ROW |103743 |1435 |33148 |
-ROW |103744 |1435 |33149 |
-ROW |103745 |1435 |33150 |
-ROW |103746 |1435 |33151 |
-ROW |103747 |1435 |33152 |
-ROW |103748 |1435 |33153 |
-ROW |103749 |1435 |33154 |
-ROW |103750 |1435 |33155 |
-ROW |103751 |1435 |33156 |
-ROW |103752 |1435 |33157 |
-ROW |103753 |1435 |33158 |
-ROW |103754 |1435 |33159 |
-ROW |103755 |1435 |33160 |
-ROW |103756 |1435 |33161 |
-ROW |103757 |1435 |33162 |
-ROW |103758 |1435 |33163 |
-ROW |103759 |1435 |33164 |
-ROW |103760 |1435 |33165 |
-ROW |103761 |1435 |33166 |
-ROW |103762 |1435 |33167 |
-ROW |103763 |1435 |33168 |
-ROW |103764 |1435 |33169 |
-ROW |103765 |1435 |33170 |
-ROW |103766 |1435 |33171 |
-ROW |103767 |1435 |33172 |
-ROW |103768 |1436 |33177 |
-ROW |103769 |1436 |33178 |
-ROW |103770 |1336 |31055 |
-ROW |103771 |1335 |31056 |
-ROW |103772 |1335 |31057 |
-ROW |103773 |1335 |31058 |
-ROW |103774 |1335 |31626 |
-ROW |103775 |1335 |31627 |
-ROW |103776 |1335 |31628 |
-ROW |103777 |1336 |31059 |
-ROW |103778 |1335 |31060 |
-ROW |103779 |1335 |31061 |
-ROW |103780 |1335 |31062 |
-ROW |103781 |1335 |31063 |
-ROW |103782 |1335 |31064 |
-ROW |103783 |1335 |31065 |
-ROW |103784 |1335 |31066 |
-ROW |103785 |1335 |31067 |
-ROW |103786 |1335 |31068 |
-ROW |103787 |1335 |31069 |
-ROW |103788 |1335 |31070 |
-ROW |103789 |1335 |31071 |
-ROW |103790 |1335 |31072 |
-ROW |103791 |1335 |31073 |
-ROW |103792 |1335 |31074 |
-ROW |103793 |1335 |31075 |
-ROW |103794 |1335 |31076 |
-ROW |103795 |1335 |31077 |
-ROW |103796 |1335 |31078 |
-ROW |103797 |1335 |31079 |
-ROW |103798 |1335 |31080 |
-ROW |103799 |1335 |31081 |
-ROW |103800 |1335 |31082 |
-ROW |103801 |1335 |31083 |
-ROW |103802 |1335 |31084 |
-ROW |103803 |1335 |31085 |
-ROW |103804 |1335 |31086 |
-ROW |103805 |1335 |31087 |
-ROW |103806 |1335 |31088 |
-ROW |103807 |1335 |31089 |
-ROW |103808 |1335 |31090 |
-ROW |103809 |1336 |31091 |
-ROW |103810 |1335 |31092 |
-ROW |103811 |1336 |31093 |
-ROW |103812 |1336 |31094 |
-ROW |103813 |1335 |31095 |
-ROW |103814 |1335 |31096 |
-ROW |103815 |1335 |31097 |
-ROW |103816 |1335 |31098 |
-ROW |103817 |1335 |31099 |
-ROW |103818 |1335 |31100 |
-ROW |103819 |1335 |31101 |
-ROW |103820 |1335 |31102 |
-ROW |103821 |1335 |31103 |
-ROW |103822 |1335 |31104 |
-ROW |103823 |1335 |31105 |
-ROW |103824 |1335 |31106 |
-ROW |103825 |1335 |31107 |
-ROW |103826 |1335 |31108 |
-ROW |103827 |1335 |31109 |
-ROW |103828 |1335 |31110 |
-ROW |103829 |1335 |31111 |
-ROW |103830 |1335 |31112 |
-ROW |103831 |1335 |31113 |
-ROW |103832 |1335 |31114 |
-ROW |103833 |1335 |31115 |
-ROW |103834 |1335 |31116 |
-ROW |103835 |1335 |31117 |
-ROW |103836 |1335 |31118 |
-ROW |103837 |1335 |31119 |
-ROW |103838 |1335 |31120 |
-ROW |103839 |1335 |31121 |
-ROW |103840 |1336 |31128 |
-ROW |103841 |1336 |31129 |
-ROW |103842 |1336 |31130 |
-ROW |103843 |1336 |31132 |
-ROW |103844 |1336 |33194 |
-ROW |103845 |1314 |30431 |
-ROW |103846 |1314 |30432 |
-ROW |103847 |1315 |30433 |
-ROW |103848 |1314 |30434 |
-ROW |103849 |1314 |30435 |
-ROW |103850 |1314 |32546 |
-ROW |103851 |1315 |30436 |
-ROW |103852 |1314 |30437 |
-ROW |103853 |1314 |30438 |
-ROW |103854 |1314 |30439 |
-ROW |103855 |1314 |30440 |
-ROW |103856 |1314 |30441 |
-ROW |103857 |1314 |30442 |
-ROW |103858 |1315 |30443 |
-ROW |103859 |1314 |30444 |
-ROW |103860 |1314 |30445 |
-ROW |103861 |1314 |30446 |
-ROW |103862 |1314 |30447 |
-ROW |103863 |1314 |30449 |
-ROW |103864 |1314 |30450 |
-ROW |103865 |1314 |30451 |
-ROW |103866 |1314 |30452 |
-ROW |103867 |1314 |30453 |
-ROW |103868 |1314 |30454 |
-ROW |103869 |1314 |30455 |
-ROW |103870 |1314 |30456 |
-ROW |103871 |1314 |30457 |
-ROW |103872 |1314 |30458 |
-ROW |103873 |1314 |30459 |
-ROW |103874 |1314 |30460 |
-ROW |103875 |1314 |30461 |
-ROW |103876 |1314 |30462 |
-ROW |103877 |1314 |30463 |
-ROW |103878 |1314 |30464 |
-ROW |103879 |1314 |30465 |
-ROW |103880 |1314 |30466 |
-ROW |103881 |1314 |30470 |
-ROW |103882 |1314 |30471 |
-ROW |103883 |1314 |31168 |
-ROW |103884 |1314 |31169 |
-ROW |103885 |1314 |31170 |
-ROW |103886 |1314 |31171 |
-ROW |103887 |1314 |32547 |
-ROW |103888 |1314 |32548 |
-ROW |103889 |1314 |32549 |
-ROW |103890 |1314 |32550 |
-ROW |103891 |1314 |32551 |
-ROW |103892 |1314 |32552 |
-ROW |103893 |1314 |30474 |
-ROW |103894 |1315 |30475 |
-ROW |103895 |1314 |30476 |
-ROW |103896 |1314 |30477 |
-ROW |103897 |1314 |30478 |
-ROW |103898 |1314 |32554 |
-ROW |103899 |1314 |32555 |
-ROW |103900 |1314 |32556 |
-ROW |103901 |1314 |32557 |
-ROW |103902 |1314 |32558 |
-ROW |103903 |1314 |32559 |
-ROW |103904 |1322 |30637 |
-ROW |103905 |1322 |30638 |
-ROW |103906 |1323 |30639 |
-ROW |103907 |1322 |30640 |
-ROW |103908 |1322 |30641 |
-ROW |103909 |1322 |32560 |
-ROW |103910 |1323 |30642 |
-ROW |103911 |1322 |30643 |
-ROW |103912 |1322 |30644 |
-ROW |103913 |1322 |30645 |
-ROW |103914 |1322 |30646 |
-ROW |103915 |1322 |30647 |
-ROW |103916 |1322 |30648 |
-ROW |103917 |1323 |30649 |
-ROW |103918 |1322 |30650 |
-ROW |103919 |1322 |30651 |
-ROW |103920 |1322 |30652 |
-ROW |103921 |1322 |30653 |
-ROW |103922 |1322 |30655 |
-ROW |103923 |1322 |30656 |
-ROW |103924 |1322 |30657 |
-ROW |103925 |1322 |30658 |
-ROW |103926 |1322 |30659 |
-ROW |103927 |1322 |30660 |
-ROW |103928 |1322 |30661 |
-ROW |103929 |1322 |30662 |
-ROW |103930 |1322 |30663 |
-ROW |103931 |1322 |30664 |
-ROW |103932 |1322 |30665 |
-ROW |103933 |1322 |30666 |
-ROW |103934 |1322 |30667 |
-ROW |103935 |1322 |30668 |
-ROW |103936 |1322 |30669 |
-ROW |103937 |1322 |30670 |
-ROW |103938 |1322 |30671 |
-ROW |103939 |1322 |30672 |
-ROW |103940 |1322 |30676 |
-ROW |103941 |1322 |30677 |
-ROW |103942 |1322 |31172 |
-ROW |103943 |1322 |31173 |
-ROW |103944 |1322 |31174 |
-ROW |103945 |1322 |31175 |
-ROW |103946 |1322 |32561 |
-ROW |103947 |1322 |32562 |
-ROW |103948 |1322 |32563 |
-ROW |103949 |1322 |32564 |
-ROW |103950 |1322 |32565 |
-ROW |103951 |1322 |32566 |
-ROW |103952 |1322 |30680 |
-ROW |103953 |1323 |30681 |
-ROW |103954 |1322 |30682 |
-ROW |103955 |1322 |30683 |
-ROW |103956 |1322 |30684 |
-ROW |103957 |1322 |32568 |
-ROW |103958 |1322 |32569 |
-ROW |103959 |1322 |32570 |
-ROW |103960 |1322 |32571 |
-ROW |103961 |1322 |32572 |
-ROW |103962 |1322 |32573 |
-ROW |103963 |1317 |30479 |
-ROW |103964 |1316 |30480 |
-ROW |103965 |1316 |30481 |
-ROW |103966 |1316 |30482 |
-ROW |103967 |1316 |30483 |
-ROW |103968 |1316 |32574 |
-ROW |103969 |1316 |30484 |
-ROW |103970 |1317 |30485 |
-ROW |103971 |1316 |30486 |
-ROW |103972 |1317 |30487 |
-ROW |103973 |1316 |30488 |
-ROW |103974 |1316 |30489 |
-ROW |103975 |1316 |30490 |
-ROW |103976 |1316 |30491 |
-ROW |103977 |1316 |30492 |
-ROW |103978 |1316 |30493 |
-ROW |103979 |1316 |30494 |
-ROW |103980 |1316 |30495 |
-ROW |103981 |1316 |30496 |
-ROW |103982 |1316 |30497 |
-ROW |103983 |1316 |30499 |
-ROW |103984 |1316 |30500 |
-ROW |103985 |1316 |30503 |
-ROW |103986 |1316 |30504 |
-ROW |103987 |1316 |30505 |
-ROW |103988 |1316 |30506 |
-ROW |103989 |1316 |30507 |
-ROW |103990 |1316 |30508 |
-ROW |103991 |1316 |30509 |
-ROW |103992 |1316 |30510 |
-ROW |103993 |1316 |30512 |
-ROW |103994 |1316 |30513 |
-ROW |103995 |1316 |30514 |
-ROW |103996 |1316 |30515 |
-ROW |103997 |1316 |30516 |
-ROW |103998 |1316 |30517 |
-ROW |103999 |1316 |30518 |
-ROW |104000 |1316 |30519 |
-ROW |104001 |1316 |31176 |
-ROW |104002 |1316 |31177 |
-ROW |104003 |1316 |31178 |
-ROW |104004 |1316 |31179 |
-ROW |104005 |1316 |32575 |
-ROW |104006 |1316 |32576 |
-ROW |104007 |1316 |32577 |
-ROW |104008 |1316 |32578 |
-ROW |104009 |1316 |32579 |
-ROW |104010 |1316 |32580 |
-ROW |104011 |1316 |30522 |
-ROW |104012 |1317 |30523 |
-ROW |104013 |1316 |30524 |
-ROW |104014 |1316 |30525 |
-ROW |104015 |1316 |30526 |
-ROW |104016 |1316 |32582 |
-ROW |104017 |1316 |32583 |
-ROW |104018 |1316 |32584 |
-ROW |104019 |1316 |32585 |
-ROW |104020 |1316 |32586 |
-ROW |104021 |1316 |32587 |
-ROW |104022 |1345 |31629 |
-ROW |104023 |1345 |31630 |
-ROW |104024 |1346 |31631 |
-ROW |104025 |1345 |31632 |
-ROW |104026 |1346 |31633 |
-ROW |104027 |1346 |31634 |
-ROW |104028 |1346 |31635 |
-ROW |104029 |1346 |31636 |
-ROW |104030 |1346 |31637 |
-ROW |104031 |1346 |31638 |
-ROW |104032 |1346 |31639 |
-ROW |104033 |1345 |31640 |
-ROW |104034 |1345 |31641 |
-ROW |104035 |1346 |31642 |
-ROW |104036 |1346 |31643 |
-ROW |104037 |1346 |31644 |
-ROW |104038 |1346 |31645 |
-ROW |104039 |1345 |31646 |
-ROW |104040 |1345 |31647 |
-ROW |104041 |1345 |31648 |
-ROW |104042 |1345 |31649 |
-ROW |104043 |1345 |31650 |
-ROW |104044 |1345 |31651 |
-ROW |104045 |1345 |31652 |
-ROW |104046 |1345 |31653 |
-ROW |104047 |1345 |31654 |
-ROW |104048 |1345 |31655 |
-ROW |104049 |1345 |31656 |
-ROW |104050 |1345 |31657 |
-ROW |104051 |1345 |31658 |
-ROW |104052 |1345 |31659 |
-ROW |104053 |1345 |31660 |
-ROW |104054 |1345 |31661 |
-ROW |104055 |1345 |31662 |
-ROW |104056 |1345 |31663 |
-ROW |104057 |1345 |31664 |
-ROW |104058 |1345 |31665 |
-ROW |104059 |1345 |31666 |
-ROW |104060 |1345 |31667 |
-ROW |104061 |1345 |31668 |
-ROW |104062 |1345 |31669 |
-ROW |104063 |1345 |31670 |
-ROW |104064 |1345 |31671 |
-ROW |104065 |1345 |31672 |
-ROW |104066 |1345 |31673 |
-ROW |104067 |1345 |31674 |
-ROW |104068 |1345 |31675 |
-ROW |104069 |1345 |31676 |
-ROW |104070 |1345 |31677 |
-ROW |104071 |1345 |31678 |
-ROW |104072 |1345 |31679 |
-ROW |104073 |1345 |31680 |
-ROW |104074 |1345 |31681 |
-ROW |104075 |1345 |31682 |
-ROW |104076 |1345 |31683 |
-ROW |104077 |1345 |31684 |
-ROW |104078 |1345 |31685 |
-ROW |104079 |1345 |31686 |
-ROW |104080 |1345 |31687 |
-ROW |104081 |1345 |31688 |
-ROW |104082 |1345 |31689 |
-ROW |104083 |1345 |31690 |
-ROW |104084 |1345 |31691 |
-ROW |104085 |1345 |31692 |
-ROW |104086 |1345 |31693 |
-ROW |104087 |1345 |31694 |
-ROW |104088 |1345 |31695 |
-ROW |104089 |1345 |31696 |
-ROW |104090 |1345 |31697 |
-ROW |104091 |1345 |31698 |
-ROW |104092 |1345 |31699 |
-ROW |104093 |1345 |31700 |
-ROW |104094 |1345 |31701 |
-ROW |104095 |1345 |31702 |
-ROW |104096 |1345 |31703 |
-ROW |104097 |1345 |31704 |
-ROW |104098 |1345 |31705 |
-ROW |104099 |1340 |31361 |
-ROW |104100 |1340 |31362 |
-ROW |104101 |1340 |31363 |
-ROW |104102 |1339 |31364 |
-ROW |104103 |1339 |31365 |
-ROW |104104 |1340 |31367 |
-ROW |104105 |1340 |31368 |
-ROW |104106 |1340 |31369 |
-ROW |104107 |1340 |31727 |
-ROW |104108 |1340 |31728 |
-ROW |104109 |1339 |31370 |
-ROW |104110 |1339 |31398 |
-ROW |104111 |1339 |31407 |
-ROW |104112 |1339 |31425 |
-ROW |104113 |1339 |31426 |
-ROW |104114 |1339 |31427 |
-ROW |104115 |1339 |31428 |
-ROW |104116 |1339 |31729 |
-ROW |104117 |1339 |31730 |
-ROW |104118 |1339 |31731 |
-ROW |104119 |1339 |31732 |
-ROW |104120 |1339 |31733 |
-ROW |104121 |1339 |31734 |
-ROW |104122 |1339 |31735 |
-ROW |104123 |1339 |31736 |
-ROW |104124 |1339 |31737 |
-ROW |104125 |1339 |31738 |
-ROW |104126 |1339 |31739 |
-ROW |104127 |1339 |31740 |
-ROW |104128 |1339 |31741 |
-ROW |104129 |1339 |31742 |
-ROW |104130 |1339 |31743 |
-ROW |104131 |1339 |31744 |
-ROW |104132 |1339 |31745 |
-ROW |104133 |1339 |31746 |
-ROW |104134 |1339 |31747 |
-ROW |104135 |1339 |31748 |
-ROW |104136 |1339 |31749 |
-ROW |104137 |1339 |31750 |
-ROW |104138 |1339 |31751 |
-ROW |104139 |1339 |31752 |
-ROW |104140 |1339 |31753 |
-ROW |104141 |1339 |31754 |
-ROW |104142 |1339 |31755 |
-ROW |104143 |1339 |31756 |
-ROW |104144 |1339 |31757 |
-ROW |104145 |1339 |31758 |
-ROW |104146 |1339 |31759 |
-ROW |104147 |1339 |31760 |
-ROW |104148 |1339 |31761 |
-ROW |104149 |1339 |31762 |
-ROW |104150 |1339 |31763 |
-ROW |104151 |1339 |31764 |
-ROW |104152 |1339 |31765 |
-ROW |104153 |1339 |31766 |
-ROW |104154 |1339 |31767 |
-ROW |104155 |1339 |31768 |
-ROW |104156 |1339 |31769 |
-ROW |104157 |1339 |31770 |
-ROW |104158 |1339 |31771 |
-ROW |104159 |1339 |31772 |
-ROW |104160 |1339 |31773 |
-ROW |104161 |1339 |31774 |
-ROW |104162 |1339 |31775 |
-ROW |104163 |1339 |31776 |
-ROW |104164 |1339 |31777 |
-ROW |104165 |1339 |31778 |
-ROW |104166 |1339 |31779 |
-ROW |104167 |1339 |31780 |
-ROW |104168 |1339 |31781 |
-ROW |104169 |1339 |31782 |
-ROW |104170 |1339 |31783 |
-ROW |104171 |1339 |31784 |
-ROW |104172 |1339 |31785 |
-ROW |104173 |1115 |28671 |
-ROW |104174 |1115 |28672 |
-ROW |104175 |1114 |28673 |
-ROW |104176 |1114 |28674 |
-ROW |104177 |1115 |28675 |
-ROW |104178 |1114 |28676 |
-ROW |104179 |1114 |28677 |
-ROW |104180 |1114 |28678 |
-ROW |104181 |1114 |28679 |
-ROW |104182 |1114 |28680 |
-ROW |104183 |1114 |28681 |
-ROW |104184 |1115 |28682 |
-ROW |104185 |1115 |28683 |
-ROW |104186 |1114 |28684 |
-ROW |104187 |1114 |28685 |
-ROW |104188 |1115 |28686 |
-ROW |104189 |1115 |28687 |
-ROW |104190 |1114 |28688 |
-ROW |104191 |1114 |28689 |
-ROW |104192 |1114 |28690 |
-ROW |104193 |1114 |28691 |
-ROW |104194 |1114 |28692 |
-ROW |104195 |1114 |28693 |
-ROW |104196 |1114 |28694 |
-ROW |104197 |1114 |28695 |
-ROW |104198 |1114 |28696 |
-ROW |104199 |1114 |28697 |
-ROW |104200 |1114 |28698 |
-ROW |104201 |1114 |28699 |
-ROW |104202 |1114 |28700 |
-ROW |104203 |1114 |28701 |
-ROW |104204 |1114 |28702 |
-ROW |104205 |1114 |28703 |
-ROW |104206 |1114 |28704 |
-ROW |104207 |1114 |28705 |
-ROW |104208 |1114 |28706 |
-ROW |104209 |1114 |28707 |
-ROW |104210 |1114 |28708 |
-ROW |104211 |1114 |28709 |
-ROW |104212 |1114 |28710 |
-ROW |104213 |1115 |28713 |
-ROW |104214 |1115 |28714 |
-ROW |104215 |1338 |31180 |
-ROW |104216 |1337 |31181 |
-ROW |104217 |1338 |31182 |
-ROW |104218 |1338 |31183 |
-ROW |104219 |1338 |31185 |
-ROW |104220 |1338 |31186 |
-ROW |104221 |1337 |31188 |
-ROW |104222 |1337 |31189 |
-ROW |104223 |1337 |31190 |
-ROW |104224 |1337 |31191 |
-ROW |104225 |1337 |31192 |
-ROW |104226 |1337 |31193 |
-ROW |104227 |1337 |31194 |
-ROW |104228 |1338 |31195 |
-ROW |104229 |1338 |31196 |
-ROW |104230 |1337 |32592 |
-ROW |104231 |1337 |32593 |
-ROW |104232 |1337 |32594 |
-ROW |104233 |1338 |32595 |
-ROW |104234 |1337 |31197 |
-ROW |104235 |1337 |31199 |
-ROW |104236 |1337 |31200 |
-ROW |104237 |1337 |31201 |
-ROW |104238 |1337 |31202 |
-ROW |104239 |1337 |31203 |
-ROW |104240 |1337 |31204 |
-ROW |104241 |1337 |31205 |
-ROW |104242 |1337 |31206 |
-ROW |104243 |1337 |31207 |
-ROW |104244 |1337 |31208 |
-ROW |104245 |1337 |31209 |
-ROW |104246 |1337 |31210 |
-ROW |104247 |1337 |31211 |
-ROW |104248 |1337 |31212 |
-ROW |104249 |1337 |31213 |
-ROW |104250 |1337 |31215 |
-ROW |104251 |1337 |31216 |
-ROW |104252 |1337 |31217 |
-ROW |104253 |1337 |31218 |
-ROW |104254 |1337 |31219 |
-ROW |104255 |1337 |31220 |
-ROW |104256 |1337 |31221 |
-ROW |104257 |1337 |31222 |
-ROW |104258 |1337 |31223 |
-ROW |104259 |1337 |31224 |
-ROW |104260 |1337 |31225 |
-ROW |104261 |1337 |31226 |
-ROW |104262 |1337 |31227 |
-ROW |104263 |1337 |31228 |
-ROW |104264 |1337 |31229 |
-ROW |104265 |1337 |31230 |
-ROW |104266 |1337 |31231 |
-ROW |104267 |1337 |31232 |
-ROW |104268 |1337 |31233 |
-ROW |104269 |1337 |31234 |
-ROW |104270 |1337 |31235 |
-ROW |104271 |1337 |31236 |
-ROW |104272 |1337 |31237 |
-ROW |104273 |1337 |31238 |
-ROW |104274 |1337 |31239 |
-ROW |104275 |1337 |32596 |
-ROW |104276 |1302 |30273 |
-ROW |104277 |1302 |30274 |
-ROW |104278 |1303 |30275 |
-ROW |104279 |1303 |30276 |
-ROW |104280 |1302 |30277 |
-ROW |104281 |1302 |30278 |
-ROW |104282 |1302 |30279 |
-ROW |104283 |1302 |30280 |
-ROW |104284 |1302 |30281 |
-ROW |104285 |1302 |30282 |
-ROW |104286 |1302 |30283 |
-ROW |104287 |1302 |30284 |
-ROW |104288 |1302 |30285 |
-ROW |104289 |1302 |30286 |
-ROW |104290 |1302 |30287 |
-ROW |104291 |1302 |30288 |
-ROW |104292 |1302 |30289 |
-ROW |104293 |1302 |30290 |
-ROW |104294 |1302 |30291 |
-ROW |104295 |1302 |30292 |
-ROW |104296 |1302 |30293 |
-ROW |104297 |1302 |30294 |
-ROW |104298 |1302 |30295 |
-ROW |104299 |1302 |30296 |
-ROW |104300 |1302 |30297 |
-ROW |104301 |1302 |30298 |
-ROW |104302 |1302 |30299 |
-ROW |104303 |1302 |30300 |
-ROW |104304 |1302 |30301 |
-ROW |104305 |1302 |30302 |
-ROW |104306 |1302 |30303 |
-ROW |104307 |1302 |30304 |
-ROW |104308 |1302 |30305 |
-ROW |104309 |1302 |30306 |
-ROW |104310 |1302 |30307 |
-ROW |104311 |1302 |30308 |
-ROW |104312 |1302 |30309 |
-ROW |104313 |1302 |30310 |
-ROW |104314 |1302 |30311 |
-ROW |104315 |1302 |30312 |
-ROW |104316 |1302 |30313 |
-ROW |104317 |1302 |30314 |
-ROW |104318 |1302 |30315 |
-ROW |104319 |1302 |30316 |
-ROW |104320 |1302 |30317 |
-ROW |104321 |1302 |30318 |
-ROW |104322 |1302 |30319 |
-ROW |104323 |1302 |30320 |
-ROW |104324 |1302 |30321 |
-ROW |104325 |1302 |30322 |
-ROW |104326 |1302 |30323 |
-ROW |104327 |1302 |30324 |
-ROW |104328 |1302 |30325 |
-ROW |104329 |1302 |30326 |
-ROW |104330 |1302 |30327 |
-ROW |104331 |1302 |30328 |
-ROW |104332 |1302 |30329 |
-ROW |104333 |1302 |30330 |
-ROW |104334 |1302 |30331 |
-ROW |104335 |1302 |30332 |
-ROW |104336 |1302 |30333 |
-ROW |104337 |1302 |30334 |
-ROW |104338 |1302 |30335 |
-ROW |104339 |1302 |30336 |
-ROW |104340 |1302 |30344 |
-ROW |104341 |1302 |30345 |
-ROW |104342 |1302 |30346 |
-ROW |104343 |1302 |30347 |
-ROW |104344 |1302 |30351 |
-ROW |104345 |1302 |30352 |
-ROW |104346 |1302 |30353 |
-ROW |104347 |1302 |30354 |
-ROW |104348 |1302 |30355 |
-ROW |104349 |1302 |30356 |
-ROW |104350 |1302 |30357 |
-ROW |104351 |1302 |30358 |
-ROW |104352 |1302 |30359 |
-ROW |104353 |1302 |30360 |
-ROW |104354 |1302 |30361 |
-ROW |104355 |1302 |30362 |
-ROW |104356 |1302 |30363 |
-ROW |104357 |1302 |30364 |
-ROW |104358 |1302 |30365 |
-ROW |104359 |1302 |30366 |
-ROW |104360 |1302 |30367 |
-ROW |104361 |1302 |30368 |
-ROW |104362 |1302 |30369 |
-ROW |104363 |1302 |30370 |
-ROW |104364 |1302 |30371 |
-ROW |104365 |1302 |30372 |
-ROW |104366 |1302 |30373 |
-ROW |104367 |1302 |30374 |
-ROW |104368 |1302 |30375 |
-ROW |104369 |1302 |30376 |
-ROW |104370 |1302 |30377 |
-ROW |104371 |1302 |30378 |
-ROW |104372 |1302 |30379 |
-ROW |104373 |1302 |30380 |
-ROW |104374 |1302 |30381 |
-ROW |104375 |1302 |30382 |
-ROW |104376 |1302 |30383 |
-ROW |104377 |1302 |30384 |
-ROW |104378 |1302 |30385 |
-ROW |104379 |1302 |30386 |
-ROW |104380 |1302 |30387 |
-ROW |104381 |1302 |30388 |
-ROW |104382 |1302 |30389 |
-ROW |104383 |1302 |30390 |
-ROW |104384 |1302 |30391 |
-ROW |104385 |1302 |30392 |
-ROW |104386 |1302 |30393 |
-ROW |104387 |1302 |30394 |
-ROW |104388 |1302 |30395 |
-ROW |104389 |1302 |30397 |
-ROW |104390 |1302 |30398 |
-ROW |104391 |1302 |30399 |
-ROW |104392 |1302 |30400 |
-ROW |104393 |1302 |30401 |
-ROW |104394 |1302 |30402 |
-ROW |104395 |1302 |30403 |
-ROW |104396 |1302 |30404 |
-ROW |104397 |780 |27065 |
-ROW |104398 |780 |27066 |
-ROW |104399 |780 |27067 |
-ROW |104400 |799 |27149 |
-ROW |104401 |799 |27150 |
-ROW |104402 |799 |27151 |
-ROW |104403 |805 |27192 |
-ROW |104404 |805 |27193 |
-ROW |104405 |805 |27194 |
-ROW |104406 |813 |27225 |
-ROW |104407 |813 |27226 |
-ROW |104408 |813 |27227 |
-ROW |104409 |822 |27261 |
-ROW |104410 |822 |27262 |
-ROW |104411 |822 |27263 |
-ROW |104412 |825 |27282 |
-ROW |104413 |825 |27283 |
-ROW |104414 |825 |27284 |
-ROW |104415 |842 |27333 |
-ROW |104416 |842 |27334 |
-ROW |104417 |842 |27335 |
-ROW |104418 |847 |27365 |
-ROW |104419 |847 |27366 |
-ROW |104420 |847 |27367 |
-ROW |104421 |876 |27462 |
-ROW |104422 |876 |27463 |
-ROW |104423 |876 |27464 |
-ROW |104424 |885 |27496 |
-ROW |104425 |885 |27497 |
-ROW |104426 |885 |27498 |
-ROW |104427 |894 |27532 |
-ROW |104428 |894 |27533 |
-ROW |104429 |894 |27534 |
-ROW |104430 |903 |27568 |
-ROW |104431 |903 |27569 |
-ROW |104432 |903 |27570 |
-ROW |104433 |915 |27631 |
-ROW |104434 |915 |27632 |
-ROW |104435 |915 |27633 |
-ROW |104436 |918 |27654 |
-ROW |104437 |918 |27655 |
-ROW |104438 |918 |27656 |
-ROW |104439 |936 |27734 |
-ROW |104440 |936 |27735 |
-ROW |104441 |936 |27736 |
-ROW |104442 |944 |27766 |
-ROW |104443 |944 |27767 |
-ROW |104444 |944 |27768 |
-ROW |104445 |951 |27800 |
-ROW |104446 |951 |27801 |
-ROW |104447 |951 |27802 |
-ROW |104448 |971 |27882 |
-ROW |104449 |971 |27883 |
-ROW |104450 |971 |27884 |
-ROW |104451 |979 |27919 |
-ROW |104452 |979 |27920 |
-ROW |104453 |979 |27921 |
-ROW |104454 |988 |27956 |
-ROW |104455 |988 |27957 |
-ROW |104456 |988 |27958 |
-ROW |104457 |994 |27986 |
-ROW |104458 |994 |27987 |
-ROW |104459 |994 |27988 |
-ROW |104460 |1000 |28015 |
-ROW |104461 |1000 |28016 |
-ROW |104462 |1000 |28017 |
-ROW |104463 |1030 |28130 |
-ROW |104464 |1030 |28131 |
-ROW |104465 |1030 |28132 |
-ROW |104466 |1055 |28233 |
-ROW |104467 |1055 |28234 |
-ROW |104468 |1055 |28235 |
-ROW |104469 |1060 |28282 |
-ROW |104470 |1060 |28283 |
-ROW |104471 |1060 |28284 |
-ROW |104472 |1070 |28330 |
-ROW |104473 |1070 |28331 |
-ROW |104474 |1070 |28332 |
-ROW |104475 |1079 |28377 |
-ROW |104476 |1079 |28378 |
-ROW |104477 |1079 |28379 |
-ROW |104478 |1095 |28454 |
-ROW |104479 |1095 |28455 |
-ROW |104480 |1095 |28456 |
-ROW |104481 |1102 |28482 |
-ROW |104482 |1102 |28483 |
-ROW |104483 |1102 |28484 |
-ROW |104484 |1127 |28957 |
-ROW |104485 |1127 |28958 |
-ROW |104486 |1127 |28959 |
-ROW |104487 |1136 |29050 |
-ROW |104488 |1136 |29051 |
-ROW |104489 |1136 |29052 |
-ROW |104490 |1271 |30046 |
-ROW |104491 |1271 |30047 |
-ROW |104492 |1271 |30048 |
-ROW |104493 |1414 |32601 |
-ROW |104494 |1414 |32602 |
-ROW |104495 |1414 |32603 |
-ROW |104496 |1422 |32765 |
-ROW |104497 |1422 |32766 |
-ROW |104498 |1422 |32767 |
-ROW |104499 |800 |27152 |
-ROW |104500 |799 |27154 |
-ROW |104501 |800 |27157 |
-ROW |104502 |799 |29844 |
-ROW |104503 |800 |29845 |
-ROW |104504 |800 |29846 |
-ROW |104505 |800 |29847 |
-ROW |104506 |800 |29848 |
-ROW |104507 |804 |27195 |
-ROW |104508 |804 |27199 |
-ROW |104509 |805 |27202 |
-ROW |104510 |812 |27228 |
-ROW |104511 |812 |27232 |
-ROW |104512 |813 |27235 |
-ROW |104513 |821 |27264 |
-ROW |104514 |821 |27268 |
-ROW |104515 |822 |27271 |
-ROW |104516 |824 |27285 |
-ROW |104517 |824 |27289 |
-ROW |104518 |825 |27292 |
-ROW |104519 |841 |27336 |
-ROW |104520 |841 |27340 |
-ROW |104521 |842 |27343 |
-ROW |104522 |846 |27368 |
-ROW |104523 |846 |27372 |
-ROW |104524 |847 |27375 |
-ROW |104525 |875 |27465 |
-ROW |104526 |875 |27469 |
-ROW |104527 |876 |27472 |
-ROW |104528 |884 |27499 |
-ROW |104529 |884 |27503 |
-ROW |104530 |885 |27506 |
-ROW |104531 |893 |27535 |
-ROW |104532 |893 |27539 |
-ROW |104533 |894 |27542 |
-ROW |104534 |902 |27571 |
-ROW |104535 |902 |27575 |
-ROW |104536 |903 |27578 |
-ROW |104537 |914 |27634 |
-ROW |104538 |914 |27638 |
-ROW |104539 |915 |27641 |
-ROW |104540 |917 |27657 |
-ROW |104541 |917 |27661 |
-ROW |104542 |918 |27664 |
-ROW |104543 |935 |27737 |
-ROW |104544 |935 |27741 |
-ROW |104545 |936 |27744 |
-ROW |104546 |943 |27769 |
-ROW |104547 |943 |27773 |
-ROW |104548 |944 |27776 |
-ROW |104549 |950 |27803 |
-ROW |104550 |950 |27807 |
-ROW |104551 |951 |27810 |
-ROW |104552 |970 |27885 |
-ROW |104553 |970 |27889 |
-ROW |104554 |971 |27892 |
-ROW |104555 |978 |27922 |
-ROW |104556 |978 |27926 |
-ROW |104557 |979 |27929 |
-ROW |104558 |987 |27959 |
-ROW |104559 |987 |27963 |
-ROW |104560 |988 |27966 |
-ROW |104561 |993 |27989 |
-ROW |104562 |993 |27993 |
-ROW |104563 |994 |27996 |
-ROW |104564 |999 |28018 |
-ROW |104565 |999 |28022 |
-ROW |104566 |1000 |28025 |
-ROW |104567 |1029 |28133 |
-ROW |104568 |1029 |28137 |
-ROW |104569 |1030 |28140 |
-ROW |104570 |1054 |28236 |
-ROW |104571 |1054 |28240 |
-ROW |104572 |1055 |28243 |
-ROW |104573 |1059 |28285 |
-ROW |104574 |1059 |28289 |
-ROW |104575 |1060 |28292 |
-ROW |104576 |1069 |28333 |
-ROW |104577 |1069 |28337 |
-ROW |104578 |1070 |28340 |
-ROW |104579 |1078 |28380 |
-ROW |104580 |1078 |28384 |
-ROW |104581 |1079 |28387 |
-ROW |104582 |1094 |28457 |
-ROW |104583 |1094 |28461 |
-ROW |104584 |1095 |28464 |
-ROW |104585 |1101 |28485 |
-ROW |104586 |1101 |28489 |
-ROW |104587 |1102 |28492 |
-ROW |104588 |1126 |28960 |
-ROW |104589 |1126 |28964 |
-ROW |104590 |1127 |28967 |
-ROW |104591 |1135 |29053 |
-ROW |104592 |1135 |29057 |
-ROW |104593 |1136 |29060 |
-ROW |104594 |1000 |29834 |
-ROW |104595 |999 |29835 |
-ROW |104596 |999 |29836 |
-ROW |104597 |999 |29837 |
-ROW |104598 |999 |29838 |
-ROW |104599 |805 |29849 |
-ROW |104600 |804 |29850 |
-ROW |104601 |804 |29851 |
-ROW |104602 |804 |29852 |
-ROW |104603 |804 |29853 |
-ROW |104604 |813 |29854 |
-ROW |104605 |812 |29855 |
-ROW |104606 |812 |29856 |
-ROW |104607 |812 |29857 |
-ROW |104608 |812 |29858 |
-ROW |104609 |822 |29859 |
-ROW |104610 |821 |29860 |
-ROW |104611 |821 |29861 |
-ROW |104612 |821 |29862 |
-ROW |104613 |821 |29863 |
-ROW |104614 |825 |29864 |
-ROW |104615 |824 |29865 |
-ROW |104616 |824 |29866 |
-ROW |104617 |824 |29867 |
-ROW |104618 |824 |29868 |
-ROW |104619 |842 |29869 |
-ROW |104620 |841 |29870 |
-ROW |104621 |841 |29871 |
-ROW |104622 |841 |29872 |
-ROW |104623 |841 |29873 |
-ROW |104624 |847 |29874 |
-ROW |104625 |846 |29875 |
-ROW |104626 |846 |29876 |
-ROW |104627 |846 |29877 |
-ROW |104628 |846 |29878 |
-ROW |104629 |876 |29879 |
-ROW |104630 |875 |29880 |
-ROW |104631 |875 |29881 |
-ROW |104632 |875 |29882 |
-ROW |104633 |875 |29883 |
-ROW |104634 |885 |29884 |
-ROW |104635 |884 |29885 |
-ROW |104636 |884 |29886 |
-ROW |104637 |884 |29887 |
-ROW |104638 |884 |29888 |
-ROW |104639 |894 |29889 |
-ROW |104640 |893 |29890 |
-ROW |104641 |893 |29891 |
-ROW |104642 |893 |29892 |
-ROW |104643 |893 |29893 |
-ROW |104644 |903 |29894 |
-ROW |104645 |902 |29895 |
-ROW |104646 |902 |29896 |
-ROW |104647 |902 |29897 |
-ROW |104648 |902 |29898 |
-ROW |104649 |915 |29899 |
-ROW |104650 |914 |29900 |
-ROW |104651 |914 |29901 |
-ROW |104652 |914 |29902 |
-ROW |104653 |914 |29903 |
-ROW |104654 |918 |29904 |
-ROW |104655 |917 |29905 |
-ROW |104656 |917 |29906 |
-ROW |104657 |917 |29907 |
-ROW |104658 |917 |29908 |
-ROW |104659 |936 |29909 |
-ROW |104660 |935 |29910 |
-ROW |104661 |935 |29911 |
-ROW |104662 |935 |29912 |
-ROW |104663 |935 |29913 |
-ROW |104664 |944 |29914 |
-ROW |104665 |943 |29915 |
-ROW |104666 |943 |29916 |
-ROW |104667 |943 |29917 |
-ROW |104668 |943 |29918 |
-ROW |104669 |951 |29919 |
-ROW |104670 |950 |29920 |
-ROW |104671 |950 |29921 |
-ROW |104672 |950 |29922 |
-ROW |104673 |950 |29923 |
-ROW |104674 |971 |29924 |
-ROW |104675 |970 |29925 |
-ROW |104676 |970 |29926 |
-ROW |104677 |970 |29927 |
-ROW |104678 |970 |29928 |
-ROW |104679 |979 |29929 |
-ROW |104680 |978 |29930 |
-ROW |104681 |978 |29931 |
-ROW |104682 |978 |29932 |
-ROW |104683 |978 |29933 |
-ROW |104684 |988 |29934 |
-ROW |104685 |987 |29935 |
-ROW |104686 |987 |29936 |
-ROW |104687 |987 |29937 |
-ROW |104688 |987 |29938 |
-ROW |104689 |994 |29939 |
-ROW |104690 |993 |29940 |
-ROW |104691 |993 |29941 |
-ROW |104692 |993 |29942 |
-ROW |104693 |993 |29943 |
-ROW |104694 |1030 |29944 |
-ROW |104695 |1029 |29945 |
-ROW |104696 |1029 |29946 |
-ROW |104697 |1029 |29947 |
-ROW |104698 |1029 |29948 |
-ROW |104699 |1055 |29954 |
-ROW |104700 |1054 |29955 |
-ROW |104701 |1054 |29956 |
-ROW |104702 |1054 |29957 |
-ROW |104703 |1054 |29958 |
-ROW |104704 |1060 |29959 |
-ROW |104705 |1059 |29960 |
-ROW |104706 |1059 |29961 |
-ROW |104707 |1059 |29962 |
-ROW |104708 |1059 |29963 |
-ROW |104709 |1070 |29964 |
-ROW |104710 |1069 |29965 |
-ROW |104711 |1069 |29966 |
-ROW |104712 |1069 |29967 |
-ROW |104713 |1069 |29968 |
-ROW |104714 |1079 |29969 |
-ROW |104715 |1078 |29970 |
-ROW |104716 |1078 |29971 |
-ROW |104717 |1078 |29972 |
-ROW |104718 |1078 |29973 |
-ROW |104719 |1095 |29974 |
-ROW |104720 |1094 |29975 |
-ROW |104721 |1094 |29976 |
-ROW |104722 |1094 |29977 |
-ROW |104723 |1094 |29978 |
-ROW |104724 |1102 |29979 |
-ROW |104725 |1101 |29980 |
-ROW |104726 |1101 |29981 |
-ROW |104727 |1101 |29982 |
-ROW |104728 |1101 |29983 |
-ROW |104729 |1127 |29984 |
-ROW |104730 |1126 |29985 |
-ROW |104731 |1126 |29986 |
-ROW |104732 |1126 |29987 |
-ROW |104733 |1126 |29988 |
-ROW |104734 |1136 |29989 |
-ROW |104735 |1135 |29990 |
-ROW |104736 |1135 |29991 |
-ROW |104737 |1135 |29992 |
-ROW |104738 |1135 |29993 |
-ROW |104739 |1270 |30049 |
-ROW |104740 |1270 |30050 |
-ROW |104741 |1270 |30051 |
-ROW |104742 |1270 |30052 |
-ROW |104743 |1270 |30053 |
-ROW |104744 |1270 |30054 |
-ROW |104745 |1271 |30055 |
-ROW |104746 |1271 |30056 |
-ROW |104747 |1413 |32604 |
-ROW |104748 |1413 |32605 |
-ROW |104749 |1413 |32606 |
-ROW |104750 |1413 |32607 |
-ROW |104751 |1413 |32608 |
-ROW |104752 |1413 |32609 |
-ROW |104753 |1414 |32610 |
-ROW |104754 |1414 |32611 |
-ROW |104755 |1421 |32768 |
-ROW |104756 |1421 |32769 |
-ROW |104757 |1421 |32770 |
-ROW |104758 |1421 |32771 |
-ROW |104759 |1421 |32772 |
-ROW |104760 |1421 |32773 |
-ROW |104761 |1422 |32774 |
-ROW |104762 |1422 |32775 |
-ROW |104763 |1283 |30142 |
-ROW |104764 |1286 |30143 |
-ROW |104765 |1292 |30145 |
-ROW |104766 |1295 |30146 |
-ROW |104767 |1284 |30157 |
-ROW |104768 |1284 |30158 |
-ROW |104769 |1284 |30159 |
-ROW |104770 |1287 |30163 |
-ROW |104771 |1287 |30164 |
-ROW |104772 |1287 |30165 |
-ROW |104773 |1293 |30175 |
-ROW |104774 |1293 |30176 |
-ROW |104775 |1293 |30177 |
-ROW |104776 |1296 |30181 |
-ROW |104777 |1296 |30182 |
-ROW |104778 |1296 |30183 |
-ROW |104779 |1419 |32741 |
-ROW |104780 |1420 |32753 |
-ROW |104781 |1221 |22231 |
-ROW |104782 |1221 |22232 |
-ROW |104783 |1221 |23318 |
-ROW |104784 |1222 |29544 |
-ROW |104785 |1223 |29545 |
-ROW |104786 |1223 |29546 |
-ROW |104787 |1224 |29547 |
-ROW |104788 |1225 |10020 |
-ROW |104789 |1225 |10059 |
-ROW |104790 |1226 |22833 |
-ROW |104791 |1226 |22834 |
-ROW |104792 |1228 |22873 |
-ROW |104793 |1228 |22874 |
-ROW |104794 |1230 |22913 |
-ROW |104795 |1230 |22914 |
-ROW |104796 |1232 |22953 |
-ROW |104797 |1232 |22954 |
-ROW |104798 |1234 |22993 |
-ROW |104799 |1234 |22994 |
-ROW |104800 |1236 |23033 |
-ROW |104801 |1236 |23034 |
-ROW |104802 |1238 |23160 |
-ROW |104803 |1238 |23161 |
-ROW |104804 |1225 |23319 |
-ROW |104805 |1226 |23320 |
-ROW |104806 |1228 |23321 |
-ROW |104807 |1230 |23322 |
-ROW |104808 |1232 |23323 |
-ROW |104809 |1234 |23324 |
-ROW |104810 |1236 |23325 |
-ROW |104811 |1238 |23326 |
-ROW |104812 |1161 |29548 |
-ROW |104813 |1227 |29549 |
-ROW |104814 |1229 |29550 |
-ROW |104815 |1231 |29551 |
-ROW |104816 |1233 |29552 |
-ROW |104817 |1235 |29553 |
-ROW |104818 |1237 |29554 |
-ROW |104819 |1219 |29555 |
-ROW |104820 |1241 |29558 |
-ROW |104821 |1242 |29559 |
-ROW |104822 |1241 |29560 |
-ROW |104823 |1269 |29995 |
-ROW |104824 |1192 |29996 |
-ROW |104825 |1269 |29997 |
-ROW |104826 |1240 |23287 |
-ROW |104827 |1240 |23288 |
-ROW |104828 |1240 |23327 |
-ROW |104829 |1171 |29557 |
-ROW |104830 |810 |27203 |
-ROW |104831 |807 |27207 |
-ROW |104832 |806 |27208 |
-ROW |104833 |810 |30086 |
-ROW |104834 |807 |30087 |
-ROW |104835 |807 |30088 |
-ROW |104836 |807 |30089 |
-ROW |104837 |808 |27212 |
-ROW |104838 |809 |27213 |
-ROW |104839 |810 |27214 |
-ROW |104840 |1279 |30091 |
-ROW |104841 |1279 |30092 |
-ROW |104842 |1364 |28305 |
-ROW |104843 |1068 |28323 |
-ROW |104844 |1068 |28324 |
-ROW |104845 |1062 |28325 |
-ROW |104846 |1062 |28326 |
-ROW |104847 |1064 |28327 |
-ROW |104848 |1064 |28328 |
-ROW |104849 |1066 |28329 |
-ROW |104850 |1363 |32307 |
-ROW |104851 |819 |27236 |
-ROW |104852 |819 |27237 |
-ROW |104853 |813 |27238 |
-ROW |104854 |814 |27240 |
-ROW |104855 |815 |30093 |
-ROW |104856 |816 |27246 |
-ROW |104857 |816 |27247 |
-ROW |104858 |817 |27248 |
-ROW |104859 |818 |27249 |
-ROW |104860 |818 |27250 |
-ROW |104861 |826 |27294 |
-ROW |104862 |831 |27295 |
-ROW |104863 |831 |27296 |
-ROW |104864 |835 |27297 |
-ROW |104865 |827 |30094 |
-ROW |104866 |836 |27299 |
-ROW |104867 |838 |27301 |
-ROW |104868 |837 |30095 |
-ROW |104869 |839 |30096 |
-ROW |104870 |829 |27312 |
-ROW |104871 |830 |27313 |
-ROW |104872 |828 |27314 |
-ROW |104873 |828 |27315 |
-ROW |104874 |833 |27316 |
-ROW |104875 |834 |27317 |
-ROW |104876 |832 |27318 |
-ROW |104877 |835 |27319 |
-ROW |104878 |835 |27320 |
-ROW |104879 |1444 |33197 |
-ROW |104880 |1444 |33198 |
-ROW |104881 |1444 |33199 |
-ROW |104882 |1439 |33200 |
-ROW |104883 |1439 |33201 |
-ROW |104884 |1439 |33202 |
-ROW |104885 |1440 |33203 |
-ROW |104886 |1440 |33204 |
-ROW |104887 |1439 |33205 |
-ROW |104888 |1439 |33206 |
-ROW |104889 |1439 |33207 |
-ROW |104890 |1440 |33208 |
-ROW |104891 |1444 |33209 |
-ROW |104892 |1444 |33210 |
-ROW |104893 |1437 |33219 |
-ROW |104894 |1440 |33220 |
-ROW |104895 |1438 |33221 |
-ROW |104896 |1441 |33222 |
-ROW |104897 |1441 |33223 |
-ROW |104898 |1441 |33224 |
-ROW |104899 |1443 |33235 |
-ROW |104900 |1445 |33236 |
-ROW |104901 |1445 |33237 |
-ROW |104902 |1453 |33238 |
-ROW |104903 |1453 |33239 |
-ROW |104904 |1453 |33240 |
-ROW |104905 |1448 |33241 |
-ROW |104906 |1448 |33242 |
-ROW |104907 |1448 |33243 |
-ROW |104908 |1449 |33244 |
-ROW |104909 |1449 |33245 |
-ROW |104910 |1448 |33246 |
-ROW |104911 |1448 |33247 |
-ROW |104912 |1448 |33248 |
-ROW |104913 |1449 |33249 |
-ROW |104914 |1453 |33250 |
-ROW |104915 |1453 |33251 |
-ROW |104916 |1446 |33260 |
-ROW |104917 |1449 |33261 |
-ROW |104918 |1447 |33262 |
-ROW |104919 |1450 |33263 |
-ROW |104920 |1450 |33264 |
-ROW |104921 |1450 |33265 |
-ROW |104922 |1452 |33276 |
-ROW |104923 |1454 |33277 |
-ROW |104924 |1454 |33278 |
-ROW |104925 |1462 |33279 |
-ROW |104926 |1462 |33280 |
-ROW |104927 |1462 |33281 |
-ROW |104928 |1457 |33282 |
-ROW |104929 |1457 |33283 |
-ROW |104930 |1457 |33284 |
-ROW |104931 |1458 |33285 |
-ROW |104932 |1458 |33286 |
-ROW |104933 |1457 |33287 |
-ROW |104934 |1457 |33288 |
-ROW |104935 |1457 |33289 |
-ROW |104936 |1458 |33290 |
-ROW |104937 |1462 |33291 |
-ROW |104938 |1462 |33292 |
-ROW |104939 |1455 |33301 |
-ROW |104940 |1458 |33302 |
-ROW |104941 |1456 |33303 |
-ROW |104942 |1459 |33304 |
-ROW |104943 |1459 |33305 |
-ROW |104944 |1459 |33306 |
-ROW |104945 |1461 |33317 |
-ROW |104946 |1463 |33318 |
-ROW |104947 |1463 |33319 |
-ROW |104948 |1471 |33320 |
-ROW |104949 |1471 |33321 |
-ROW |104950 |1471 |33322 |
-ROW |104951 |1466 |33323 |
-ROW |104952 |1466 |33324 |
-ROW |104953 |1466 |33325 |
-ROW |104954 |1467 |33326 |
-ROW |104955 |1467 |33327 |
-ROW |104956 |1466 |33328 |
-ROW |104957 |1466 |33329 |
-ROW |104958 |1466 |33330 |
-ROW |104959 |1467 |33331 |
-ROW |104960 |1471 |33332 |
-ROW |104961 |1471 |33333 |
-ROW |104962 |1464 |33342 |
-ROW |104963 |1467 |33343 |
-ROW |104964 |1465 |33344 |
-ROW |104965 |1468 |33345 |
-ROW |104966 |1468 |33346 |
-ROW |104967 |1468 |33347 |
-ROW |104968 |1470 |33358 |
-ROW |104969 |1472 |33359 |
-ROW |104970 |1472 |33360 |
-ROW |104971 |1480 |33361 |
-ROW |104972 |1480 |33362 |
-ROW |104973 |1480 |33363 |
-ROW |104974 |1475 |33364 |
-ROW |104975 |1475 |33365 |
-ROW |104976 |1475 |33366 |
-ROW |104977 |1476 |33367 |
-ROW |104978 |1476 |33368 |
-ROW |104979 |1475 |33369 |
-ROW |104980 |1475 |33370 |
-ROW |104981 |1475 |33371 |
-ROW |104982 |1476 |33372 |
-ROW |104983 |1480 |33373 |
-ROW |104984 |1480 |33374 |
-ROW |104985 |1473 |33383 |
-ROW |104986 |1476 |33384 |
-ROW |104987 |1474 |33385 |
-ROW |104988 |1477 |33386 |
-ROW |104989 |1477 |33387 |
-ROW |104990 |1477 |33388 |
-ROW |104991 |1479 |33399 |
-ROW |104992 |1481 |33400 |
-ROW |104993 |1481 |33401 |
-ROW |104994 |851 |27376 |
-ROW |104995 |852 |27378 |
-ROW |104996 |852 |27379 |
-ROW |104997 |852 |30097 |
-ROW |104998 |869 |27380 |
-ROW |104999 |870 |27382 |
-ROW |105000 |870 |27383 |
-ROW |105001 |858 |27385 |
-ROW |105002 |858 |27386 |
-ROW |105003 |1048 |28209 |
-ROW |105004 |1048 |28210 |
-ROW |105005 |858 |30098 |
-ROW |105006 |870 |30099 |
-ROW |105007 |1048 |30100 |
-ROW |105008 |848 |27415 |
-ROW |105009 |848 |27416 |
-ROW |105010 |849 |27417 |
-ROW |105011 |852 |27419 |
-ROW |105012 |853 |27420 |
-ROW |105013 |853 |27421 |
-ROW |105014 |854 |27422 |
-ROW |105015 |855 |27423 |
-ROW |105016 |1056 |28246 |
-ROW |105017 |848 |30101 |
-ROW |105018 |856 |27425 |
-ROW |105019 |856 |27426 |
-ROW |105020 |857 |27427 |
-ROW |105021 |858 |27428 |
-ROW |105022 |859 |27429 |
-ROW |105023 |859 |27430 |
-ROW |105024 |860 |27431 |
-ROW |105025 |861 |27432 |
-ROW |105026 |868 |27443 |
-ROW |105027 |868 |27444 |
-ROW |105028 |870 |27445 |
-ROW |105029 |871 |27446 |
-ROW |105030 |871 |27447 |
-ROW |105031 |872 |27448 |
-ROW |105032 |873 |27449 |
-ROW |105033 |1048 |28208 |
-ROW |105034 |1049 |28215 |
-ROW |105035 |1050 |28216 |
-ROW |105036 |1051 |28217 |
-ROW |105037 |1051 |28218 |
-ROW |105038 |1052 |28220 |
-ROW |105039 |1052 |28222 |
-ROW |105040 |1057 |28247 |
-ROW |105041 |856 |30102 |
-ROW |105042 |868 |30103 |
-ROW |105043 |1052 |30104 |
-ROW |105044 |877 |27478 |
-ROW |105045 |880 |27479 |
-ROW |105046 |881 |27480 |
-ROW |105047 |882 |27481 |
-ROW |105048 |882 |27482 |
-ROW |105049 |882 |27483 |
-ROW |105050 |882 |27484 |
-ROW |105051 |879 |27485 |
-ROW |105052 |878 |30105 |
-ROW |105053 |891 |27508 |
-ROW |105054 |891 |27509 |
-ROW |105055 |891 |27510 |
-ROW |105056 |886 |27511 |
-ROW |105057 |891 |30106 |
-ROW |105058 |888 |27517 |
-ROW |105059 |890 |27518 |
-ROW |105060 |889 |27519 |
-ROW |105061 |887 |30107 |
-ROW |105062 |900 |27543 |
-ROW |105063 |900 |27544 |
-ROW |105064 |900 |27545 |
-ROW |105065 |900 |27546 |
-ROW |105066 |895 |27547 |
-ROW |105067 |897 |27553 |
-ROW |105068 |899 |27554 |
-ROW |105069 |898 |27555 |
-ROW |105070 |896 |30108 |
-ROW |105071 |909 |27579 |
-ROW |105072 |909 |27580 |
-ROW |105073 |909 |27582 |
-ROW |105074 |909 |27583 |
-ROW |105075 |906 |27584 |
-ROW |105076 |906 |27585 |
-ROW |105077 |904 |27586 |
-ROW |105078 |909 |30109 |
-ROW |105079 |905 |27591 |
-ROW |105080 |907 |27593 |
-ROW |105081 |908 |27594 |
-ROW |105082 |908 |27595 |
-ROW |105083 |905 |30110 |
-ROW |105084 |905 |30111 |
-ROW |105085 |919 |27671 |
-ROW |105086 |921 |27672 |
-ROW |105087 |922 |27673 |
-ROW |105088 |923 |27674 |
-ROW |105089 |924 |27675 |
-ROW |105090 |924 |27676 |
-ROW |105091 |924 |27677 |
-ROW |105092 |924 |27678 |
-ROW |105093 |924 |27679 |
-ROW |105094 |920 |30112 |
-ROW |105095 |1036 |28141 |
-ROW |105096 |1036 |28142 |
-ROW |105097 |1031 |28143 |
-ROW |105098 |1033 |28150 |
-ROW |105099 |1032 |28153 |
-ROW |105100 |1034 |28154 |
-ROW |105101 |1035 |28155 |
-ROW |105102 |1033 |28156 |
-ROW |105103 |1036 |28157 |
-ROW |105104 |1036 |28158 |
-ROW |105105 |1032 |30113 |
-ROW |105106 |1032 |30114 |
-ROW |105107 |1032 |30115 |
-ROW |105108 |941 |27748 |
-ROW |105109 |941 |27749 |
-ROW |105110 |941 |27750 |
-ROW |105111 |939 |27751 |
-ROW |105112 |937 |27753 |
-ROW |105113 |941 |27754 |
-ROW |105114 |940 |27755 |
-ROW |105115 |938 |30116 |
-ROW |105116 |948 |27777 |
-ROW |105117 |948 |27778 |
-ROW |105118 |945 |27783 |
-ROW |105119 |945 |27784 |
-ROW |105120 |948 |27785 |
-ROW |105121 |946 |27786 |
-ROW |105122 |947 |27787 |
-ROW |105123 |957 |27812 |
-ROW |105124 |957 |27813 |
-ROW |105125 |951 |27814 |
-ROW |105126 |957 |30117 |
-ROW |105127 |954 |27821 |
-ROW |105128 |956 |27822 |
-ROW |105129 |955 |27823 |
-ROW |105130 |952 |28894 |
-ROW |105131 |953 |30118 |
-ROW |105132 |1486 |33402 |
-ROW |105133 |1486 |33403 |
-ROW |105134 |1486 |33404 |
-ROW |105135 |1483 |33405 |
-ROW |105136 |1483 |33406 |
-ROW |105137 |1482 |33407 |
-ROW |105138 |1483 |33408 |
-ROW |105139 |1483 |33409 |
-ROW |105140 |1483 |33410 |
-ROW |105141 |1483 |33411 |
-ROW |105142 |1486 |33412 |
-ROW |105143 |1486 |33413 |
-ROW |105144 |1044 |28200 |
-ROW |105145 |1044 |28201 |
-ROW |105146 |1045 |28202 |
-ROW |105147 |1045 |28203 |
-ROW |105148 |1047 |28204 |
-ROW |105149 |1047 |28205 |
-ROW |105150 |1046 |28206 |
-ROW |105151 |1484 |33429 |
-ROW |105152 |1484 |33430 |
-ROW |105153 |1484 |33431 |
-ROW |105154 |976 |27893 |
-ROW |105155 |976 |27894 |
-ROW |105156 |976 |27895 |
-ROW |105157 |973 |27898 |
-ROW |105158 |973 |27900 |
-ROW |105159 |976 |30119 |
-ROW |105160 |973 |30120 |
-ROW |105161 |972 |27904 |
-ROW |105162 |974 |27905 |
-ROW |105163 |975 |27906 |
-ROW |105164 |975 |27907 |
-ROW |105165 |975 |27908 |
-ROW |105166 |974 |31790 |
-ROW |105167 |1365 |32308 |
-ROW |105168 |1368 |32309 |
-ROW |105169 |1370 |32310 |
-ROW |105170 |1370 |32311 |
-ROW |105171 |1366 |32312 |
-ROW |105172 |1369 |32313 |
-ROW |105173 |1369 |32314 |
-ROW |105174 |1369 |32315 |
-ROW |105175 |1369 |32316 |
-ROW |105176 |1368 |32317 |
-ROW |105177 |1368 |32318 |
-ROW |105178 |1365 |32319 |
-ROW |105179 |1367 |32320 |
-ROW |105180 |1367 |32321 |
-ROW |105181 |1367 |32322 |
-ROW |105182 |1366 |32323 |
-ROW |105183 |1366 |32324 |
-ROW |105184 |1371 |32325 |
-ROW |105185 |1365 |32326 |
-ROW |105186 |1365 |32327 |
-ROW |105187 |1370 |32328 |
-ROW |105188 |1366 |32330 |
-ROW |105189 |1372 |32331 |
-ROW |105190 |1376 |32332 |
-ROW |105191 |1377 |32333 |
-ROW |105192 |1377 |32334 |
-ROW |105193 |1373 |32335 |
-ROW |105194 |1376 |32336 |
-ROW |105195 |1376 |32337 |
-ROW |105196 |1376 |32338 |
-ROW |105197 |1375 |32339 |
-ROW |105198 |1378 |32340 |
-ROW |105199 |1375 |32341 |
-ROW |105200 |1375 |32342 |
-ROW |105201 |1374 |32343 |
-ROW |105202 |1374 |32344 |
-ROW |105203 |1374 |32345 |
-ROW |105204 |1373 |32346 |
-ROW |105205 |1373 |32347 |
-ROW |105206 |1377 |32348 |
-ROW |105207 |1373 |32350 |
-ROW |105208 |1379 |32351 |
-ROW |105209 |1382 |32352 |
-ROW |105210 |1384 |32353 |
-ROW |105211 |1384 |32354 |
-ROW |105212 |1380 |32355 |
-ROW |105213 |1383 |32356 |
-ROW |105214 |1383 |32357 |
-ROW |105215 |1383 |32358 |
-ROW |105216 |1383 |32359 |
-ROW |105217 |1382 |32360 |
-ROW |105218 |1382 |32361 |
-ROW |105219 |1379 |32362 |
-ROW |105220 |1381 |32363 |
-ROW |105221 |1381 |32364 |
-ROW |105222 |1381 |32365 |
-ROW |105223 |1380 |32366 |
-ROW |105224 |1380 |32367 |
-ROW |105225 |1385 |32368 |
-ROW |105226 |1379 |32369 |
-ROW |105227 |1379 |32370 |
-ROW |105228 |1384 |32371 |
-ROW |105229 |1380 |32373 |
-ROW |105230 |1390 |32374 |
-ROW |105231 |1387 |32375 |
-ROW |105232 |1387 |32376 |
-ROW |105233 |1388 |32377 |
-ROW |105234 |1388 |32378 |
-ROW |105235 |1388 |32379 |
-ROW |105236 |1389 |32380 |
-ROW |105237 |1386 |32382 |
-ROW |105238 |1391 |32383 |
-ROW |105239 |1393 |32384 |
-ROW |105240 |1395 |32385 |
-ROW |105241 |1392 |32386 |
-ROW |105242 |1394 |32387 |
-ROW |105243 |1394 |32388 |
-ROW |105244 |1394 |32389 |
-ROW |105245 |1393 |32390 |
-ROW |105246 |1392 |32391 |
-ROW |105247 |1391 |32392 |
-ROW |105248 |1392 |32393 |
-ROW |105249 |1392 |32394 |
-ROW |105250 |1396 |32395 |
-ROW |105251 |1391 |32396 |
-ROW |105252 |1391 |32397 |
-ROW |105253 |1391 |32398 |
-ROW |105254 |1395 |32399 |
-ROW |105255 |1392 |32401 |
-ROW |105256 |1397 |32402 |
-ROW |105257 |1399 |32403 |
-ROW |105258 |1401 |32404 |
-ROW |105259 |1398 |32405 |
-ROW |105260 |1400 |32406 |
-ROW |105261 |1400 |32407 |
-ROW |105262 |1400 |32408 |
-ROW |105263 |1399 |32409 |
-ROW |105264 |1398 |32410 |
-ROW |105265 |1397 |32411 |
-ROW |105266 |1398 |32412 |
-ROW |105267 |1398 |32413 |
-ROW |105268 |1402 |32414 |
-ROW |105269 |1397 |32415 |
-ROW |105270 |1397 |32416 |
-ROW |105271 |1397 |32417 |
-ROW |105272 |1401 |32418 |
-ROW |105273 |1398 |32420 |
-ROW |105274 |1409 |32421 |
-ROW |105275 |1407 |32422 |
-ROW |105276 |1405 |32423 |
-ROW |105277 |1405 |32424 |
-ROW |105278 |1407 |32425 |
-ROW |105279 |1407 |32426 |
-ROW |105280 |1407 |32427 |
-ROW |105281 |1408 |32428 |
-ROW |105282 |1408 |32429 |
-ROW |105283 |1404 |32436 |
-ROW |105284 |1404 |32437 |
-ROW |105285 |1404 |32438 |
-ROW |105286 |1403 |32439 |
-ROW |105287 |1404 |32440 |
-ROW |105288 |1406 |32441 |
-ROW |105289 |1406 |32442 |
-ROW |105290 |1406 |32443 |
-ROW |105291 |1406 |32444 |
-ROW |105292 |985 |27930 |
-ROW |105293 |985 |27931 |
-ROW |105294 |981 |27935 |
-ROW |105295 |980 |27936 |
-ROW |105296 |985 |30121 |
-ROW |105297 |981 |30122 |
-ROW |105298 |981 |30123 |
-ROW |105299 |982 |27940 |
-ROW |105300 |982 |27941 |
-ROW |105301 |984 |27942 |
-ROW |105302 |983 |27943 |
-ROW |105303 |991 |27967 |
-ROW |105304 |991 |27968 |
-ROW |105305 |991 |27970 |
-ROW |105306 |991 |27971 |
-ROW |105307 |990 |27972 |
-ROW |105308 |990 |27973 |
-ROW |105309 |989 |27975 |
-ROW |105310 |1282 |30124 |
-ROW |105311 |991 |30125 |
-ROW |105312 |990 |30126 |
-ROW |105313 |1280 |30129 |
-ROW |105314 |1281 |30130 |
-ROW |105315 |997 |27997 |
-ROW |105316 |997 |27998 |
-ROW |105317 |997 |27999 |
-ROW |105318 |997 |28000 |
-ROW |105319 |995 |28003 |
-ROW |105320 |996 |30131 |
-ROW |105321 |1003 |28026 |
-ROW |105322 |1003 |28027 |
-ROW |105323 |1001 |28031 |
-ROW |105324 |1002 |30132 |
-ROW |105325 |1002 |30133 |
-ROW |105326 |1002 |30134 |
-ROW |105327 |1002 |30135 |
-ROW |105328 |1002 |30136 |
-ROW |105329 |1142 |29087 |
-ROW |105330 |1142 |29088 |
-ROW |105331 |1142 |29089 |
-ROW |105332 |1142 |29090 |
-ROW |105333 |1142 |29091 |
-ROW |105334 |1142 |29092 |
-ROW |105335 |1142 |29093 |
-ROW |105336 |1142 |29094 |
-ROW |105337 |1142 |29095 |
-ROW |105338 |1142 |29096 |
-ROW |105339 |1142 |29097 |
-ROW |105340 |1142 |29098 |
-ROW |105341 |1142 |29099 |
-ROW |105342 |1142 |29100 |
-ROW |105343 |1142 |29101 |
-ROW |105344 |1142 |29102 |
-ROW |105345 |1144 |29103 |
-ROW |105346 |1144 |29104 |
-ROW |105347 |1144 |29105 |
-ROW |105348 |1144 |29106 |
-ROW |105349 |1144 |29107 |
-ROW |105350 |1144 |29108 |
-ROW |105351 |1151 |29110 |
-ROW |105352 |1148 |29111 |
-ROW |105353 |1148 |29112 |
-ROW |105354 |1148 |29113 |
-ROW |105355 |1148 |29114 |
-ROW |105356 |1148 |29115 |
-ROW |105357 |1148 |29116 |
-ROW |105358 |1148 |29117 |
-ROW |105359 |1148 |29118 |
-ROW |105360 |1148 |29119 |
-ROW |105361 |1150 |29120 |
-ROW |105362 |1149 |29121 |
-ROW |105363 |1149 |29122 |
-ROW |105364 |1149 |29123 |
-ROW |105365 |1152 |29124 |
-ROW |105366 |1152 |29125 |
-ROW |105367 |1152 |29126 |
-ROW |105368 |1152 |29127 |
-ROW |105369 |1152 |29128 |
-ROW |105370 |1152 |29129 |
-ROW |105371 |1152 |29130 |
-ROW |105372 |1152 |29131 |
-ROW |105373 |1152 |29132 |
-ROW |105374 |1152 |29133 |
-ROW |105375 |1152 |29134 |
-ROW |105376 |1152 |29135 |
-ROW |105377 |1152 |29136 |
-ROW |105378 |1152 |29137 |
-ROW |105379 |1152 |29138 |
-ROW |105380 |1152 |29139 |
-ROW |105381 |1154 |29140 |
-ROW |105382 |1154 |29141 |
-ROW |105383 |1154 |29142 |
-ROW |105384 |1154 |29143 |
-ROW |105385 |1154 |29144 |
-ROW |105386 |1154 |29145 |
-ROW |105387 |1161 |29147 |
-ROW |105388 |1158 |29148 |
-ROW |105389 |1158 |29149 |
-ROW |105390 |1158 |29150 |
-ROW |105391 |1158 |29151 |
-ROW |105392 |1158 |29152 |
-ROW |105393 |1158 |29153 |
-ROW |105394 |1158 |29154 |
-ROW |105395 |1158 |29155 |
-ROW |105396 |1158 |29156 |
-ROW |105397 |1160 |29157 |
-ROW |105398 |1159 |29158 |
-ROW |105399 |1159 |29159 |
-ROW |105400 |1159 |29160 |
-ROW |105401 |1162 |29161 |
-ROW |105402 |1162 |29162 |
-ROW |105403 |1162 |29163 |
-ROW |105404 |1162 |29164 |
-ROW |105405 |1162 |29165 |
-ROW |105406 |1162 |29166 |
-ROW |105407 |1162 |29167 |
-ROW |105408 |1162 |29168 |
-ROW |105409 |1162 |29169 |
-ROW |105410 |1162 |29170 |
-ROW |105411 |1162 |29171 |
-ROW |105412 |1162 |29172 |
-ROW |105413 |1162 |29173 |
-ROW |105414 |1162 |29174 |
-ROW |105415 |1162 |29175 |
-ROW |105416 |1162 |29176 |
-ROW |105417 |1164 |29177 |
-ROW |105418 |1164 |29178 |
-ROW |105419 |1164 |29179 |
-ROW |105420 |1164 |29180 |
-ROW |105421 |1164 |29181 |
-ROW |105422 |1164 |29182 |
-ROW |105423 |1171 |29184 |
-ROW |105424 |1168 |29185 |
-ROW |105425 |1168 |29186 |
-ROW |105426 |1168 |29187 |
-ROW |105427 |1168 |29188 |
-ROW |105428 |1168 |29189 |
-ROW |105429 |1168 |29190 |
-ROW |105430 |1168 |29191 |
-ROW |105431 |1168 |29192 |
-ROW |105432 |1168 |29193 |
-ROW |105433 |1170 |29194 |
-ROW |105434 |1169 |29195 |
-ROW |105435 |1169 |29196 |
-ROW |105436 |1169 |29197 |
-ROW |105437 |1142 |29198 |
-ROW |105438 |1144 |31270 |
-ROW |105439 |1152 |29199 |
-ROW |105440 |1154 |31271 |
-ROW |105441 |1162 |29200 |
-ROW |105442 |1164 |31272 |
-ROW |105443 |1146 |31278 |
-ROW |105444 |1156 |31281 |
-ROW |105445 |1166 |31284 |
-ROW |105446 |1146 |31287 |
-ROW |105447 |1146 |31290 |
-ROW |105448 |1156 |31293 |
-ROW |105449 |1156 |31296 |
-ROW |105450 |1166 |31299 |
-ROW |105451 |1166 |31302 |
-ROW |105452 |1173 |29273 |
-ROW |105453 |1173 |29274 |
-ROW |105454 |1173 |29275 |
-ROW |105455 |1173 |29276 |
-ROW |105456 |1173 |29277 |
-ROW |105457 |1173 |29278 |
-ROW |105458 |1173 |29279 |
-ROW |105459 |1173 |29280 |
-ROW |105460 |1173 |29281 |
-ROW |105461 |1173 |29282 |
-ROW |105462 |1173 |29283 |
-ROW |105463 |1173 |29284 |
-ROW |105464 |1173 |29285 |
-ROW |105465 |1173 |29286 |
-ROW |105466 |1173 |29287 |
-ROW |105467 |1173 |29288 |
-ROW |105468 |1175 |29289 |
-ROW |105469 |1175 |29290 |
-ROW |105470 |1175 |29291 |
-ROW |105471 |1175 |29292 |
-ROW |105472 |1175 |29293 |
-ROW |105473 |1175 |29294 |
-ROW |105474 |1182 |29296 |
-ROW |105475 |1179 |29297 |
-ROW |105476 |1179 |29298 |
-ROW |105477 |1179 |29299 |
-ROW |105478 |1179 |29300 |
-ROW |105479 |1179 |29301 |
-ROW |105480 |1179 |29302 |
-ROW |105481 |1179 |29303 |
-ROW |105482 |1179 |29304 |
-ROW |105483 |1179 |29305 |
-ROW |105484 |1181 |29306 |
-ROW |105485 |1180 |29307 |
-ROW |105486 |1180 |29308 |
-ROW |105487 |1180 |29309 |
-ROW |105488 |1183 |29310 |
-ROW |105489 |1183 |29311 |
-ROW |105490 |1183 |29312 |
-ROW |105491 |1183 |29313 |
-ROW |105492 |1183 |29314 |
-ROW |105493 |1183 |29315 |
-ROW |105494 |1183 |29316 |
-ROW |105495 |1183 |29317 |
-ROW |105496 |1183 |29318 |
-ROW |105497 |1183 |29319 |
-ROW |105498 |1183 |29320 |
-ROW |105499 |1183 |29321 |
-ROW |105500 |1183 |29322 |
-ROW |105501 |1183 |29323 |
-ROW |105502 |1183 |29324 |
-ROW |105503 |1183 |29325 |
-ROW |105504 |1185 |29326 |
-ROW |105505 |1185 |29327 |
-ROW |105506 |1185 |29328 |
-ROW |105507 |1185 |29329 |
-ROW |105508 |1185 |29330 |
-ROW |105509 |1185 |29331 |
-ROW |105510 |1192 |29333 |
-ROW |105511 |1189 |29334 |
-ROW |105512 |1189 |29335 |
-ROW |105513 |1189 |29336 |
-ROW |105514 |1189 |29337 |
-ROW |105515 |1189 |29338 |
-ROW |105516 |1189 |29339 |
-ROW |105517 |1189 |29340 |
-ROW |105518 |1189 |29341 |
-ROW |105519 |1189 |29342 |
-ROW |105520 |1191 |29343 |
-ROW |105521 |1190 |29344 |
-ROW |105522 |1190 |29345 |
-ROW |105523 |1190 |29346 |
-ROW |105524 |1173 |29347 |
-ROW |105525 |1175 |31303 |
-ROW |105526 |1183 |29348 |
-ROW |105527 |1185 |31304 |
-ROW |105528 |1177 |31309 |
-ROW |105529 |1187 |31312 |
-ROW |105530 |1177 |31315 |
-ROW |105531 |1177 |31318 |
-ROW |105532 |1187 |31321 |
-ROW |105533 |1187 |31324 |
-ROW |105534 |1201 |29395 |
-ROW |105535 |1196 |29396 |
-ROW |105536 |1196 |29397 |
-ROW |105537 |1194 |29398 |
-ROW |105538 |1193 |29399 |
-ROW |105539 |1196 |29400 |
-ROW |105540 |1196 |29401 |
-ROW |105541 |1196 |29402 |
-ROW |105542 |1196 |29403 |
-ROW |105543 |1194 |29404 |
-ROW |105544 |1193 |29405 |
-ROW |105545 |1193 |29406 |
-ROW |105546 |1193 |29407 |
-ROW |105547 |1193 |29408 |
-ROW |105548 |1193 |29409 |
-ROW |105549 |1193 |29410 |
-ROW |105550 |1193 |29411 |
-ROW |105551 |1193 |29412 |
-ROW |105552 |1193 |29413 |
-ROW |105553 |1194 |29414 |
-ROW |105554 |1197 |29415 |
-ROW |105555 |1193 |29416 |
-ROW |105556 |1193 |29417 |
-ROW |105557 |1193 |29418 |
-ROW |105558 |1193 |29419 |
-ROW |105559 |1193 |29420 |
-ROW |105560 |1199 |29421 |
-ROW |105561 |1195 |29422 |
-ROW |105562 |1194 |29423 |
-ROW |105563 |1194 |29424 |
-ROW |105564 |1194 |29425 |
-ROW |105565 |1193 |29426 |
-ROW |105566 |1193 |29427 |
-ROW |105567 |1195 |29428 |
-ROW |105568 |1201 |29450 |
-ROW |105569 |1201 |29451 |
-ROW |105570 |1128 |28978 |
-ROW |105571 |1128 |28979 |
-ROW |105572 |1128 |28980 |
-ROW |105573 |1128 |28981 |
-ROW |105574 |1128 |28982 |
-ROW |105575 |1128 |28983 |
-ROW |105576 |1128 |28984 |
-ROW |105577 |1128 |28985 |
-ROW |105578 |1128 |28986 |
-ROW |105579 |1130 |28987 |
-ROW |105580 |1130 |28988 |
-ROW |105581 |1130 |28989 |
-ROW |105582 |1130 |28990 |
-ROW |105583 |1130 |28991 |
-ROW |105584 |1130 |28992 |
-ROW |105585 |1132 |28993 |
-ROW |105586 |1132 |28994 |
-ROW |105587 |1132 |28995 |
-ROW |105588 |1132 |28996 |
-ROW |105589 |1132 |28997 |
-ROW |105590 |1132 |28998 |
-ROW |105591 |1132 |28999 |
-ROW |105592 |1132 |29000 |
-ROW |105593 |1132 |29001 |
-ROW |105594 |1134 |29002 |
-ROW |105595 |1134 |29003 |
-ROW |105596 |1134 |29004 |
-ROW |105597 |1134 |29005 |
-ROW |105598 |1134 |29006 |
-ROW |105599 |1134 |29007 |
-ROW |105600 |1130 |29017 |
-ROW |105601 |1130 |29018 |
-ROW |105602 |1130 |29019 |
-ROW |105603 |1130 |29020 |
-ROW |105604 |1130 |29021 |
-ROW |105605 |1130 |29022 |
-ROW |105606 |1130 |29023 |
-ROW |105607 |1130 |29024 |
-ROW |105608 |1130 |29025 |
-ROW |105609 |1130 |29026 |
-ROW |105610 |1134 |29034 |
-ROW |105611 |1134 |29035 |
-ROW |105612 |1134 |29036 |
-ROW |105613 |1134 |29037 |
-ROW |105614 |1134 |29038 |
-ROW |105615 |1134 |29039 |
-ROW |105616 |1134 |29040 |
-ROW |105617 |1134 |29041 |
-ROW |105618 |1134 |29042 |
-ROW |105619 |1134 |29043 |
-ROW |105620 |1130 |29048 |
-ROW |105621 |1134 |29049 |
-ROW |105622 |1202 |29454 |
-ROW |105623 |1202 |29455 |
-ROW |105624 |1202 |29456 |
-ROW |105625 |1202 |29457 |
-ROW |105626 |1202 |29458 |
-ROW |105627 |1202 |29459 |
-ROW |105628 |1203 |29460 |
-ROW |105629 |1203 |29461 |
-ROW |105630 |1203 |29462 |
-ROW |105631 |1203 |29463 |
-ROW |105632 |1203 |29466 |
-ROW |105633 |1203 |29467 |
-ROW |105634 |1203 |29468 |
-ROW |105635 |1203 |29469 |
-ROW |105636 |1203 |29470 |
-ROW |105637 |1209 |29472 |
-ROW |105638 |1207 |29473 |
-ROW |105639 |1207 |29474 |
-ROW |105640 |1207 |29475 |
-ROW |105641 |1207 |29476 |
-ROW |105642 |1207 |29477 |
-ROW |105643 |1208 |29478 |
-ROW |105644 |1202 |30137 |
-ROW |105645 |1202 |31325 |
-ROW |105646 |1203 |31326 |
-ROW |105647 |1203 |31327 |
-ROW |105648 |1211 |31455 |
-ROW |105649 |1212 |29480 |
-ROW |105650 |1212 |29481 |
-ROW |105651 |1212 |29482 |
-ROW |105652 |1212 |29483 |
-ROW |105653 |1212 |29484 |
-ROW |105654 |1212 |29485 |
-ROW |105655 |1213 |29486 |
-ROW |105656 |1213 |29487 |
-ROW |105657 |1213 |29488 |
-ROW |105658 |1213 |29489 |
-ROW |105659 |1213 |29492 |
-ROW |105660 |1213 |29493 |
-ROW |105661 |1213 |29494 |
-ROW |105662 |1213 |29495 |
-ROW |105663 |1213 |29496 |
-ROW |105664 |1219 |29498 |
-ROW |105665 |1217 |29499 |
-ROW |105666 |1217 |29500 |
-ROW |105667 |1217 |29501 |
-ROW |105668 |1217 |29502 |
-ROW |105669 |1217 |29503 |
-ROW |105670 |1218 |29504 |
-ROW |105671 |1212 |30138 |
-ROW |105672 |1212 |31328 |
-ROW |105673 |1213 |31329 |
-ROW |105674 |1213 |31330 |
-ROW |105675 |1216 |31456 |
-ROW |105676 |1203 |31331 |
-ROW |105677 |1213 |31332 |
-ROW |105678 |1310 |30425 |
-ROW |105679 |1311 |30426 |
-ROW |105680 |1243 |29561 |
-ROW |105681 |1243 |29562 |
-ROW |105682 |1243 |29563 |
-ROW |105683 |1243 |29564 |
-ROW |105684 |1243 |29565 |
-ROW |105685 |1243 |29566 |
-ROW |105686 |1244 |29567 |
-ROW |105687 |1244 |29568 |
-ROW |105688 |1244 |29569 |
-ROW |105689 |1244 |29570 |
-ROW |105690 |1244 |29573 |
-ROW |105691 |1244 |29574 |
-ROW |105692 |1244 |29575 |
-ROW |105693 |1244 |29576 |
-ROW |105694 |1244 |29577 |
-ROW |105695 |1250 |29579 |
-ROW |105696 |1248 |29580 |
-ROW |105697 |1248 |29581 |
-ROW |105698 |1248 |29582 |
-ROW |105699 |1248 |29583 |
-ROW |105700 |1248 |29584 |
-ROW |105701 |1249 |29585 |
-ROW |105702 |1243 |30139 |
-ROW |105703 |1243 |31343 |
-ROW |105704 |1244 |31344 |
-ROW |105705 |1244 |31345 |
-ROW |105706 |1252 |31477 |
-ROW |105707 |1253 |29587 |
-ROW |105708 |1253 |29588 |
-ROW |105709 |1253 |29589 |
-ROW |105710 |1253 |29590 |
-ROW |105711 |1253 |29591 |
-ROW |105712 |1253 |29592 |
-ROW |105713 |1254 |29593 |
-ROW |105714 |1254 |29594 |
-ROW |105715 |1254 |29595 |
-ROW |105716 |1254 |29596 |
-ROW |105717 |1254 |29599 |
-ROW |105718 |1254 |29600 |
-ROW |105719 |1254 |29601 |
-ROW |105720 |1254 |29602 |
-ROW |105721 |1254 |29603 |
-ROW |105722 |1242 |29605 |
-ROW |105723 |1258 |29606 |
-ROW |105724 |1258 |29607 |
-ROW |105725 |1258 |29608 |
-ROW |105726 |1258 |29609 |
-ROW |105727 |1258 |29610 |
-ROW |105728 |1259 |29611 |
-ROW |105729 |1253 |30140 |
-ROW |105730 |1253 |31346 |
-ROW |105731 |1254 |31347 |
-ROW |105732 |1254 |31348 |
-ROW |105733 |1257 |31478 |
-ROW |105734 |1244 |31349 |
-ROW |105735 |1254 |31350 |
-ROW |105736 |1312 |30429 |
-ROW |105737 |1313 |30430 |
-ROW |105738 |1492 |33568 |
-ROW |105739 |1492 |33569 |
-ROW |105740 |1493 |33570 |
-ROW |105741 |1492 |33571 |
-ROW |105742 |1492 |33572 |
-ROW |105743 |1492 |33573 |
-ROW |105744 |1492 |33574 |
-ROW |105745 |1492 |33575 |
-ROW |105746 |1492 |33576 |
-ROW |105747 |1492 |33577 |
-ROW |105748 |1492 |33578 |
-ROW |105749 |1492 |33579 |
-ROW |105750 |1492 |33580 |
-ROW |105751 |1492 |33581 |
-ROW |105752 |1492 |33582 |
-ROW |105753 |1492 |33583 |
-ROW |105754 |1492 |33584 |
-ROW |105755 |1492 |33585 |
-ROW |105756 |1493 |33586 |
-ROW |105757 |1493 |33587 |
-ROW |105758 |1493 |33588 |
-ROW |105759 |1492 |33589 |
-ROW |105760 |1492 |33590 |
-ROW |105761 |1492 |33591 |
-ROW |105762 |1492 |33592 |
-ROW |105763 |1492 |33593 |
-ROW |105764 |1492 |33594 |
-ROW |105765 |1493 |33595 |
-ROW |105766 |1492 |33602 |
-ROW |105767 |1492 |33603 |
-ROW |105768 |1492 |33604 |
-ROW |105769 |1492 |33605 |
-ROW |105770 |1492 |33606 |
-ROW |105771 |1492 |33607 |
-ROW |105772 |1492 |33608 |
-ROW |105773 |1492 |33609 |
-ROW |105774 |1492 |33610 |
-ROW |105775 |1492 |33611 |
-ROW |105776 |1492 |33612 |
-ROW |105777 |1492 |33613 |
-ROW |105778 |1492 |33614 |
-ROW |105779 |1492 |33615 |
-ROW |105780 |1492 |33616 |
-ROW |105781 |1492 |33617 |
-ROW |105782 |1492 |33618 |
-ROW |105783 |1494 |33619 |
-ROW |105784 |1494 |33620 |
-ROW |105785 |1495 |33621 |
-ROW |105786 |1494 |33622 |
-ROW |105787 |1494 |33623 |
-ROW |105788 |1494 |33624 |
-ROW |105789 |1494 |33625 |
-ROW |105790 |1494 |33626 |
-ROW |105791 |1494 |33627 |
-ROW |105792 |1494 |33628 |
-ROW |105793 |1494 |33629 |
-ROW |105794 |1494 |33630 |
-ROW |105795 |1494 |33631 |
-ROW |105796 |1494 |33632 |
-ROW |105797 |1494 |33633 |
-ROW |105798 |1494 |33634 |
-ROW |105799 |1494 |33635 |
-ROW |105800 |1494 |33636 |
-ROW |105801 |1495 |33637 |
-ROW |105802 |1495 |33638 |
-ROW |105803 |1495 |33639 |
-ROW |105804 |1494 |33640 |
-ROW |105805 |1494 |33641 |
-ROW |105806 |1494 |33642 |
-ROW |105807 |1494 |33643 |
-ROW |105808 |1494 |33644 |
-ROW |105809 |1494 |33645 |
-ROW |105810 |1495 |33646 |
-ROW |105811 |1494 |33653 |
-ROW |105812 |1494 |33654 |
-ROW |105813 |1494 |33655 |
-ROW |105814 |1494 |33656 |
-ROW |105815 |1494 |33657 |
-ROW |105816 |1494 |33658 |
-ROW |105817 |1494 |33659 |
-ROW |105818 |1494 |33660 |
-ROW |105819 |1494 |33661 |
-ROW |105820 |1494 |33662 |
-ROW |105821 |1494 |33663 |
-ROW |105822 |1494 |33664 |
-ROW |105823 |1494 |33665 |
-ROW |105824 |1494 |33666 |
-ROW |105825 |1494 |33667 |
-ROW |105826 |1494 |33668 |
-ROW |105827 |1494 |33669 |
-ROW |105828 |1496 |33670 |
-ROW |105829 |1496 |33671 |
-ROW |105830 |1497 |33672 |
-ROW |105831 |1496 |33673 |
-ROW |105832 |1496 |33674 |
-ROW |105833 |1496 |33675 |
-ROW |105834 |1496 |33676 |
-ROW |105835 |1496 |33677 |
-ROW |105836 |1496 |33678 |
-ROW |105837 |1496 |33679 |
-ROW |105838 |1496 |33680 |
-ROW |105839 |1496 |33681 |
-ROW |105840 |1496 |33682 |
-ROW |105841 |1496 |33683 |
-ROW |105842 |1496 |33684 |
-ROW |105843 |1496 |33685 |
-ROW |105844 |1496 |33686 |
-ROW |105845 |1496 |33687 |
-ROW |105846 |1497 |33688 |
-ROW |105847 |1497 |33689 |
-ROW |105848 |1497 |33690 |
-ROW |105849 |1496 |33691 |
-ROW |105850 |1496 |33692 |
-ROW |105851 |1496 |33693 |
-ROW |105852 |1496 |33694 |
-ROW |105853 |1496 |33695 |
-ROW |105854 |1496 |33696 |
-ROW |105855 |1497 |33697 |
-ROW |105856 |1496 |33704 |
-ROW |105857 |1496 |33705 |
-ROW |105858 |1496 |33706 |
-ROW |105859 |1496 |33707 |
-ROW |105860 |1496 |33708 |
-ROW |105861 |1496 |33709 |
-ROW |105862 |1496 |33710 |
-ROW |105863 |1496 |33711 |
-ROW |105864 |1496 |33712 |
-ROW |105865 |1496 |33713 |
-ROW |105866 |1496 |33714 |
-ROW |105867 |1496 |33715 |
-ROW |105868 |1496 |33716 |
-ROW |105869 |1496 |33717 |
-ROW |105870 |1496 |33718 |
-ROW |105871 |1496 |33719 |
-ROW |105872 |1496 |33720 |
-ROW |105873 |1498 |33721 |
-ROW |105874 |1498 |33722 |
-ROW |105875 |1499 |33723 |
-ROW |105876 |1498 |33724 |
-ROW |105877 |1498 |33725 |
-ROW |105878 |1498 |33726 |
-ROW |105879 |1498 |33727 |
-ROW |105880 |1498 |33728 |
-ROW |105881 |1498 |33729 |
-ROW |105882 |1498 |33730 |
-ROW |105883 |1498 |33731 |
-ROW |105884 |1498 |33732 |
-ROW |105885 |1498 |33733 |
-ROW |105886 |1498 |33734 |
-ROW |105887 |1498 |33735 |
-ROW |105888 |1498 |33736 |
-ROW |105889 |1498 |33737 |
-ROW |105890 |1498 |33738 |
-ROW |105891 |1499 |33739 |
-ROW |105892 |1499 |33740 |
-ROW |105893 |1499 |33741 |
-ROW |105894 |1498 |33742 |
-ROW |105895 |1498 |33743 |
-ROW |105896 |1498 |33744 |
-ROW |105897 |1498 |33745 |
-ROW |105898 |1498 |33746 |
-ROW |105899 |1498 |33747 |
-ROW |105900 |1499 |33748 |
-ROW |105901 |1498 |33755 |
-ROW |105902 |1498 |33756 |
-ROW |105903 |1498 |33757 |
-ROW |105904 |1498 |33758 |
-ROW |105905 |1498 |33759 |
-ROW |105906 |1498 |33760 |
-ROW |105907 |1498 |33761 |
-ROW |105908 |1498 |33762 |
-ROW |105909 |1498 |33763 |
-ROW |105910 |1498 |33764 |
-ROW |105911 |1498 |33765 |
-ROW |105912 |1498 |33766 |
-ROW |105913 |1498 |33767 |
-ROW |105914 |1498 |33768 |
-ROW |105915 |1498 |33769 |
-ROW |105916 |1498 |33770 |
-ROW |105917 |1498 |33771 |
-ROW |105918 |1500 |33772 |
-ROW |105919 |1500 |33773 |
-ROW |105920 |1501 |33774 |
-ROW |105921 |1500 |33775 |
-ROW |105922 |1500 |33776 |
-ROW |105923 |1500 |33777 |
-ROW |105924 |1500 |33778 |
-ROW |105925 |1500 |33779 |
-ROW |105926 |1500 |33780 |
-ROW |105927 |1500 |33781 |
-ROW |105928 |1500 |33782 |
-ROW |105929 |1500 |33783 |
-ROW |105930 |1500 |33784 |
-ROW |105931 |1500 |33785 |
-ROW |105932 |1500 |33786 |
-ROW |105933 |1500 |33787 |
-ROW |105934 |1500 |33788 |
-ROW |105935 |1500 |33789 |
-ROW |105936 |1501 |33790 |
-ROW |105937 |1501 |33791 |
-ROW |105938 |1501 |33792 |
-ROW |105939 |1500 |33793 |
-ROW |105940 |1500 |33794 |
-ROW |105941 |1500 |33795 |
-ROW |105942 |1500 |33796 |
-ROW |105943 |1500 |33797 |
-ROW |105944 |1500 |33798 |
-ROW |105945 |1501 |33799 |
-ROW |105946 |1500 |33806 |
-ROW |105947 |1500 |33807 |
-ROW |105948 |1500 |33808 |
-ROW |105949 |1500 |33809 |
-ROW |105950 |1500 |33810 |
-ROW |105951 |1500 |33811 |
-ROW |105952 |1500 |33812 |
-ROW |105953 |1500 |33813 |
-ROW |105954 |1500 |33814 |
-ROW |105955 |1500 |33815 |
-ROW |105956 |1500 |33816 |
-ROW |105957 |1500 |33817 |
-ROW |105958 |1500 |33818 |
-ROW |105959 |1500 |33819 |
-ROW |105960 |1500 |33820 |
-ROW |105961 |1500 |33821 |
-ROW |105962 |1500 |33822 |
-ROW |105963 |1502 |33823 |
-ROW |105964 |1502 |33824 |
-ROW |105965 |1503 |33825 |
-ROW |105966 |1502 |33826 |
-ROW |105967 |1502 |33827 |
-ROW |105968 |1502 |33828 |
-ROW |105969 |1502 |33829 |
-ROW |105970 |1502 |33830 |
-ROW |105971 |1502 |33831 |
-ROW |105972 |1502 |33832 |
-ROW |105973 |1502 |33833 |
-ROW |105974 |1502 |33834 |
-ROW |105975 |1502 |33835 |
-ROW |105976 |1502 |33836 |
-ROW |105977 |1502 |33837 |
-ROW |105978 |1502 |33838 |
-ROW |105979 |1502 |33839 |
-ROW |105980 |1502 |33840 |
-ROW |105981 |1503 |33841 |
-ROW |105982 |1503 |33842 |
-ROW |105983 |1503 |33843 |
-ROW |105984 |1502 |33844 |
-ROW |105985 |1502 |33845 |
-ROW |105986 |1502 |33846 |
-ROW |105987 |1502 |33847 |
-ROW |105988 |1502 |33848 |
-ROW |105989 |1502 |33849 |
-ROW |105990 |1503 |33850 |
-ROW |105991 |1502 |33857 |
-ROW |105992 |1502 |33858 |
-ROW |105993 |1502 |33859 |
-ROW |105994 |1502 |33860 |
-ROW |105995 |1502 |33861 |
-ROW |105996 |1502 |33862 |
-ROW |105997 |1502 |33863 |
-ROW |105998 |1502 |33864 |
-ROW |105999 |1502 |33865 |
-ROW |106000 |1502 |33866 |
-ROW |106001 |1502 |33867 |
-ROW |106002 |1502 |33868 |
-ROW |106003 |1502 |33869 |
-ROW |106004 |1502 |33870 |
-ROW |106005 |1502 |33871 |
-ROW |106006 |1502 |33872 |
-ROW |106007 |1502 |33873 |
-ROW |106008 |1504 |33874 |
-ROW |106009 |1504 |33875 |
-ROW |106010 |1505 |33876 |
-ROW |106011 |1504 |33877 |
-ROW |106012 |1504 |33878 |
-ROW |106013 |1504 |33879 |
-ROW |106014 |1504 |33880 |
-ROW |106015 |1504 |33881 |
-ROW |106016 |1504 |33882 |
-ROW |106017 |1504 |33883 |
-ROW |106018 |1504 |33884 |
-ROW |106019 |1504 |33885 |
-ROW |106020 |1504 |33886 |
-ROW |106021 |1504 |33887 |
-ROW |106022 |1504 |33888 |
-ROW |106023 |1504 |33889 |
-ROW |106024 |1504 |33890 |
-ROW |106025 |1504 |33891 |
-ROW |106026 |1505 |33892 |
-ROW |106027 |1505 |33893 |
-ROW |106028 |1505 |33894 |
-ROW |106029 |1504 |33895 |
-ROW |106030 |1504 |33896 |
-ROW |106031 |1504 |33897 |
-ROW |106032 |1504 |33898 |
-ROW |106033 |1504 |33899 |
-ROW |106034 |1504 |33900 |
-ROW |106035 |1505 |33901 |
-ROW |106036 |1504 |33908 |
-ROW |106037 |1504 |33909 |
-ROW |106038 |1504 |33910 |
-ROW |106039 |1504 |33911 |
-ROW |106040 |1504 |33912 |
-ROW |106041 |1504 |33913 |
-ROW |106042 |1504 |33914 |
-ROW |106043 |1504 |33915 |
-ROW |106044 |1504 |33916 |
-ROW |106045 |1504 |33917 |
-ROW |106046 |1504 |33918 |
-ROW |106047 |1504 |33919 |
-ROW |106048 |1504 |33920 |
-ROW |106049 |1504 |33921 |
-ROW |106050 |1504 |33922 |
-ROW |106051 |1504 |33923 |
-ROW |106052 |1504 |33924 |
-ROW |106053 |1488 |33925 |
-ROW |106054 |1488 |33433 |
-ROW |106055 |1489 |33434 |
-ROW |106056 |1488 |33435 |
-ROW |106057 |1488 |33436 |
-ROW |106058 |1488 |33437 |
-ROW |106059 |1488 |33438 |
-ROW |106060 |1488 |33439 |
-ROW |106061 |1488 |33440 |
-ROW |106062 |1488 |33441 |
-ROW |106063 |1488 |33442 |
-ROW |106064 |1488 |33443 |
-ROW |106065 |1488 |33444 |
-ROW |106066 |1488 |33445 |
-ROW |106067 |1488 |33446 |
-ROW |106068 |1488 |33447 |
-ROW |106069 |1488 |33448 |
-ROW |106070 |1488 |33449 |
-ROW |106071 |1489 |33450 |
-ROW |106072 |1489 |33451 |
-ROW |106073 |1489 |33452 |
-ROW |106074 |1488 |33453 |
-ROW |106075 |1488 |33454 |
-ROW |106076 |1488 |33455 |
-ROW |106077 |1488 |33456 |
-ROW |106078 |1488 |33457 |
-ROW |106079 |1488 |33458 |
-ROW |106080 |1489 |33459 |
-ROW |106081 |1488 |33927 |
-ROW |106082 |1488 |33928 |
-ROW |106083 |1488 |33929 |
-ROW |106084 |1488 |33465 |
-ROW |106085 |1488 |33466 |
-ROW |106086 |1488 |33467 |
-ROW |106087 |1488 |33468 |
-ROW |106088 |1488 |33469 |
-ROW |106089 |1488 |33470 |
-ROW |106090 |1488 |33471 |
-ROW |106091 |1488 |33472 |
-ROW |106092 |1488 |33473 |
-ROW |106093 |1488 |33474 |
-ROW |106094 |1488 |33475 |
-ROW |106095 |1488 |33476 |
-ROW |106096 |1488 |33477 |
-ROW |106097 |1488 |33478 |
-ROW |106098 |1506 |33930 |
-ROW |106099 |1506 |33931 |
-ROW |106100 |1507 |33932 |
-ROW |106101 |1506 |33933 |
-ROW |106102 |1506 |33934 |
-ROW |106103 |1506 |33935 |
-ROW |106104 |1506 |33936 |
-ROW |106105 |1506 |33937 |
-ROW |106106 |1506 |33938 |
-ROW |106107 |1506 |33939 |
-ROW |106108 |1506 |33940 |
-ROW |106109 |1506 |33941 |
-ROW |106110 |1506 |33942 |
-ROW |106111 |1506 |33943 |
-ROW |106112 |1506 |33944 |
-ROW |106113 |1506 |33945 |
-ROW |106114 |1506 |33946 |
-ROW |106115 |1506 |33947 |
-ROW |106116 |1507 |33948 |
-ROW |106117 |1507 |33949 |
-ROW |106118 |1507 |33950 |
-ROW |106119 |1506 |33951 |
-ROW |106120 |1506 |33952 |
-ROW |106121 |1506 |33953 |
-ROW |106122 |1506 |33954 |
-ROW |106123 |1506 |33955 |
-ROW |106124 |1506 |33956 |
-ROW |106125 |1507 |33957 |
-ROW |106126 |1506 |33964 |
-ROW |106127 |1506 |33965 |
-ROW |106128 |1506 |33966 |
-ROW |106129 |1506 |33967 |
-ROW |106130 |1506 |33968 |
-ROW |106131 |1506 |33969 |
-ROW |106132 |1506 |33970 |
-ROW |106133 |1506 |33971 |
-ROW |106134 |1506 |33972 |
-ROW |106135 |1506 |33973 |
-ROW |106136 |1506 |33974 |
-ROW |106137 |1506 |33975 |
-ROW |106138 |1506 |33976 |
-ROW |106139 |1506 |33977 |
-ROW |106140 |1506 |33978 |
-ROW |106141 |1506 |33979 |
-ROW |106142 |1506 |33980 |
-ROW |106143 |1508 |33981 |
-ROW |106144 |1508 |33982 |
-ROW |106145 |1509 |33983 |
-ROW |106146 |1508 |33984 |
-ROW |106147 |1508 |33985 |
-ROW |106148 |1508 |33986 |
-ROW |106149 |1508 |33987 |
-ROW |106150 |1508 |33988 |
-ROW |106151 |1508 |33989 |
-ROW |106152 |1508 |33990 |
-ROW |106153 |1508 |33991 |
-ROW |106154 |1508 |33992 |
-ROW |106155 |1508 |33993 |
-ROW |106156 |1508 |33994 |
-ROW |106157 |1508 |33995 |
-ROW |106158 |1508 |33996 |
-ROW |106159 |1508 |33997 |
-ROW |106160 |1508 |33998 |
-ROW |106161 |1509 |33999 |
-ROW |106162 |1509 |34000 |
-ROW |106163 |1509 |34001 |
-ROW |106164 |1508 |34002 |
-ROW |106165 |1508 |34003 |
-ROW |106166 |1508 |34004 |
-ROW |106167 |1508 |34005 |
-ROW |106168 |1508 |34006 |
-ROW |106169 |1508 |34007 |
-ROW |106170 |1509 |34008 |
-ROW |106171 |1508 |34015 |
-ROW |106172 |1508 |34016 |
-ROW |106173 |1508 |34017 |
-ROW |106174 |1508 |34018 |
-ROW |106175 |1508 |34019 |
-ROW |106176 |1508 |34020 |
-ROW |106177 |1508 |34021 |
-ROW |106178 |1508 |34022 |
-ROW |106179 |1508 |34023 |
-ROW |106180 |1508 |34024 |
-ROW |106181 |1508 |34025 |
-ROW |106182 |1508 |34026 |
-ROW |106183 |1508 |34027 |
-ROW |106184 |1508 |34028 |
-ROW |106185 |1508 |34029 |
-ROW |106186 |1508 |34030 |
-ROW |106187 |1508 |34031 |
-ROW |106188 |1510 |34032 |
-ROW |106189 |1510 |34033 |
-ROW |106190 |1511 |34034 |
-ROW |106191 |1510 |34035 |
-ROW |106192 |1510 |34036 |
-ROW |106193 |1510 |34037 |
-ROW |106194 |1510 |34038 |
-ROW |106195 |1510 |34039 |
-ROW |106196 |1510 |34040 |
-ROW |106197 |1510 |34041 |
-ROW |106198 |1510 |34042 |
-ROW |106199 |1510 |34043 |
-ROW |106200 |1510 |34044 |
-ROW |106201 |1510 |34045 |
-ROW |106202 |1510 |34046 |
-ROW |106203 |1510 |34047 |
-ROW |106204 |1510 |34048 |
-ROW |106205 |1510 |34049 |
-ROW |106206 |1511 |34050 |
-ROW |106207 |1511 |34051 |
-ROW |106208 |1511 |34052 |
-ROW |106209 |1510 |34053 |
-ROW |106210 |1510 |34054 |
-ROW |106211 |1510 |34055 |
-ROW |106212 |1510 |34056 |
-ROW |106213 |1510 |34057 |
-ROW |106214 |1510 |34058 |
-ROW |106215 |1511 |34059 |
-ROW |106216 |1510 |34066 |
-ROW |106217 |1510 |34067 |
-ROW |106218 |1510 |34068 |
-ROW |106219 |1510 |34069 |
-ROW |106220 |1510 |34070 |
-ROW |106221 |1510 |34071 |
-ROW |106222 |1510 |34072 |
-ROW |106223 |1510 |34073 |
-ROW |106224 |1510 |34074 |
-ROW |106225 |1510 |34075 |
-ROW |106226 |1510 |34076 |
-ROW |106227 |1510 |34077 |
-ROW |106228 |1510 |34078 |
-ROW |106229 |1510 |34079 |
-ROW |106230 |1510 |34080 |
-ROW |106231 |1510 |34081 |
-ROW |106232 |1510 |34082 |
-ROW |106233 |1424 |32776 |
-ROW |106234 |1424 |32777 |
-ROW |106235 |1424 |32778 |
-ROW |106236 |1424 |32779 |
-ROW |106237 |1491 |33479 |
-ROW |106238 |1490 |33480 |
-ROW |106239 |1491 |33481 |
-ROW |106240 |1491 |33482 |
-ROW |106241 |1491 |33483 |
-ROW |106242 |1491 |33484 |
-ROW |106243 |1491 |33485 |
-ROW |106244 |1491 |33486 |
-ROW |106245 |1491 |33487 |
-ROW |106246 |1490 |33488 |
-ROW |106247 |1490 |33489 |
-ROW |106248 |1491 |33490 |
-ROW |106249 |1490 |33491 |
-ROW |106250 |1491 |33492 |
-ROW |106251 |1490 |33493 |
-ROW |106252 |1490 |33494 |
-ROW |106253 |1490 |33495 |
-ROW |106254 |1491 |33496 |
-ROW |106255 |1491 |33497 |
-ROW |106256 |1491 |33498 |
-ROW |106257 |1491 |33499 |
-ROW |106258 |1490 |33500 |
-ROW |106259 |1490 |33501 |
-ROW |106260 |1491 |33502 |
-ROW |106261 |1491 |33503 |
-ROW |106262 |1490 |33504 |
-ROW |106263 |1490 |33505 |
-ROW |106264 |1490 |33506 |
-ROW |106265 |1490 |33507 |
-ROW |106266 |1490 |33508 |
-ROW |106267 |1490 |33509 |
-ROW |106268 |1491 |33510 |
-ROW |106269 |1491 |33511 |
-ROW |106270 |1490 |33512 |
-ROW |106271 |1491 |33545 |
-ROW |106272 |1491 |33551 |
-ROW |106273 |1491 |33552 |
-ROW |106274 |1491 |33553 |
-ROW |106275 |1491 |33559 |
-ROW |106276 |1491 |33560 |
-ROW |106277 |1491 |33561 |
-ROW |106278 |1491 |33562 |
-ROW |106279 |1416 |32612 |
-ROW |106280 |1416 |32613 |
-ROW |106281 |1416 |32614 |
-ROW |106282 |1416 |32615 |
-ROW |106283 |1325 |30685 |
-ROW |106284 |1277 |30066 |
-ROW |106285 |1277 |30067 |
-ROW |106286 |1277 |30068 |
-ROW |106287 |1277 |30069 |
-ROW |106288 |1277 |30070 |
-ROW |106289 |1276 |30071 |
-ROW |106290 |1271 |30072 |
-ROW |106291 |1274 |30073 |
-ROW |106292 |1274 |30074 |
-ROW |106293 |1273 |30075 |
-ROW |106294 |1275 |30076 |
-ROW |106295 |1275 |30077 |
-ROW |106296 |1275 |30078 |
-ROW |106297 |1275 |30079 |
-ROW |106298 |1278 |30080 |
-ROW |106299 |1278 |30081 |
-ROW |106300 |1278 |30082 |
-ROW |106301 |1272 |30083 |
-ROW |106302 |1272 |30084 |
-ROW |106303 |1272 |30085 |
-ROW |106304 |1070 |28341 |
-ROW |106305 |1073 |28342 |
-ROW |106306 |1073 |28344 |
-ROW |106307 |1073 |28345 |
-ROW |106308 |1073 |30141 |
-ROW |106309 |1076 |28354 |
-ROW |106310 |1076 |28355 |
-ROW |106311 |1076 |28356 |
-ROW |106312 |1076 |28357 |
-ROW |106313 |1075 |28358 |
-ROW |106314 |1072 |28359 |
-ROW |106315 |1072 |28360 |
-ROW |106316 |1074 |28361 |
-ROW |106317 |1074 |28362 |
-ROW |106318 |1074 |28363 |
-ROW |106319 |1074 |28364 |
-ROW |106320 |1074 |28365 |
-ROW |106321 |1074 |28366 |
-ROW |106322 |1074 |28367 |
-ROW |106323 |1077 |28368 |
-ROW |106324 |1077 |28369 |
-ROW |106325 |1077 |28370 |
-ROW |106326 |1077 |28371 |
-ROW |106327 |1077 |28372 |
-ROW |106328 |1077 |28373 |
-ROW |106329 |1071 |28374 |
-ROW |106330 |1071 |28375 |
-ROW |106331 |1071 |28376 |
-ROW |106332 |1085 |28388 |
-ROW |106333 |1082 |28390 |
-ROW |106334 |1082 |28391 |
-ROW |106335 |1079 |29994 |
-ROW |106336 |1085 |28404 |
-ROW |106337 |1085 |28405 |
-ROW |106338 |1085 |28406 |
-ROW |106339 |1085 |28407 |
-ROW |106340 |1085 |28408 |
-ROW |106341 |1085 |28409 |
-ROW |106342 |1084 |28411 |
-ROW |106343 |1081 |28412 |
-ROW |106344 |1080 |28413 |
-ROW |106345 |1080 |28414 |
-ROW |106346 |1080 |28415 |
-ROW |106347 |1080 |28416 |
-ROW |106348 |1083 |28417 |
-ROW |106349 |1083 |28418 |
-ROW |106350 |1083 |28419 |
-ROW |106351 |1083 |28420 |
-ROW |106352 |1083 |28421 |
-ROW |106353 |1083 |28422 |
-ROW |106354 |1086 |28423 |
-ROW |106355 |1086 |28424 |
-ROW |106356 |1086 |28425 |
-ROW |106357 |1085 |32732 |
-ROW |106358 |1085 |32733 |
-ROW |106359 |1085 |32734 |
-ROW |106360 |1085 |32735 |
-ROW |106361 |1085 |32736 |
-ROW |106362 |1085 |32737 |
-ROW |106363 |1085 |32738 |
-ROW |106364 |1085 |32739 |
-ROW |106365 |1085 |32740 |
-ROW |106366 |1095 |28465 |
-ROW |106367 |1097 |28466 |
-ROW |106368 |1097 |28467 |
-ROW |106369 |1100 |28474 |
-ROW |106370 |1100 |28475 |
-ROW |106371 |1100 |28476 |
-ROW |106372 |1099 |28477 |
-ROW |106373 |1096 |28478 |
-ROW |106374 |1096 |28479 |
-ROW |106375 |1098 |28480 |
-ROW |106376 |1098 |28481 |
-ROW |106377 |1104 |28495 |
-ROW |106378 |1103 |28496 |
-ROW |106379 |1355 |31969 |
-ROW |106380 |1355 |31970 |
-ROW |106381 |1356 |31971 |
-ROW |106382 |1355 |31972 |
-ROW |106383 |1355 |31973 |
-ROW |106384 |1355 |31974 |
-ROW |106385 |1355 |31975 |
-ROW |106386 |1355 |31976 |
-ROW |106387 |1355 |31977 |
-ROW |106388 |1355 |31978 |
-ROW |106389 |1355 |31979 |
-ROW |106390 |1355 |31980 |
-ROW |106391 |1355 |31981 |
-ROW |106392 |1355 |31982 |
-ROW |106393 |1355 |31983 |
-ROW |106394 |1355 |31984 |
-ROW |106395 |1355 |31985 |
-ROW |106396 |1355 |31986 |
-ROW |106397 |1355 |31987 |
-ROW |106398 |1355 |31988 |
-ROW |106399 |1355 |31989 |
-ROW |106400 |1355 |32461 |
-ROW |106401 |1355 |32462 |
+ROW |106402 |1116 |28743 |
+ROW |106403 |1116 |28744 |
+ROW |106404 |1116 |28745 |
+ROW |106405 |1116 |28746 |
+ROW |106406 |1116 |28747 |
+ROW |106407 |1116 |28748 |
+ROW |106408 |1117 |30896 |
+ROW |106409 |1116 |30897 |
+ROW |106410 |1116 |30898 |
+ROW |106411 |1116 |30899 |
+ROW |106412 |1116 |30900 |
+ROW |106413 |1116 |30901 |
+ROW |106414 |1116 |30902 |
+ROW |106415 |1116 |30903 |
+ROW |106416 |1116 |30904 |
+ROW |106417 |1116 |30905 |
+ROW |106418 |1116 |30906 |
+ROW |106419 |1116 |30907 |
+ROW |106420 |1116 |30908 |
+ROW |106421 |1116 |30909 |
+ROW |106422 |1116 |30910 |
+ROW |106423 |1116 |30911 |
+ROW |106424 |1116 |30912 |
+ROW |106425 |1116 |30913 |
+ROW |106426 |1116 |30914 |
+ROW |106427 |1116 |30915 |
+ROW |106428 |1116 |30917 |
+ROW |106429 |1116 |30918 |
+ROW |106430 |1116 |30919 |
+ROW |106431 |1116 |30920 |
+ROW |106432 |1116 |30921 |
+ROW |106433 |1116 |30922 |
+ROW |106434 |1119 |28775 |
+ROW |106435 |1118 |28776 |
+ROW |106436 |1118 |28777 |
+ROW |106437 |1118 |28778 |
+ROW |106438 |1118 |28779 |
+ROW |106439 |1118 |28780 |
+ROW |106440 |1118 |28781 |
+ROW |106441 |1118 |28782 |
+ROW |106442 |1118 |28783 |
+ROW |106443 |1118 |28784 |
+ROW |106444 |1118 |28785 |
+ROW |106445 |1118 |28786 |
+ROW |106446 |1118 |28787 |
+ROW |106447 |1118 |28788 |
+ROW |106448 |1118 |28789 |
+ROW |106449 |1118 |28790 |
+ROW |106450 |1118 |28791 |
+ROW |106451 |1118 |28792 |
+ROW |106452 |1118 |28793 |
+ROW |106453 |1118 |28794 |
+ROW |106454 |1118 |28795 |
+ROW |106455 |1118 |28796 |
+ROW |106456 |1118 |28798 |
+ROW |106457 |1118 |28799 |
+ROW |106458 |1118 |28800 |
+ROW |106459 |1118 |28801 |
+ROW |106460 |1118 |28802 |
+ROW |106461 |1118 |28803 |
+ROW |106462 |1349 |31800 |
+ROW |106463 |1349 |31801 |
+ROW |106464 |1349 |31802 |
+ROW |106465 |1348 |31803 |
+ROW |106466 |1349 |31804 |
+ROW |106467 |1348 |31805 |
+ROW |106468 |1348 |31806 |
+ROW |106469 |1348 |31807 |
+ROW |106470 |1348 |31808 |
+ROW |106471 |1348 |31809 |
+ROW |106472 |1348 |31810 |
+ROW |106473 |1348 |31811 |
+ROW |106474 |1348 |31812 |
+ROW |106475 |1348 |31813 |
+ROW |106476 |1348 |31814 |
+ROW |106477 |1348 |31815 |
+ROW |106478 |1348 |31816 |
+ROW |106479 |1348 |31817 |
+ROW |106480 |1348 |31818 |
+ROW |106481 |1348 |31819 |
+ROW |106482 |1348 |31820 |
+ROW |106483 |1348 |31821 |
+ROW |106484 |1348 |31822 |
+ROW |106485 |1348 |31823 |
+ROW |106486 |1348 |31824 |
+ROW |106487 |1348 |31825 |
+ROW |106488 |1348 |31826 |
+ROW |106489 |1348 |31827 |
+ROW |106490 |1348 |31828 |
+ROW |106491 |1348 |31829 |
+ROW |106492 |1348 |31830 |
+ROW |106493 |1348 |31831 |
+ROW |106494 |1348 |31832 |
+ROW |106495 |1348 |31833 |
+ROW |106496 |1348 |31834 |
+ROW |106497 |1348 |31835 |
+ROW |106498 |1348 |31836 |
+ROW |106499 |1348 |31837 |
+ROW |106500 |1348 |31838 |
+ROW |106501 |1348 |31839 |
+ROW |106502 |1348 |31840 |
+ROW |106503 |1348 |31841 |
+ROW |106504 |1348 |31842 |
+ROW |106505 |1348 |31843 |
+ROW |106506 |1348 |31844 |
+ROW |106507 |1348 |31845 |
+ROW |106508 |1348 |31846 |
+ROW |106509 |1348 |31847 |
+ROW |106510 |1348 |31848 |
+ROW |106511 |1348 |31849 |
+ROW |106512 |1348 |31850 |
+ROW |106513 |1319 |30527 |
+ROW |106514 |1319 |30528 |
+ROW |106515 |1319 |30529 |
+ROW |106516 |1318 |30530 |
+ROW |106517 |1319 |30531 |
+ROW |106518 |1318 |30532 |
+ROW |106519 |1318 |30533 |
+ROW |106520 |1318 |30534 |
+ROW |106521 |1318 |30535 |
+ROW |106522 |1318 |30536 |
+ROW |106523 |1318 |30537 |
+ROW |106524 |1318 |30538 |
+ROW |106525 |1318 |30539 |
+ROW |106526 |1318 |30540 |
+ROW |106527 |1318 |30541 |
+ROW |106528 |1318 |30542 |
+ROW |106529 |1318 |30543 |
+ROW |106530 |1318 |30544 |
+ROW |106531 |1318 |30545 |
+ROW |106532 |1318 |30546 |
+ROW |106533 |1318 |30547 |
+ROW |106534 |1318 |30548 |
+ROW |106535 |1318 |30549 |
+ROW |106536 |1318 |30550 |
+ROW |106537 |1318 |30551 |
+ROW |106538 |1318 |30552 |
+ROW |106539 |1318 |30553 |
+ROW |106540 |1318 |30554 |
+ROW |106541 |1318 |30555 |
+ROW |106542 |1318 |30556 |
+ROW |106543 |1318 |30557 |
+ROW |106544 |1318 |30558 |
+ROW |106545 |1318 |30559 |
+ROW |106546 |1318 |30560 |
+ROW |106547 |1318 |30561 |
+ROW |106548 |1318 |30562 |
+ROW |106549 |1318 |30563 |
+ROW |106550 |1318 |30564 |
+ROW |106551 |1318 |30565 |
+ROW |106552 |1318 |30566 |
+ROW |106553 |1318 |30567 |
+ROW |106554 |1318 |30568 |
+ROW |106555 |1318 |30569 |
+ROW |106556 |1318 |30570 |
+ROW |106557 |1326 |30690 |
+ROW |106558 |1327 |30691 |
+ROW |106559 |1326 |30692 |
+ROW |106560 |1327 |30693 |
+ROW |106561 |1327 |30694 |
+ROW |106562 |1326 |30695 |
+ROW |106563 |1326 |30696 |
+ROW |106564 |1326 |30697 |
+ROW |106565 |1326 |30698 |
+ROW |106566 |1326 |30699 |
+ROW |106567 |1326 |30700 |
+ROW |106568 |1326 |30701 |
+ROW |106569 |1326 |30702 |
+ROW |106570 |1326 |30703 |
+ROW |106571 |1326 |30704 |
+ROW |106572 |1326 |30705 |
+ROW |106573 |1326 |30706 |
+ROW |106574 |1326 |30707 |
+ROW |106575 |1326 |30708 |
+ROW |106576 |1326 |30709 |
+ROW |106577 |1326 |30710 |
+ROW |106578 |1326 |30711 |
+ROW |106579 |1326 |30712 |
+ROW |106580 |1327 |30719 |
+ROW |106581 |1327 |30739 |
+ROW |106582 |1327 |30743 |
+ROW |106583 |1327 |30744 |
+ROW |106584 |1327 |30746 |
+ROW |106585 |1327 |30747 |
+ROW |106586 |1327 |30754 |
+ROW |106587 |1327 |30756 |
+ROW |106588 |1331 |30923 |
+ROW |106589 |1331 |30924 |
+ROW |106590 |1332 |30925 |
+ROW |106591 |1332 |30926 |
+ROW |106592 |1331 |30927 |
+ROW |106593 |1331 |30928 |
+ROW |106594 |1331 |30929 |
+ROW |106595 |1331 |30930 |
+ROW |106596 |1331 |30931 |
+ROW |106597 |1331 |30932 |
+ROW |106598 |1331 |30933 |
+ROW |106599 |1331 |30934 |
+ROW |106600 |1331 |30935 |
+ROW |106601 |1331 |30936 |
+ROW |106602 |1331 |30937 |
+ROW |106603 |1331 |30938 |
+ROW |106604 |1331 |30939 |
+ROW |106605 |1331 |30940 |
+ROW |106606 |1331 |30941 |
+ROW |106607 |1331 |30942 |
+ROW |106608 |1331 |30943 |
+ROW |106609 |1331 |30944 |
+ROW |106610 |1331 |30945 |
+ROW |106611 |1331 |30946 |
+ROW |106612 |1331 |30947 |
+ROW |106613 |1331 |30948 |
+ROW |106614 |1331 |30949 |
+ROW |106615 |1331 |30950 |
+ROW |106616 |1331 |30951 |
+ROW |106617 |1331 |30952 |
+ROW |106618 |1331 |30953 |
+ROW |106619 |1331 |30954 |
+ROW |106620 |1331 |30955 |
+ROW |106621 |1331 |30956 |
+ROW |106622 |1331 |30957 |
+ROW |106623 |1331 |30958 |
+ROW |106624 |1331 |30959 |
+ROW |106625 |1331 |30960 |
+ROW |106626 |1331 |30963 |
+ROW |106627 |1411 |32486 |
+ROW |106628 |1411 |32487 |
+ROW |106629 |1411 |32488 |
+ROW |106630 |1411 |32489 |
+ROW |106631 |1411 |32490 |
+ROW |106632 |1411 |32491 |
+ROW |106633 |1411 |32492 |
+ROW |106634 |1411 |32493 |
+ROW |106635 |1411 |32494 |
+ROW |106636 |1411 |32498 |
+ROW |106637 |1411 |32499 |
+ROW |106638 |1411 |32500 |
+ROW |106639 |1412 |32516 |
+ROW |106640 |1412 |32517 |
+ROW |106641 |1412 |32518 |
+ROW |106642 |1412 |32519 |
+ROW |106643 |1412 |32520 |
+ROW |106644 |1412 |32521 |
+ROW |106645 |1412 |32522 |
+ROW |106646 |1412 |32523 |
+ROW |106647 |1412 |32524 |
+ROW |106648 |1412 |32528 |
+ROW |106649 |1412 |32529 |
+ROW |106650 |1412 |32530 |
+ROW |106651 |1341 |31499 |
+ROW |106652 |1341 |31500 |
+ROW |106653 |1341 |31501 |
+ROW |106654 |1341 |31502 |
+ROW |106655 |1341 |31503 |
+ROW |106656 |1341 |31504 |
+ROW |106657 |1341 |31505 |
+ROW |106658 |1341 |31506 |
+ROW |106659 |1341 |31507 |
+ROW |106660 |1341 |31508 |
+ROW |106661 |1341 |31509 |
+ROW |106662 |1341 |31510 |
+ROW |106663 |1341 |31511 |
+ROW |106664 |1341 |31512 |
+ROW |106665 |1341 |31513 |
+ROW |106666 |1341 |31514 |
+ROW |106667 |1341 |31515 |
+ROW |106668 |1341 |31516 |
+ROW |106669 |1341 |31517 |
+ROW |106670 |1341 |31518 |
+ROW |106671 |1341 |31519 |
+ROW |106672 |1341 |31520 |
+ROW |106673 |1341 |31521 |
+ROW |106674 |1341 |31522 |
+ROW |106675 |1341 |31523 |
+ROW |106676 |1341 |31524 |
+ROW |106677 |1341 |31525 |
+ROW |106678 |1341 |31526 |
+ROW |106679 |1341 |31527 |
+ROW |106680 |1341 |31528 |
+ROW |106681 |1341 |31529 |
+ROW |106682 |1341 |31530 |
+ROW |106683 |1341 |31531 |
+ROW |106684 |1341 |31532 |
+ROW |106685 |1341 |31533 |
+ROW |106686 |1341 |31534 |
+ROW |106687 |1341 |31535 |
+ROW |106688 |1341 |31536 |
+ROW |106689 |1341 |31537 |
+ROW |106690 |1341 |31538 |
+ROW |106691 |1341 |31539 |
+ROW |106692 |1341 |31540 |
+ROW |106693 |1341 |31541 |
+ROW |106694 |1341 |31542 |
+ROW |106695 |1341 |31543 |
+ROW |106696 |1341 |31544 |
+ROW |106697 |1341 |31545 |
+ROW |106698 |1341 |31546 |
+ROW |106699 |1341 |31547 |
+ROW |106700 |1341 |31548 |
+ROW |106701 |1341 |31549 |
+ROW |106702 |1341 |31550 |
+ROW |106703 |1341 |31551 |
+ROW |106704 |1341 |31552 |
+ROW |106705 |1341 |31553 |
+ROW |106706 |1358 |32012 |
+ROW |106707 |1358 |32013 |
+ROW |106708 |1357 |32014 |
+ROW |106709 |1357 |32015 |
+ROW |106710 |1357 |32016 |
+ROW |106711 |1358 |32017 |
+ROW |106712 |1357 |32018 |
+ROW |106713 |1358 |32019 |
+ROW |106714 |1357 |32020 |
+ROW |106715 |1357 |32021 |
+ROW |106716 |1357 |32022 |
+ROW |106717 |1357 |32023 |
+ROW |106718 |1357 |32024 |
+ROW |106719 |1357 |32025 |
+ROW |106720 |1357 |32026 |
+ROW |106721 |1357 |32027 |
+ROW |106722 |1357 |32028 |
+ROW |106723 |1357 |32029 |
+ROW |106724 |1357 |32030 |
+ROW |106725 |1357 |32031 |
+ROW |106726 |1357 |32032 |
+ROW |106727 |1357 |32033 |
+ROW |106728 |1357 |32034 |
+ROW |106729 |1357 |32035 |
+ROW |106730 |1357 |32036 |
+ROW |106731 |1357 |32037 |
+ROW |106732 |1357 |32038 |
+ROW |106733 |1357 |32039 |
+ROW |106734 |1357 |32040 |
+ROW |106735 |1357 |32041 |
+ROW |106736 |1357 |32042 |
+ROW |106737 |1357 |32043 |
+ROW |106738 |1357 |32044 |
+ROW |106739 |1357 |32045 |
+ROW |106740 |1358 |32048 |
+ROW |106741 |1358 |32049 |
+ROW |106742 |1298 |30187 |
+ROW |106743 |1298 |30188 |
+ROW |106744 |1299 |30189 |
+ROW |106745 |1299 |30190 |
+ROW |106746 |1298 |30191 |
+ROW |106747 |1298 |30192 |
+ROW |106748 |1301 |30230 |
+ROW |106749 |1301 |30231 |
+ROW |106750 |1300 |30789 |
+ROW |106751 |1300 |30790 |
+ROW |106752 |1300 |30234 |
+ROW |106753 |1300 |30235 |
+ROW |106754 |1333 |30968 |
+ROW |106755 |1333 |30969 |
+ROW |106756 |1333 |30970 |
+ROW |106757 |1333 |30971 |
+ROW |106758 |1333 |30972 |
+ROW |106759 |1333 |30973 |
+ROW |106760 |1333 |30974 |
+ROW |106761 |1333 |30975 |
+ROW |106762 |1333 |30976 |
+ROW |106763 |1333 |30977 |
+ROW |106764 |1333 |30978 |
+ROW |106765 |1333 |30979 |
+ROW |106766 |1333 |30980 |
+ROW |106767 |1333 |30981 |
+ROW |106768 |1333 |30982 |
+ROW |106769 |1333 |30983 |
+ROW |106770 |1333 |30984 |
+ROW |106771 |1333 |30985 |
+ROW |106772 |1333 |30986 |
+ROW |106773 |1333 |30987 |
+ROW |106774 |1333 |30988 |
+ROW |106775 |1333 |30989 |
+ROW |106776 |1333 |30990 |
+ROW |106777 |1333 |30991 |
+ROW |106778 |1333 |30992 |
+ROW |106779 |1333 |30993 |
+ROW |106780 |1333 |30994 |
+ROW |106781 |1333 |30995 |
+ROW |106782 |1333 |30996 |
+ROW |106783 |1333 |30997 |
+ROW |106784 |1333 |30998 |
+ROW |106785 |1333 |30999 |
+ROW |106786 |1333 |31000 |
+ROW |106787 |1333 |31001 |
+ROW |106788 |1333 |31002 |
+ROW |106789 |1333 |31003 |
+ROW |106790 |1333 |31004 |
+ROW |106791 |1334 |31010 |
+ROW |106792 |1334 |31011 |
+ROW |106793 |1334 |31012 |
+ROW |106794 |1334 |31013 |
+ROW |106795 |1334 |31014 |
+ROW |106796 |1334 |31015 |
+ROW |106797 |1334 |31016 |
+ROW |106798 |1334 |31017 |
+ROW |106799 |1334 |31018 |
+ROW |106800 |1334 |31019 |
+ROW |106801 |1334 |31020 |
+ROW |106802 |1334 |31021 |
+ROW |106803 |1334 |31022 |
+ROW |106804 |1334 |31023 |
+ROW |106805 |1334 |31024 |
+ROW |106806 |1334 |31025 |
+ROW |106807 |1334 |31026 |
+ROW |106808 |1334 |31027 |
+ROW |106809 |1334 |31028 |
+ROW |106810 |1334 |31029 |
+ROW |106811 |1334 |31030 |
+ROW |106812 |1334 |31031 |
+ROW |106813 |1334 |31032 |
+ROW |106814 |1334 |31033 |
+ROW |106815 |1334 |31034 |
+ROW |106816 |1334 |31035 |
+ROW |106817 |1334 |31036 |
+ROW |106818 |1334 |31037 |
+ROW |106819 |1334 |31038 |
+ROW |106820 |1334 |31039 |
+ROW |106821 |1334 |31040 |
+ROW |106822 |1334 |31041 |
+ROW |106823 |1334 |31042 |
+ROW |106824 |1334 |31043 |
+ROW |106825 |1334 |31044 |
+ROW |106826 |1334 |31045 |
+ROW |106827 |1334 |31046 |
+ROW |106828 |1359 |32071 |
+ROW |106829 |1359 |32072 |
+ROW |106830 |1359 |32073 |
+ROW |106831 |1359 |32074 |
+ROW |106832 |1359 |32075 |
+ROW |106833 |1359 |32076 |
+ROW |106834 |1359 |32077 |
+ROW |106835 |1359 |32078 |
+ROW |106836 |1359 |32079 |
+ROW |106837 |1359 |32080 |
+ROW |106838 |1359 |32081 |
+ROW |106839 |1359 |32082 |
+ROW |106840 |1359 |32083 |
+ROW |106841 |1359 |32084 |
+ROW |106842 |1359 |32085 |
+ROW |106843 |1359 |32086 |
+ROW |106844 |1359 |32087 |
+ROW |106845 |1359 |32088 |
+ROW |106846 |1359 |32089 |
+ROW |106847 |1359 |32090 |
+ROW |106848 |1359 |32091 |
+ROW |106849 |1359 |32092 |
+ROW |106850 |1359 |32093 |
+ROW |106851 |1359 |32094 |
+ROW |106852 |1359 |32095 |
+ROW |106853 |1359 |32096 |
+ROW |106854 |1359 |32097 |
+ROW |106855 |1359 |32098 |
+ROW |106856 |1359 |32099 |
+ROW |106857 |1359 |32100 |
+ROW |106858 |1359 |32101 |
+ROW |106859 |1359 |32102 |
+ROW |106860 |1359 |32103 |
+ROW |106861 |1359 |32104 |
+ROW |106862 |1359 |32105 |
+ROW |106863 |1359 |32106 |
+ROW |106864 |1359 |32107 |
+ROW |106865 |1359 |32108 |
+ROW |106866 |1359 |32109 |
+ROW |106867 |1359 |32110 |
+ROW |106868 |1359 |32111 |
+ROW |106869 |1359 |32112 |
+ROW |106870 |1359 |32113 |
+ROW |106871 |1359 |32114 |
+ROW |106872 |1359 |32115 |
+ROW |106873 |1359 |32116 |
+ROW |106874 |1359 |32117 |
+ROW |106875 |1359 |32118 |
+ROW |106876 |1359 |32119 |
+ROW |106877 |1359 |32120 |
+ROW |106878 |1359 |32121 |
+ROW |106879 |1359 |32122 |
+ROW |106880 |1359 |32123 |
+ROW |106881 |1359 |32124 |
+ROW |106882 |1359 |32125 |
+ROW |106883 |1359 |32126 |
+ROW |106884 |1359 |32127 |
+ROW |106885 |1359 |32128 |
+ROW |106886 |1359 |32129 |
+ROW |106887 |1359 |32130 |
+ROW |106888 |1359 |32131 |
+ROW |106889 |1359 |32132 |
+ROW |106890 |1320 |30611 |
+ROW |106891 |1321 |30612 |
+ROW |106892 |1320 |30613 |
+ROW |106893 |1320 |30614 |
+ROW |106894 |1320 |30615 |
+ROW |106895 |1320 |30616 |
+ROW |106896 |1320 |30617 |
+ROW |106897 |1320 |30618 |
+ROW |106898 |1320 |30619 |
+ROW |106899 |1320 |30620 |
+ROW |106900 |1320 |30621 |
+ROW |106901 |1320 |30622 |
+ROW |106902 |1320 |30623 |
+ROW |106903 |1320 |30624 |
+ROW |106904 |1320 |30625 |
+ROW |106905 |1320 |30626 |
+ROW |106906 |1320 |30627 |
+ROW |106907 |1320 |30628 |
+ROW |106908 |1320 |30629 |
+ROW |106909 |1320 |30630 |
+ROW |106910 |1320 |30631 |
+ROW |106911 |1320 |30632 |
+ROW |106912 |1320 |30633 |
+ROW |106913 |1320 |30634 |
+ROW |106914 |1320 |30635 |
+ROW |106915 |1320 |30636 |
+ROW |106916 |1121 |28804 |
+ROW |106917 |1120 |28805 |
+ROW |106918 |1120 |28806 |
+ROW |106919 |1120 |28807 |
+ROW |106920 |1120 |28808 |
+ROW |106921 |1120 |28809 |
+ROW |106922 |1120 |28810 |
+ROW |106923 |1120 |28811 |
+ROW |106924 |1120 |28812 |
+ROW |106925 |1120 |28813 |
+ROW |106926 |1120 |28814 |
+ROW |106927 |1120 |28815 |
+ROW |106928 |1120 |28816 |
+ROW |106929 |1120 |28817 |
+ROW |106930 |1120 |28818 |
+ROW |106931 |1120 |28819 |
+ROW |106932 |1120 |28820 |
+ROW |106933 |1123 |28821 |
+ROW |106934 |1122 |28822 |
+ROW |106935 |1122 |28823 |
+ROW |106936 |1122 |28824 |
+ROW |106937 |1122 |28825 |
+ROW |106938 |1122 |28826 |
+ROW |106939 |1122 |28827 |
+ROW |106940 |1122 |28828 |
+ROW |106941 |1122 |28829 |
+ROW |106942 |1122 |28830 |
+ROW |106943 |1122 |28831 |
+ROW |106944 |1122 |28832 |
+ROW |106945 |1122 |28833 |
+ROW |106946 |1351 |31868 |
+ROW |106947 |1351 |31869 |
+ROW |106948 |1350 |31870 |
+ROW |106949 |1350 |31871 |
+ROW |106950 |1350 |31872 |
+ROW |106951 |1350 |31873 |
+ROW |106952 |1350 |31874 |
+ROW |106953 |1350 |31875 |
+ROW |106954 |1350 |31876 |
+ROW |106955 |1350 |31877 |
+ROW |106956 |1350 |31878 |
+ROW |106957 |1350 |31879 |
+ROW |106958 |1350 |31880 |
+ROW |106959 |1350 |31881 |
+ROW |106960 |1350 |31882 |
+ROW |106961 |1350 |31883 |
+ROW |106962 |1350 |31884 |
+ROW |106963 |1350 |31885 |
+ROW |106964 |1350 |31886 |
+ROW |106965 |1350 |31887 |
+ROW |106966 |1350 |31888 |
+ROW |106967 |1350 |31889 |
+ROW |106968 |1350 |31890 |
+ROW |106969 |1352 |31891 |
+ROW |106970 |1353 |31892 |
+ROW |106971 |1353 |31893 |
+ROW |106972 |1352 |31894 |
+ROW |106973 |1352 |31895 |
+ROW |106974 |1352 |31896 |
+ROW |106975 |1352 |31897 |
+ROW |106976 |1352 |31898 |
+ROW |106977 |1352 |31899 |
+ROW |106978 |1352 |31900 |
+ROW |106979 |1352 |31901 |
+ROW |106980 |1352 |31902 |
+ROW |106981 |1352 |31903 |
+ROW |106982 |1352 |31904 |
+ROW |106983 |1352 |31905 |
+ROW |106984 |1352 |31906 |
+ROW |106985 |1352 |31907 |
+ROW |106986 |1352 |31908 |
+ROW |106987 |1352 |31909 |
+ROW |106988 |1426 |32829 |
+ROW |106989 |1426 |32830 |
+ROW |106990 |1427 |32831 |
+ROW |106991 |1427 |32832 |
+ROW |106992 |1428 |32833 |
+ROW |106993 |1428 |32834 |
+ROW |106994 |1428 |32835 |
+ROW |106995 |1427 |32836 |
+ROW |106996 |1427 |32837 |
+ROW |106997 |1427 |32838 |
+ROW |106998 |1427 |32839 |
+ROW |106999 |1425 |32840 |
+ROW |107000 |1425 |32841 |
+ROW |107001 |1425 |32842 |
+ROW |107002 |1425 |32843 |
+ROW |107003 |1425 |32844 |
+ROW |107004 |1425 |32845 |
+ROW |107005 |1425 |32846 |
+ROW |107006 |1425 |32847 |
+ROW |107007 |1425 |32848 |
+ROW |107008 |1425 |32849 |
+ROW |107009 |1425 |32850 |
+ROW |107010 |1425 |32851 |
+ROW |107011 |1425 |32852 |
+ROW |107012 |1425 |32853 |
+ROW |107013 |1425 |32854 |
+ROW |107014 |1425 |32855 |
+ROW |107015 |1425 |32856 |
+ROW |107016 |1425 |32857 |
+ROW |107017 |1425 |32858 |
+ROW |107018 |1425 |32859 |
+ROW |107019 |1425 |32860 |
+ROW |107020 |1425 |32861 |
+ROW |107021 |1425 |32862 |
+ROW |107022 |1425 |32863 |
+ROW |107023 |1427 |32864 |
+ROW |107024 |1427 |32865 |
+ROW |107025 |1427 |32866 |
+ROW |107026 |1427 |32867 |
+ROW |107027 |1427 |32868 |
+ROW |107028 |1427 |32869 |
+ROW |107029 |1427 |32870 |
+ROW |107030 |1427 |32871 |
+ROW |107031 |1427 |32872 |
+ROW |107032 |1427 |32873 |
+ROW |107033 |1427 |32874 |
+ROW |107034 |1427 |32875 |
+ROW |107035 |1427 |32876 |
+ROW |107036 |1427 |32877 |
+ROW |107037 |1427 |32878 |
+ROW |107038 |1425 |32884 |
+ROW |107039 |1427 |32885 |
+ROW |107040 |1427 |32886 |
+ROW |107041 |1427 |32887 |
+ROW |107042 |1427 |32888 |
+ROW |107043 |1427 |32889 |
+ROW |107044 |1427 |32890 |
+ROW |107045 |1430 |32925 |
+ROW |107046 |1430 |32926 |
+ROW |107047 |1431 |32927 |
+ROW |107048 |1432 |32928 |
+ROW |107049 |1432 |32929 |
+ROW |107050 |1432 |32930 |
+ROW |107051 |1431 |32931 |
+ROW |107052 |1429 |32932 |
+ROW |107053 |1429 |32933 |
+ROW |107054 |1429 |32934 |
+ROW |107055 |1429 |32935 |
+ROW |107056 |1429 |32936 |
+ROW |107057 |1429 |32937 |
+ROW |107058 |1429 |32938 |
+ROW |107059 |1429 |32939 |
+ROW |107060 |1429 |32940 |
+ROW |107061 |1429 |32941 |
+ROW |107062 |1429 |32942 |
+ROW |107063 |1429 |32943 |
+ROW |107064 |1429 |32944 |
+ROW |107065 |1429 |32945 |
+ROW |107066 |1429 |32946 |
+ROW |107067 |1429 |32947 |
+ROW |107068 |1429 |32948 |
+ROW |107069 |1429 |32949 |
+ROW |107070 |1429 |32950 |
+ROW |107071 |1429 |32951 |
+ROW |107072 |1429 |32952 |
+ROW |107073 |1429 |32953 |
+ROW |107074 |1429 |32954 |
+ROW |107075 |1429 |32955 |
+ROW |107076 |1431 |32956 |
+ROW |107077 |1431 |32957 |
+ROW |107078 |1431 |32958 |
+ROW |107079 |1431 |32959 |
+ROW |107080 |1431 |32960 |
+ROW |107081 |1431 |32961 |
+ROW |107082 |1431 |32962 |
+ROW |107083 |1431 |32963 |
+ROW |107084 |1431 |32964 |
+ROW |107085 |1431 |32965 |
+ROW |107086 |1431 |32966 |
+ROW |107087 |1431 |32967 |
+ROW |107088 |1431 |32968 |
+ROW |107089 |1431 |32969 |
+ROW |107090 |1431 |32970 |
+ROW |107091 |1429 |32976 |
+ROW |107092 |1431 |32977 |
+ROW |107093 |1431 |32978 |
+ROW |107094 |1431 |32979 |
+ROW |107095 |1431 |32980 |
+ROW |107096 |1431 |32981 |
+ROW |107097 |1431 |32982 |
+ROW |107098 |1354 |31910 |
+ROW |107099 |1354 |31911 |
+ROW |107100 |1354 |31912 |
+ROW |107101 |1354 |31913 |
+ROW |107102 |1354 |31914 |
+ROW |107103 |1354 |31915 |
+ROW |107104 |1354 |31916 |
+ROW |107105 |1354 |31917 |
+ROW |107106 |1354 |31918 |
+ROW |107107 |1354 |31919 |
+ROW |107108 |1354 |31920 |
+ROW |107109 |1354 |31921 |
+ROW |107110 |1354 |31922 |
+ROW |107111 |1354 |31923 |
+ROW |107112 |1354 |31924 |
+ROW |107113 |1354 |31925 |
+ROW |107114 |1354 |31926 |
+ROW |107115 |1354 |31927 |
+ROW |107116 |1354 |31928 |
+ROW |107117 |1354 |31929 |
+ROW |107118 |1354 |31930 |
+ROW |107119 |1354 |31931 |
+ROW |107120 |1354 |31932 |
+ROW |107121 |1354 |31933 |
+ROW |107122 |1354 |31934 |
+ROW |107123 |1354 |31935 |
+ROW |107124 |1354 |31936 |
+ROW |107125 |1354 |31937 |
+ROW |107126 |1354 |31938 |
+ROW |107127 |1354 |31939 |
+ROW |107128 |1354 |31940 |
+ROW |107129 |1354 |31941 |
+ROW |107130 |1354 |31942 |
+ROW |107131 |1354 |31943 |
+ROW |107132 |1354 |31944 |
+ROW |107133 |1354 |31945 |
+ROW |107134 |1354 |31946 |
+ROW |107135 |1354 |31947 |
+ROW |107136 |1354 |31948 |
+ROW |107137 |1354 |31949 |
+ROW |107138 |1354 |31950 |
+ROW |107139 |1354 |31951 |
+ROW |107140 |1354 |31952 |
+ROW |107141 |1354 |31953 |
+ROW |107142 |1354 |31954 |
+ROW |107143 |1354 |31955 |
+ROW |107144 |1354 |31956 |
+ROW |107145 |1354 |31957 |
+ROW |107146 |1354 |31958 |
+ROW |107147 |1354 |31959 |
+ROW |107148 |1354 |31960 |
+ROW |107149 |1354 |31961 |
+ROW |107150 |1354 |31962 |
+ROW |107151 |1354 |31963 |
+ROW |107152 |1109 |28511 |
+ROW |107153 |1342 |31554 |
+ROW |107154 |1342 |31555 |
+ROW |107155 |1342 |31556 |
+ROW |107156 |1343 |31557 |
+ROW |107157 |1343 |31558 |
+ROW |107158 |1343 |31559 |
+ROW |107159 |1343 |31560 |
+ROW |107160 |1343 |31561 |
+ROW |107161 |1343 |31562 |
+ROW |107162 |1343 |31563 |
+ROW |107163 |1343 |31564 |
+ROW |107164 |1343 |31565 |
+ROW |107165 |1343 |31566 |
+ROW |107166 |1343 |31567 |
+ROW |107167 |1343 |31568 |
+ROW |107168 |1343 |31569 |
+ROW |107169 |1343 |31570 |
+ROW |107170 |1343 |31571 |
+ROW |107171 |1343 |31572 |
+ROW |107172 |1343 |31573 |
+ROW |107173 |1343 |31574 |
+ROW |107174 |1343 |31575 |
+ROW |107175 |1344 |31576 |
+ROW |107176 |1344 |31577 |
+ROW |107177 |1344 |31578 |
+ROW |107178 |1344 |31579 |
+ROW |107179 |1344 |31580 |
+ROW |107180 |1344 |31581 |
+ROW |107181 |1344 |31582 |
+ROW |107182 |1344 |31583 |
+ROW |107183 |1344 |31584 |
+ROW |107184 |1344 |31585 |
+ROW |107185 |1344 |31586 |
+ROW |107186 |1344 |31587 |
+ROW |107187 |1344 |31588 |
+ROW |107188 |1344 |31589 |
+ROW |107189 |1344 |31590 |
+ROW |107190 |1344 |31591 |
+ROW |107191 |1344 |31592 |
+ROW |107192 |1344 |31593 |
+ROW |107193 |1344 |31594 |
+ROW |107194 |1344 |31595 |
+ROW |107195 |1344 |31596 |
+ROW |107196 |1342 |31605 |
+ROW |107197 |1342 |31606 |
+ROW |107198 |1342 |31607 |
+ROW |107199 |1342 |31608 |
+ROW |107200 |1342 |31609 |
+ROW |107201 |1343 |31610 |
+ROW |107202 |1343 |31611 |
+ROW |107203 |1343 |31612 |
+ROW |107204 |1343 |31613 |
+ROW |107205 |1343 |31614 |
+ROW |107206 |1343 |31615 |
+ROW |107207 |1343 |31616 |
+ROW |107208 |1343 |31617 |
+ROW |107209 |1343 |31618 |
+ROW |107210 |1343 |31619 |
+ROW |107211 |1343 |31620 |
+ROW |107212 |1343 |31621 |
+ROW |107213 |1344 |31622 |
+ROW |107214 |1344 |31623 |
+ROW |107215 |1344 |31624 |
+ROW |107216 |1344 |31625 |
+ROW |107217 |1360 |32158 |
+ROW |107218 |1360 |32159 |
+ROW |107219 |1361 |32160 |
+ROW |107220 |1361 |32161 |
+ROW |107221 |1361 |32162 |
+ROW |107222 |1361 |32163 |
+ROW |107223 |1361 |32164 |
+ROW |107224 |1361 |32165 |
+ROW |107225 |1361 |32166 |
+ROW |107226 |1361 |32167 |
+ROW |107227 |1361 |32168 |
+ROW |107228 |1361 |32169 |
+ROW |107229 |1361 |32170 |
+ROW |107230 |1361 |32171 |
+ROW |107231 |1361 |32172 |
+ROW |107232 |1361 |32173 |
+ROW |107233 |1361 |32174 |
+ROW |107234 |1361 |32175 |
+ROW |107235 |1361 |32176 |
+ROW |107236 |1361 |32177 |
+ROW |107237 |1361 |32178 |
+ROW |107238 |1361 |32179 |
+ROW |107239 |1361 |32180 |
+ROW |107240 |1361 |32181 |
+ROW |107241 |1361 |32182 |
+ROW |107242 |1361 |32183 |
+ROW |107243 |1361 |32184 |
+ROW |107244 |1361 |32185 |
+ROW |107245 |1361 |32186 |
+ROW |107246 |1361 |32187 |
+ROW |107247 |1361 |32188 |
+ROW |107248 |1361 |32189 |
+ROW |107249 |1361 |32190 |
+ROW |107250 |1361 |32191 |
+ROW |107251 |1361 |32192 |
+ROW |107252 |1361 |32201 |
+ROW |107253 |1361 |32202 |
+ROW |107254 |1361 |32203 |
+ROW |107255 |1361 |32204 |
+ROW |107256 |1361 |32205 |
+ROW |107257 |1361 |32206 |
+ROW |107258 |446 |23644 |
+ROW |107259 |447 |23645 |
+ROW |107260 |448 |23646 |
+ROW |107261 |449 |23647 |
+ROW |107262 |450 |23648 |
+ROW |107263 |451 |23649 |
+ROW |107264 |452 |23650 |
+ROW |107265 |453 |23651 |
+ROW |107266 |1111 |28585 |
+ROW |107267 |1111 |28586 |
+ROW |107268 |1111 |28587 |
+ROW |107269 |1111 |28588 |
+ROW |107270 |1111 |28589 |
+ROW |107271 |1111 |28590 |
+ROW |107272 |1111 |28591 |
+ROW |107273 |1111 |28592 |
+ROW |107274 |1111 |28593 |
+ROW |107275 |1111 |28594 |
+ROW |107276 |1111 |28595 |
+ROW |107277 |1111 |28596 |
+ROW |107278 |1111 |28597 |
+ROW |107279 |1111 |28598 |
+ROW |107280 |1111 |28599 |
+ROW |107281 |1111 |28600 |
+ROW |107282 |1111 |28601 |
+ROW |107283 |1111 |28602 |
+ROW |107284 |1111 |28603 |
+ROW |107285 |1111 |28604 |
+ROW |107286 |1111 |28605 |
+ROW |107287 |1111 |28606 |
+ROW |107288 |1111 |28607 |
+ROW |107289 |1111 |28608 |
+ROW |107290 |1111 |28609 |
+ROW |107291 |1111 |28610 |
+ROW |107292 |1111 |28611 |
+ROW |107293 |1111 |28612 |
+ROW |107294 |1111 |28613 |
+ROW |107295 |1111 |28614 |
+ROW |107296 |1111 |28615 |
+ROW |107297 |1111 |28616 |
+ROW |107298 |1111 |31052 |
+ROW |107299 |1110 |28539 |
+ROW |107300 |1110 |28540 |
+ROW |107301 |1110 |28541 |
+ROW |107302 |1110 |28542 |
+ROW |107303 |1110 |28543 |
+ROW |107304 |1110 |28544 |
+ROW |107305 |1110 |28545 |
+ROW |107306 |1110 |28546 |
+ROW |107307 |1110 |28547 |
+ROW |107308 |1110 |28548 |
+ROW |107309 |1110 |28549 |
+ROW |107310 |1110 |28550 |
+ROW |107311 |1110 |28551 |
+ROW |107312 |1110 |28552 |
+ROW |107313 |1110 |28553 |
+ROW |107314 |1110 |28554 |
+ROW |107315 |1110 |28555 |
+ROW |107316 |1110 |28556 |
+ROW |107317 |1110 |28557 |
+ROW |107318 |1110 |28558 |
+ROW |107319 |1110 |28559 |
+ROW |107320 |1110 |28560 |
+ROW |107321 |1110 |28561 |
+ROW |107322 |1110 |28562 |
+ROW |107323 |1110 |28563 |
+ROW |107324 |1110 |28564 |
+ROW |107325 |1110 |28565 |
+ROW |107326 |1110 |28566 |
+ROW |107327 |1110 |28567 |
+ROW |107328 |1110 |28568 |
+ROW |107329 |1110 |28569 |
+ROW |107330 |1110 |28570 |
+ROW |107331 |1110 |28571 |
+ROW |107332 |1110 |28572 |
+ROW |107333 |1110 |28573 |
+ROW |107334 |1110 |28574 |
+ROW |107335 |1110 |28575 |
+ROW |107336 |1110 |28576 |
+ROW |107337 |1110 |28577 |
+ROW |107338 |1110 |28578 |
+ROW |107339 |1110 |28579 |
+ROW |107340 |1110 |28580 |
+ROW |107341 |1110 |28581 |
+ROW |107342 |1110 |28582 |
+ROW |107343 |1110 |28583 |
+ROW |107344 |1110 |28584 |
+ROW |107345 |1110 |29821 |
+ROW |107346 |1110 |31053 |
+ROW |107347 |454 |23652 |
+ROW |107348 |455 |23653 |
+ROW |107349 |456 |23654 |
+ROW |107350 |356 |10067 |
+ROW |107351 |356 |10068 |
+ROW |107352 |356 |10069 |
+ROW |107353 |356 |10070 |
+ROW |107354 |356 |10071 |
+ROW |107355 |356 |10072 |
+ROW |107356 |356 |23340 |
+ROW |107357 |356 |23341 |
+ROW |107358 |356 |23342 |
+ROW |107359 |356 |23343 |
+ROW |107360 |356 |23344 |
+ROW |107361 |356 |23345 |
+ROW |107362 |356 |23346 |
+ROW |107363 |356 |23347 |
+ROW |107364 |356 |23348 |
+ROW |107365 |356 |23349 |
+ROW |107366 |356 |23350 |
+ROW |107367 |356 |23351 |
+ROW |107368 |356 |23352 |
+ROW |107369 |356 |23353 |
+ROW |107370 |356 |23354 |
+ROW |107371 |356 |23355 |
+ROW |107372 |356 |23356 |
+ROW |107373 |356 |23357 |
+ROW |107374 |356 |23358 |
+ROW |107375 |356 |23359 |
+ROW |107376 |356 |23360 |
+ROW |107377 |356 |25368 |
+ROW |107378 |356 |25369 |
+ROW |107379 |356 |28250 |
+ROW |107380 |356 |28251 |
+ROW |107381 |356 |28617 |
+ROW |107382 |356 |28618 |
+ROW |107383 |356 |28619 |
+ROW |107384 |179 |10061 |
+ROW |107385 |179 |10062 |
+ROW |107386 |179 |10063 |
+ROW |107387 |179 |10064 |
+ROW |107388 |179 |10065 |
+ROW |107389 |179 |10066 |
+ROW |107390 |179 |22183 |
+ROW |107391 |179 |22185 |
+ROW |107392 |179 |22187 |
+ROW |107393 |179 |22189 |
+ROW |107394 |179 |22191 |
+ROW |107395 |179 |22196 |
+ROW |107396 |179 |22199 |
+ROW |107397 |179 |22219 |
+ROW |107398 |179 |22396 |
+ROW |107399 |179 |22399 |
+ROW |107400 |179 |22400 |
+ROW |107401 |179 |22401 |
+ROW |107402 |179 |22402 |
+ROW |107403 |179 |22404 |
+ROW |107404 |179 |22406 |
+ROW |107405 |179 |22408 |
+ROW |107406 |179 |22412 |
+ROW |107407 |179 |22414 |
+ROW |107408 |179 |22416 |
+ROW |107409 |179 |22418 |
+ROW |107410 |179 |22420 |
+ROW |107411 |179 |22422 |
+ROW |107412 |179 |22424 |
+ROW |107413 |179 |22426 |
+ROW |107414 |179 |22430 |
+ROW |107415 |179 |22689 |
+ROW |107416 |179 |23171 |
+ROW |107417 |179 |23251 |
+ROW |107418 |179 |23634 |
+ROW |107419 |179 |23661 |
+ROW |107420 |179 |23663 |
+ROW |107421 |179 |25366 |
+ROW |107422 |179 |25370 |
+ROW |107423 |179 |25665 |
+ROW |107424 |179 |25666 |
+ROW |107425 |179 |28248 |
+ROW |107426 |179 |28533 |
+ROW |107427 |179 |28535 |
+ROW |107428 |179 |28537 |
+ROW |107429 |179 |29822 |
+ROW |107430 |345 |10073 |
+ROW |107431 |345 |10074 |
+ROW |107432 |345 |10075 |
+ROW |107433 |345 |10076 |
+ROW |107434 |345 |10077 |
+ROW |107435 |345 |10078 |
+ROW |107436 |345 |23252 |
+ROW |107437 |345 |23253 |
+ROW |107438 |345 |23255 |
+ROW |107439 |345 |23256 |
+ROW |107440 |345 |23257 |
+ROW |107441 |345 |23258 |
+ROW |107442 |345 |23259 |
+ROW |107443 |345 |23260 |
+ROW |107444 |345 |23261 |
+ROW |107445 |345 |23262 |
+ROW |107446 |345 |23264 |
+ROW |107447 |345 |23265 |
+ROW |107448 |345 |23266 |
+ROW |107449 |345 |23267 |
+ROW |107450 |345 |23268 |
+ROW |107451 |345 |23269 |
+ROW |107452 |345 |23270 |
+ROW |107453 |345 |23271 |
+ROW |107454 |345 |23272 |
+ROW |107455 |345 |23273 |
+ROW |107456 |345 |23274 |
+ROW |107457 |345 |23275 |
+ROW |107458 |345 |23276 |
+ROW |107459 |345 |23277 |
+ROW |107460 |345 |23328 |
+ROW |107461 |345 |23620 |
+ROW |107462 |345 |23625 |
+ROW |107463 |345 |23628 |
+ROW |107464 |345 |23635 |
+ROW |107465 |345 |23662 |
+ROW |107466 |345 |23664 |
+ROW |107467 |345 |25367 |
+ROW |107468 |345 |25371 |
+ROW |107469 |345 |25667 |
+ROW |107470 |345 |25668 |
+ROW |107471 |345 |28249 |
+ROW |107472 |345 |28534 |
+ROW |107473 |345 |28536 |
+ROW |107474 |345 |28538 |
+ROW |107475 |345 |29823 |
+ROW |107476 |280 |22917 |
+ROW |107477 |280 |22918 |
+ROW |107478 |273 |22920 |
+ROW |107479 |279 |22920 |
+ROW |107480 |273 |22921 |
+ROW |107481 |279 |22921 |
+ROW |107482 |273 |22922 |
+ROW |107483 |279 |22922 |
+ROW |107484 |273 |22923 |
+ROW |107485 |279 |22923 |
+ROW |107486 |273 |22924 |
+ROW |107487 |279 |22924 |
+ROW |107488 |275 |22933 |
+ROW |107489 |278 |22933 |
+ROW |107490 |275 |22934 |
+ROW |107491 |278 |22934 |
+ROW |107492 |275 |22938 |
+ROW |107493 |278 |22938 |
+ROW |107494 |275 |22939 |
+ROW |107495 |278 |22939 |
+ROW |107496 |278 |22940 |
+ROW |107497 |281 |22940 |
+ROW |107498 |281 |22941 |
+ROW |107499 |276 |22942 |
+ROW |107500 |276 |22943 |
+ROW |107501 |273 |23108 |
+ROW |107502 |331 |23108 |
+ROW |107503 |279 |23108 |
+ROW |107504 |273 |23109 |
+ROW |107505 |331 |23109 |
+ROW |107506 |279 |23109 |
+ROW |107507 |273 |23110 |
+ROW |107508 |279 |23110 |
+ROW |107509 |273 |23111 |
+ROW |107510 |331 |23111 |
+ROW |107511 |279 |23111 |
+ROW |107512 |273 |23112 |
+ROW |107513 |331 |23112 |
+ROW |107514 |279 |23112 |
+ROW |107515 |273 |23113 |
+ROW |107516 |279 |23113 |
+ROW |107517 |273 |23114 |
+ROW |107518 |279 |23114 |
+ROW |107519 |273 |23115 |
+ROW |107520 |279 |23115 |
+ROW |107521 |274 |23116 |
+ROW |107522 |279 |23116 |
+ROW |107523 |274 |23117 |
+ROW |107524 |279 |23117 |
+ROW |107525 |273 |23118 |
+ROW |107526 |331 |23118 |
+ROW |107527 |273 |23119 |
+ROW |107528 |279 |23119 |
+ROW |107529 |273 |23120 |
+ROW |107530 |279 |23120 |
+ROW |107531 |273 |23121 |
+ROW |107532 |279 |23121 |
+ROW |107533 |276 |23122 |
+ROW |107534 |279 |23122 |
+ROW |107535 |273 |23123 |
+ROW |107536 |279 |23123 |
+ROW |107537 |276 |23124 |
+ROW |107538 |276 |23125 |
+ROW |107539 |276 |23126 |
+ROW |107540 |276 |23127 |
+ROW |107541 |276 |23128 |
+ROW |107542 |276 |23129 |
+ROW |107543 |276 |23130 |
+ROW |107544 |276 |23131 |
+ROW |107545 |277 |22945 |
+ROW |107546 |277 |22946 |
+ROW |107547 |274 |22948 |
+ROW |107548 |274 |22949 |
+ROW |107549 |274 |22950 |
+ROW |107550 |274 |22951 |
+ROW |107551 |274 |22952 |
+ROW |107552 |268 |22875 |
+ROW |107553 |268 |22876 |
+ROW |107554 |270 |22877 |
+ROW |107555 |270 |22878 |
+ROW |107556 |265 |22879 |
+ROW |107557 |268 |22879 |
+ROW |107558 |263 |22880 |
+ROW |107559 |269 |22880 |
+ROW |107560 |263 |22881 |
+ROW |107561 |269 |22881 |
+ROW |107562 |263 |22882 |
+ROW |107563 |269 |22882 |
+ROW |107564 |263 |22883 |
+ROW |107565 |269 |22883 |
+ROW |107566 |263 |22884 |
+ROW |107567 |269 |22884 |
+ROW |107568 |263 |22885 |
+ROW |107569 |269 |22885 |
+ROW |107570 |263 |22886 |
+ROW |107571 |269 |22886 |
+ROW |107572 |263 |22888 |
+ROW |107573 |269 |22888 |
+ROW |107574 |263 |22891 |
+ROW |107575 |269 |22891 |
+ROW |107576 |263 |22892 |
+ROW |107577 |269 |22892 |
+ROW |107578 |265 |22893 |
+ROW |107579 |268 |22893 |
+ROW |107580 |265 |22894 |
+ROW |107581 |268 |22894 |
+ROW |107582 |266 |22895 |
+ROW |107583 |266 |22896 |
+ROW |107584 |266 |22897 |
+ROW |107585 |265 |22898 |
+ROW |107586 |268 |22898 |
+ROW |107587 |265 |22899 |
+ROW |107588 |268 |22899 |
+ROW |107589 |268 |22900 |
+ROW |107590 |271 |22900 |
+ROW |107591 |271 |22901 |
+ROW |107592 |266 |22902 |
+ROW |107593 |266 |22903 |
+ROW |107594 |264 |22908 |
+ROW |107595 |264 |22909 |
+ROW |107596 |264 |22910 |
+ROW |107597 |264 |22911 |
+ROW |107598 |264 |22912 |
+ROW |107599 |267 |23073 |
+ROW |107600 |267 |23074 |
+ROW |107601 |283 |22961 |
+ROW |107602 |289 |22961 |
+ROW |107603 |283 |22962 |
+ROW |107604 |289 |22962 |
+ROW |107605 |283 |22963 |
+ROW |107606 |289 |22963 |
+ROW |107607 |283 |22965 |
+ROW |107608 |289 |22965 |
+ROW |107609 |283 |22968 |
+ROW |107610 |289 |22968 |
+ROW |107611 |283 |22971 |
+ROW |107612 |289 |22971 |
+ROW |107613 |283 |22972 |
+ROW |107614 |289 |22972 |
+ROW |107615 |285 |22973 |
+ROW |107616 |288 |22973 |
+ROW |107617 |285 |22974 |
+ROW |107618 |288 |22974 |
+ROW |107619 |285 |22978 |
+ROW |107620 |288 |22978 |
+ROW |107621 |288 |22980 |
+ROW |107622 |291 |22980 |
+ROW |107623 |291 |22981 |
+ROW |107624 |286 |22982 |
+ROW |107625 |286 |22983 |
+ROW |107626 |287 |22985 |
+ROW |107627 |287 |22986 |
+ROW |107628 |284 |22988 |
+ROW |107629 |284 |22989 |
+ROW |107630 |284 |22990 |
+ROW |107631 |284 |22991 |
+ROW |107632 |284 |22992 |
+ROW |107633 |308 |23035 |
+ROW |107634 |308 |23036 |
+ROW |107635 |305 |23039 |
+ROW |107636 |308 |23039 |
+ROW |107637 |303 |23041 |
+ROW |107638 |309 |23041 |
+ROW |107639 |303 |23042 |
+ROW |107640 |309 |23042 |
+ROW |107641 |303 |23043 |
+ROW |107642 |309 |23043 |
+ROW |107643 |305 |23053 |
+ROW |107644 |308 |23053 |
+ROW |107645 |305 |23054 |
+ROW |107646 |308 |23054 |
+ROW |107647 |305 |23058 |
+ROW |107648 |308 |23058 |
+ROW |107649 |305 |23059 |
+ROW |107650 |308 |23059 |
+ROW |107651 |308 |23060 |
+ROW |107652 |311 |23060 |
+ROW |107653 |311 |23061 |
+ROW |107654 |306 |23062 |
+ROW |107655 |306 |23063 |
+ROW |107656 |307 |23077 |
+ROW |107657 |307 |23078 |
+ROW |107658 |304 |23068 |
+ROW |107659 |304 |23069 |
+ROW |107660 |304 |23070 |
+ROW |107661 |304 |23071 |
+ROW |107662 |304 |23072 |
+ROW |107663 |258 |22835 |
+ROW |107664 |258 |22836 |
+ROW |107665 |260 |22837 |
+ROW |107666 |260 |22838 |
+ROW |107667 |255 |22839 |
+ROW |107668 |258 |22839 |
+ROW |107669 |253 |22840 |
+ROW |107670 |259 |22840 |
+ROW |107671 |253 |22841 |
+ROW |107672 |259 |22841 |
+ROW |107673 |253 |22842 |
+ROW |107674 |259 |22842 |
+ROW |107675 |253 |22843 |
+ROW |107676 |259 |22843 |
+ROW |107677 |253 |22844 |
+ROW |107678 |259 |22844 |
+ROW |107679 |253 |22845 |
+ROW |107680 |259 |22845 |
+ROW |107681 |253 |22846 |
+ROW |107682 |259 |22846 |
+ROW |107683 |253 |22848 |
+ROW |107684 |259 |22848 |
+ROW |107685 |253 |22851 |
+ROW |107686 |259 |22851 |
+ROW |107687 |253 |22852 |
+ROW |107688 |259 |22852 |
+ROW |107689 |255 |22853 |
+ROW |107690 |258 |22853 |
+ROW |107691 |255 |22854 |
+ROW |107692 |258 |22854 |
+ROW |107693 |256 |22855 |
+ROW |107694 |256 |22856 |
+ROW |107695 |256 |22857 |
+ROW |107696 |255 |22858 |
+ROW |107697 |258 |22858 |
+ROW |107698 |255 |22859 |
+ROW |107699 |258 |22859 |
+ROW |107700 |258 |22860 |
+ROW |107701 |261 |22860 |
+ROW |107702 |261 |22861 |
+ROW |107703 |256 |22862 |
+ROW |107704 |256 |22863 |
+ROW |107705 |254 |22868 |
+ROW |107706 |254 |22869 |
+ROW |107707 |254 |22870 |
+ROW |107708 |254 |22871 |
+ROW |107709 |254 |22872 |
+ROW |107710 |257 |23075 |
+ROW |107711 |257 |23076 |
+ROW |107712 |298 |22996 |
+ROW |107713 |300 |22997 |
+ROW |107714 |300 |22998 |
+ROW |107715 |295 |22999 |
+ROW |107716 |298 |22999 |
+ROW |107717 |293 |23000 |
+ROW |107718 |299 |23000 |
+ROW |107719 |293 |23001 |
+ROW |107720 |299 |23001 |
+ROW |107721 |293 |23002 |
+ROW |107722 |299 |23002 |
+ROW |107723 |293 |23003 |
+ROW |107724 |299 |23003 |
+ROW |107725 |293 |23004 |
+ROW |107726 |299 |23004 |
+ROW |107727 |293 |23005 |
+ROW |107728 |299 |23005 |
+ROW |107729 |293 |23007 |
+ROW |107730 |299 |23007 |
+ROW |107731 |293 |23011 |
+ROW |107732 |299 |23011 |
+ROW |107733 |293 |23012 |
+ROW |107734 |299 |23012 |
+ROW |107735 |295 |23013 |
+ROW |107736 |298 |23013 |
+ROW |107737 |295 |23014 |
+ROW |107738 |298 |23014 |
+ROW |107739 |296 |23015 |
+ROW |107740 |296 |23016 |
+ROW |107741 |296 |23017 |
+ROW |107742 |295 |23018 |
+ROW |107743 |298 |23018 |
+ROW |107744 |295 |23019 |
+ROW |107745 |298 |23019 |
+ROW |107746 |298 |23020 |
+ROW |107747 |301 |23020 |
+ROW |107748 |301 |23021 |
+ROW |107749 |296 |23022 |
+ROW |107750 |296 |23023 |
+ROW |107751 |297 |23025 |
+ROW |107752 |297 |23026 |
+ROW |107753 |294 |23028 |
+ROW |107754 |294 |23029 |
+ROW |107755 |294 |23030 |
+ROW |107756 |294 |23031 |
+ROW |107757 |294 |23032 |
+ROW |107758 |743 |26925 |
+ROW |107759 |743 |26926 |
+ROW |107760 |741 |26927 |
+ROW |107761 |742 |26928 |
+ROW |107762 |743 |26929 |
+ROW |107763 |743 |26930 |
+ROW |107764 |743 |26931 |
+ROW |107765 |743 |26932 |
+ROW |107766 |745 |26933 |
+ROW |107767 |746 |26934 |
+ROW |107768 |744 |26935 |
+ROW |107769 |744 |26936 |
+ROW |107770 |746 |26937 |
+ROW |107771 |746 |26938 |
+ROW |107772 |746 |26939 |
+ROW |107773 |746 |26940 |
+ROW |107774 |746 |26941 |
+ROW |107775 |746 |26942 |
+ROW |107776 |745 |26943 |
+ROW |107777 |1362 |32207 |
+ROW |107778 |1362 |32208 |
+ROW |107779 |1362 |32209 |
+ROW |107780 |1362 |32210 |
+ROW |107781 |1362 |32211 |
+ROW |107782 |1362 |32212 |
+ROW |107783 |1362 |32213 |
+ROW |107784 |1362 |32214 |
+ROW |107785 |1362 |32215 |
+ROW |107786 |1362 |32216 |
+ROW |107787 |1362 |32217 |
+ROW |107788 |1362 |32218 |
+ROW |107789 |1362 |32219 |
+ROW |107790 |1362 |32220 |
+ROW |107791 |1362 |32221 |
+ROW |107792 |1362 |32222 |
+ROW |107793 |1362 |32223 |
+ROW |107794 |1362 |32224 |
+ROW |107795 |1362 |32225 |
+ROW |107796 |1362 |32226 |
+ROW |107797 |1362 |32227 |
+ROW |107798 |1362 |32228 |
+ROW |107799 |1362 |32229 |
+ROW |107800 |1362 |32230 |
+ROW |107801 |1362 |32231 |
+ROW |107802 |1362 |32232 |
+ROW |107803 |1362 |32233 |
+ROW |107804 |1362 |32234 |
+ROW |107805 |1362 |32235 |
+ROW |107806 |1362 |32236 |
+ROW |107807 |1362 |32237 |
+ROW |107808 |1362 |32238 |
+ROW |107809 |1362 |32239 |
+ROW |107810 |1362 |32240 |
+ROW |107811 |1362 |32241 |
+ROW |107812 |1362 |32242 |
+ROW |107813 |1362 |32243 |
+ROW |107814 |1362 |32244 |
+ROW |107815 |1362 |32245 |
+ROW |107816 |1362 |32246 |
+ROW |107817 |1362 |32247 |
+ROW |107818 |1362 |32248 |
+ROW |107819 |1362 |32249 |
+ROW |107820 |1362 |32250 |
+ROW |107821 |1362 |32251 |
+ROW |107822 |1362 |32252 |
+ROW |107823 |1362 |32253 |
+ROW |107824 |1362 |32254 |
+ROW |107825 |1362 |32255 |
+ROW |107826 |1362 |32256 |
+ROW |107827 |1362 |32257 |
+ROW |107828 |1362 |32258 |
+ROW |107829 |1362 |32259 |
+ROW |107830 |1362 |32260 |
+ROW |107831 |1362 |32261 |
+ROW |107832 |1362 |32262 |
+ROW |107833 |1362 |32263 |
+ROW |107834 |1362 |32264 |
+ROW |107835 |1362 |32265 |
+ROW |107836 |1362 |32266 |
+ROW |107837 |1362 |32267 |
+ROW |107838 |1362 |32268 |
+ROW |107839 |1362 |32269 |
+ROW |107840 |1362 |32270 |
+ROW |107841 |1362 |32271 |
+ROW |107842 |1362 |32272 |
+ROW |107843 |1362 |32273 |
+ROW |107844 |1328 |30821 |
+ROW |107845 |1328 |30822 |
+ROW |107846 |1330 |30823 |
+ROW |107847 |1330 |30824 |
+ROW |107848 |1330 |30825 |
+ROW |107849 |1330 |30826 |
+ROW |107850 |1328 |30827 |
+ROW |107851 |1330 |30828 |
+ROW |107852 |1330 |30829 |
+ROW |107853 |1330 |30830 |
+ROW |107854 |1328 |31054 |
+ROW |107855 |1328 |30831 |
+ROW |107856 |1328 |30832 |
+ROW |107857 |1328 |30833 |
+ROW |107858 |1328 |30834 |
+ROW |107859 |1328 |30835 |
+ROW |107860 |1329 |30836 |
+ROW |107861 |1328 |30837 |
+ROW |107862 |1328 |30838 |
+ROW |107863 |1328 |30839 |
+ROW |107864 |1329 |30840 |
+ROW |107865 |1328 |30841 |
+ROW |107866 |1329 |30842 |
+ROW |107867 |1329 |30843 |
+ROW |107868 |1329 |30844 |
+ROW |107869 |1329 |30845 |
+ROW |107870 |1328 |30846 |
+ROW |107871 |1328 |30847 |
+ROW |107872 |1328 |30848 |
+ROW |107873 |1328 |30849 |
+ROW |107874 |1328 |30850 |
+ROW |107875 |1328 |30851 |
+ROW |107876 |1328 |30852 |
+ROW |107877 |1328 |30853 |
+ROW |107878 |1328 |30854 |
+ROW |107879 |1328 |30855 |
+ROW |107880 |1328 |30856 |
+ROW |107881 |1328 |30857 |
+ROW |107882 |1328 |30858 |
+ROW |107883 |1328 |30859 |
+ROW |107884 |1328 |30860 |
+ROW |107885 |1328 |30861 |
+ROW |107886 |1328 |30862 |
+ROW |107887 |1328 |30863 |
+ROW |107888 |1328 |30864 |
+ROW |107889 |1328 |30865 |
+ROW |107890 |1328 |30866 |
+ROW |107891 |1328 |30867 |
+ROW |107892 |1328 |30868 |
+ROW |107893 |1328 |30869 |
+ROW |107894 |1328 |30870 |
+ROW |107895 |1328 |30871 |
+ROW |107896 |1328 |30872 |
+ROW |107897 |1329 |30873 |
+ROW |107898 |1434 |33017 |
+ROW |107899 |1434 |33018 |
+ROW |107900 |1433 |33019 |
+ROW |107901 |1434 |33020 |
+ROW |107902 |1434 |33021 |
+ROW |107903 |1433 |33022 |
+ROW |107904 |1433 |33023 |
+ROW |107905 |1433 |33024 |
+ROW |107906 |1433 |33025 |
+ROW |107907 |1433 |33026 |
+ROW |107908 |1433 |33027 |
+ROW |107909 |1433 |33028 |
+ROW |107910 |1433 |33029 |
+ROW |107911 |1433 |33030 |
+ROW |107912 |1433 |33031 |
+ROW |107913 |1433 |33032 |
+ROW |107914 |1433 |33033 |
+ROW |107915 |1433 |33034 |
+ROW |107916 |1433 |33035 |
+ROW |107917 |1433 |33036 |
+ROW |107918 |1433 |33037 |
+ROW |107919 |1433 |33038 |
+ROW |107920 |1433 |33039 |
+ROW |107921 |1433 |33040 |
+ROW |107922 |1433 |33041 |
+ROW |107923 |1433 |33042 |
+ROW |107924 |1433 |33043 |
+ROW |107925 |1433 |33044 |
+ROW |107926 |1433 |33045 |
+ROW |107927 |1433 |33046 |
+ROW |107928 |1433 |33047 |
+ROW |107929 |1433 |33048 |
+ROW |107930 |1433 |33049 |
+ROW |107931 |1433 |33050 |
+ROW |107932 |1433 |33051 |
+ROW |107933 |1433 |33052 |
+ROW |107934 |1433 |33053 |
+ROW |107935 |1433 |33054 |
+ROW |107936 |1433 |33055 |
+ROW |107937 |1433 |33056 |
+ROW |107938 |1433 |33057 |
+ROW |107939 |1433 |33058 |
+ROW |107940 |1433 |33059 |
+ROW |107941 |1433 |33060 |
+ROW |107942 |1434 |33065 |
+ROW |107943 |1434 |33066 |
+ROW |107944 |1433 |33122 |
+ROW |107945 |1433 |33123 |
+ROW |107946 |1433 |33124 |
+ROW |107947 |1433 |33125 |
+ROW |107948 |1433 |33126 |
+ROW |107949 |1433 |33127 |
+ROW |107950 |1433 |33128 |
+ROW |107951 |1433 |33129 |
+ROW |107952 |1433 |33130 |
+ROW |107953 |1433 |33131 |
+ROW |107954 |1433 |33132 |
+ROW |107955 |1433 |33133 |
+ROW |107956 |1433 |33134 |
+ROW |107957 |1433 |33135 |
+ROW |107958 |1433 |33136 |
+ROW |107959 |1433 |33137 |
+ROW |107960 |1433 |33138 |
+ROW |107961 |1435 |33139 |
+ROW |107962 |1436 |33140 |
+ROW |107963 |1435 |33141 |
+ROW |107964 |1436 |33142 |
+ROW |107965 |1435 |33144 |
+ROW |107966 |1435 |33145 |
+ROW |107967 |1435 |33146 |
+ROW |107968 |1435 |33147 |
+ROW |107969 |1435 |33148 |
+ROW |107970 |1435 |33149 |
+ROW |107971 |1435 |33150 |
+ROW |107972 |1435 |33151 |
+ROW |107973 |1435 |33152 |
+ROW |107974 |1435 |33153 |
+ROW |107975 |1435 |33154 |
+ROW |107976 |1435 |33155 |
+ROW |107977 |1435 |33156 |
+ROW |107978 |1435 |33157 |
+ROW |107979 |1435 |33158 |
+ROW |107980 |1435 |33159 |
+ROW |107981 |1435 |33160 |
+ROW |107982 |1435 |33161 |
+ROW |107983 |1435 |33162 |
+ROW |107984 |1435 |33163 |
+ROW |107985 |1435 |33164 |
+ROW |107986 |1435 |33165 |
+ROW |107987 |1435 |33166 |
+ROW |107988 |1435 |33167 |
+ROW |107989 |1435 |33168 |
+ROW |107990 |1435 |33169 |
+ROW |107991 |1435 |33170 |
+ROW |107992 |1435 |33171 |
+ROW |107993 |1435 |33172 |
+ROW |107994 |1435 |33567 |
+ROW |107995 |1436 |33177 |
+ROW |107996 |1436 |33178 |
+ROW |107997 |1336 |31055 |
+ROW |107998 |1335 |31056 |
+ROW |107999 |1335 |31057 |
+ROW |108000 |1335 |31058 |
+ROW |108001 |1335 |31626 |
+ROW |108002 |1335 |31627 |
+ROW |108003 |1335 |31628 |
+ROW |108004 |1336 |31059 |
+ROW |108005 |1335 |31060 |
+ROW |108006 |1335 |31061 |
+ROW |108007 |1335 |31062 |
+ROW |108008 |1335 |31063 |
+ROW |108009 |1335 |31064 |
+ROW |108010 |1335 |31065 |
+ROW |108011 |1335 |31066 |
+ROW |108012 |1335 |31067 |
+ROW |108013 |1335 |31068 |
+ROW |108014 |1335 |31069 |
+ROW |108015 |1335 |31070 |
+ROW |108016 |1335 |31071 |
+ROW |108017 |1335 |31072 |
+ROW |108018 |1335 |31073 |
+ROW |108019 |1335 |31074 |
+ROW |108020 |1335 |31075 |
+ROW |108021 |1335 |31076 |
+ROW |108022 |1335 |31077 |
+ROW |108023 |1335 |31078 |
+ROW |108024 |1335 |31079 |
+ROW |108025 |1335 |31080 |
+ROW |108026 |1335 |31081 |
+ROW |108027 |1335 |31082 |
+ROW |108028 |1335 |31083 |
+ROW |108029 |1335 |31084 |
+ROW |108030 |1335 |31085 |
+ROW |108031 |1335 |31086 |
+ROW |108032 |1335 |31087 |
+ROW |108033 |1335 |31088 |
+ROW |108034 |1335 |31089 |
+ROW |108035 |1335 |31090 |
+ROW |108036 |1336 |31091 |
+ROW |108037 |1335 |31092 |
+ROW |108038 |1336 |31093 |
+ROW |108039 |1336 |31094 |
+ROW |108040 |1335 |31095 |
+ROW |108041 |1335 |31096 |
+ROW |108042 |1335 |31097 |
+ROW |108043 |1335 |31098 |
+ROW |108044 |1335 |31099 |
+ROW |108045 |1335 |31100 |
+ROW |108046 |1335 |31101 |
+ROW |108047 |1335 |31102 |
+ROW |108048 |1335 |31103 |
+ROW |108049 |1335 |31104 |
+ROW |108050 |1335 |31105 |
+ROW |108051 |1335 |31106 |
+ROW |108052 |1335 |31107 |
+ROW |108053 |1335 |31108 |
+ROW |108054 |1335 |31109 |
+ROW |108055 |1335 |31110 |
+ROW |108056 |1335 |31111 |
+ROW |108057 |1335 |31112 |
+ROW |108058 |1335 |31113 |
+ROW |108059 |1335 |31114 |
+ROW |108060 |1335 |31115 |
+ROW |108061 |1335 |31116 |
+ROW |108062 |1335 |31117 |
+ROW |108063 |1335 |31118 |
+ROW |108064 |1335 |31119 |
+ROW |108065 |1335 |31120 |
+ROW |108066 |1335 |31121 |
+ROW |108067 |1336 |31128 |
+ROW |108068 |1336 |31129 |
+ROW |108069 |1336 |31130 |
+ROW |108070 |1336 |31132 |
+ROW |108071 |1336 |33194 |
+ROW |108072 |1314 |30431 |
+ROW |108073 |1314 |30432 |
+ROW |108074 |1315 |30433 |
+ROW |108075 |1314 |30434 |
+ROW |108076 |1314 |30435 |
+ROW |108077 |1314 |32546 |
+ROW |108078 |1315 |30436 |
+ROW |108079 |1314 |30437 |
+ROW |108080 |1314 |30438 |
+ROW |108081 |1314 |30439 |
+ROW |108082 |1314 |30440 |
+ROW |108083 |1314 |30441 |
+ROW |108084 |1314 |30442 |
+ROW |108085 |1315 |30443 |
+ROW |108086 |1314 |30444 |
+ROW |108087 |1314 |30445 |
+ROW |108088 |1314 |30446 |
+ROW |108089 |1314 |30447 |
+ROW |108090 |1314 |30449 |
+ROW |108091 |1314 |30450 |
+ROW |108092 |1314 |30451 |
+ROW |108093 |1314 |30452 |
+ROW |108094 |1314 |30453 |
+ROW |108095 |1314 |30454 |
+ROW |108096 |1314 |30455 |
+ROW |108097 |1314 |30456 |
+ROW |108098 |1314 |30457 |
+ROW |108099 |1314 |30458 |
+ROW |108100 |1314 |30459 |
+ROW |108101 |1314 |30460 |
+ROW |108102 |1314 |30461 |
+ROW |108103 |1314 |30462 |
+ROW |108104 |1314 |30463 |
+ROW |108105 |1314 |30464 |
+ROW |108106 |1314 |30465 |
+ROW |108107 |1314 |30466 |
+ROW |108108 |1314 |30470 |
+ROW |108109 |1314 |30471 |
+ROW |108110 |1314 |31168 |
+ROW |108111 |1314 |31169 |
+ROW |108112 |1314 |31170 |
+ROW |108113 |1314 |31171 |
+ROW |108114 |1314 |32547 |
+ROW |108115 |1314 |32548 |
+ROW |108116 |1314 |32549 |
+ROW |108117 |1314 |32550 |
+ROW |108118 |1314 |32551 |
+ROW |108119 |1314 |32552 |
+ROW |108120 |1314 |30474 |
+ROW |108121 |1315 |30475 |
+ROW |108122 |1314 |30476 |
+ROW |108123 |1314 |30477 |
+ROW |108124 |1314 |30478 |
+ROW |108125 |1314 |32554 |
+ROW |108126 |1314 |32555 |
+ROW |108127 |1314 |32556 |
+ROW |108128 |1314 |32557 |
+ROW |108129 |1314 |32558 |
+ROW |108130 |1314 |32559 |
+ROW |108131 |1322 |30637 |
+ROW |108132 |1322 |30638 |
+ROW |108133 |1323 |30639 |
+ROW |108134 |1322 |30640 |
+ROW |108135 |1322 |30641 |
+ROW |108136 |1322 |32560 |
+ROW |108137 |1323 |30642 |
+ROW |108138 |1322 |30643 |
+ROW |108139 |1322 |30644 |
+ROW |108140 |1322 |30645 |
+ROW |108141 |1322 |30646 |
+ROW |108142 |1322 |30647 |
+ROW |108143 |1322 |30648 |
+ROW |108144 |1323 |30649 |
+ROW |108145 |1322 |30650 |
+ROW |108146 |1322 |30651 |
+ROW |108147 |1322 |30652 |
+ROW |108148 |1322 |30653 |
+ROW |108149 |1322 |30655 |
+ROW |108150 |1322 |30656 |
+ROW |108151 |1322 |30657 |
+ROW |108152 |1322 |30658 |
+ROW |108153 |1322 |30659 |
+ROW |108154 |1322 |30660 |
+ROW |108155 |1322 |30661 |
+ROW |108156 |1322 |30662 |
+ROW |108157 |1322 |30663 |
+ROW |108158 |1322 |30664 |
+ROW |108159 |1322 |30665 |
+ROW |108160 |1322 |30666 |
+ROW |108161 |1322 |30667 |
+ROW |108162 |1322 |30668 |
+ROW |108163 |1322 |30669 |
+ROW |108164 |1322 |30670 |
+ROW |108165 |1322 |30671 |
+ROW |108166 |1322 |30672 |
+ROW |108167 |1322 |30676 |
+ROW |108168 |1322 |30677 |
+ROW |108169 |1322 |31172 |
+ROW |108170 |1322 |31173 |
+ROW |108171 |1322 |31174 |
+ROW |108172 |1322 |31175 |
+ROW |108173 |1322 |32561 |
+ROW |108174 |1322 |32562 |
+ROW |108175 |1322 |32563 |
+ROW |108176 |1322 |32564 |
+ROW |108177 |1322 |32565 |
+ROW |108178 |1322 |32566 |
+ROW |108179 |1322 |30680 |
+ROW |108180 |1323 |30681 |
+ROW |108181 |1322 |30682 |
+ROW |108182 |1322 |30683 |
+ROW |108183 |1322 |30684 |
+ROW |108184 |1322 |32568 |
+ROW |108185 |1322 |32569 |
+ROW |108186 |1322 |32570 |
+ROW |108187 |1322 |32571 |
+ROW |108188 |1322 |32572 |
+ROW |108189 |1322 |32573 |
+ROW |108190 |1317 |30479 |
+ROW |108191 |1316 |30480 |
+ROW |108192 |1316 |30481 |
+ROW |108193 |1316 |30482 |
+ROW |108194 |1316 |30483 |
+ROW |108195 |1316 |32574 |
+ROW |108196 |1316 |30484 |
+ROW |108197 |1317 |30485 |
+ROW |108198 |1316 |30486 |
+ROW |108199 |1317 |30487 |
+ROW |108200 |1316 |30488 |
+ROW |108201 |1316 |30489 |
+ROW |108202 |1316 |30490 |
+ROW |108203 |1316 |30491 |
+ROW |108204 |1316 |30492 |
+ROW |108205 |1316 |30493 |
+ROW |108206 |1316 |30494 |
+ROW |108207 |1316 |30495 |
+ROW |108208 |1316 |30496 |
+ROW |108209 |1316 |30497 |
+ROW |108210 |1316 |30499 |
+ROW |108211 |1316 |30500 |
+ROW |108212 |1316 |30503 |
+ROW |108213 |1316 |30504 |
+ROW |108214 |1316 |30505 |
+ROW |108215 |1316 |30506 |
+ROW |108216 |1316 |30507 |
+ROW |108217 |1316 |30508 |
+ROW |108218 |1316 |30509 |
+ROW |108219 |1316 |30510 |
+ROW |108220 |1316 |30512 |
+ROW |108221 |1316 |30513 |
+ROW |108222 |1316 |30514 |
+ROW |108223 |1316 |30515 |
+ROW |108224 |1316 |30516 |
+ROW |108225 |1316 |30517 |
+ROW |108226 |1316 |30518 |
+ROW |108227 |1316 |30519 |
+ROW |108228 |1316 |31176 |
+ROW |108229 |1316 |31177 |
+ROW |108230 |1316 |31178 |
+ROW |108231 |1316 |31179 |
+ROW |108232 |1316 |32575 |
+ROW |108233 |1316 |32576 |
+ROW |108234 |1316 |32577 |
+ROW |108235 |1316 |32578 |
+ROW |108236 |1316 |32579 |
+ROW |108237 |1316 |32580 |
+ROW |108238 |1316 |30522 |
+ROW |108239 |1317 |30523 |
+ROW |108240 |1316 |30524 |
+ROW |108241 |1316 |30525 |
+ROW |108242 |1316 |30526 |
+ROW |108243 |1316 |32582 |
+ROW |108244 |1316 |32583 |
+ROW |108245 |1316 |32584 |
+ROW |108246 |1316 |32585 |
+ROW |108247 |1316 |32586 |
+ROW |108248 |1316 |32587 |
+ROW |108249 |1345 |31629 |
+ROW |108250 |1345 |31630 |
+ROW |108251 |1346 |31631 |
+ROW |108252 |1345 |31632 |
+ROW |108253 |1346 |31633 |
+ROW |108254 |1346 |31634 |
+ROW |108255 |1346 |31635 |
+ROW |108256 |1346 |31636 |
+ROW |108257 |1346 |31637 |
+ROW |108258 |1346 |31638 |
+ROW |108259 |1346 |31639 |
+ROW |108260 |1345 |31640 |
+ROW |108261 |1345 |31641 |
+ROW |108262 |1346 |31642 |
+ROW |108263 |1346 |31643 |
+ROW |108264 |1346 |31644 |
+ROW |108265 |1346 |31645 |
+ROW |108266 |1345 |31646 |
+ROW |108267 |1345 |31647 |
+ROW |108268 |1345 |31648 |
+ROW |108269 |1345 |31649 |
+ROW |108270 |1345 |31650 |
+ROW |108271 |1345 |31651 |
+ROW |108272 |1345 |31652 |
+ROW |108273 |1345 |31653 |
+ROW |108274 |1345 |31654 |
+ROW |108275 |1345 |31655 |
+ROW |108276 |1345 |31656 |
+ROW |108277 |1345 |31657 |
+ROW |108278 |1345 |31658 |
+ROW |108279 |1345 |31659 |
+ROW |108280 |1345 |31660 |
+ROW |108281 |1345 |31661 |
+ROW |108282 |1345 |31662 |
+ROW |108283 |1345 |31663 |
+ROW |108284 |1345 |31664 |
+ROW |108285 |1345 |31665 |
+ROW |108286 |1345 |31666 |
+ROW |108287 |1345 |31667 |
+ROW |108288 |1345 |31668 |
+ROW |108289 |1345 |31669 |
+ROW |108290 |1345 |31670 |
+ROW |108291 |1345 |31671 |
+ROW |108292 |1345 |31672 |
+ROW |108293 |1345 |31673 |
+ROW |108294 |1345 |31674 |
+ROW |108295 |1345 |31675 |
+ROW |108296 |1345 |31676 |
+ROW |108297 |1345 |31677 |
+ROW |108298 |1345 |31678 |
+ROW |108299 |1345 |31679 |
+ROW |108300 |1345 |31680 |
+ROW |108301 |1345 |31681 |
+ROW |108302 |1345 |31682 |
+ROW |108303 |1345 |31683 |
+ROW |108304 |1345 |31684 |
+ROW |108305 |1345 |31685 |
+ROW |108306 |1345 |31686 |
+ROW |108307 |1345 |31687 |
+ROW |108308 |1345 |31688 |
+ROW |108309 |1345 |31689 |
+ROW |108310 |1345 |31690 |
+ROW |108311 |1345 |31691 |
+ROW |108312 |1345 |31692 |
+ROW |108313 |1345 |31693 |
+ROW |108314 |1345 |31694 |
+ROW |108315 |1345 |31695 |
+ROW |108316 |1345 |31696 |
+ROW |108317 |1345 |31697 |
+ROW |108318 |1345 |31698 |
+ROW |108319 |1345 |31699 |
+ROW |108320 |1345 |31700 |
+ROW |108321 |1345 |31701 |
+ROW |108322 |1345 |31702 |
+ROW |108323 |1345 |31703 |
+ROW |108324 |1345 |31704 |
+ROW |108325 |1345 |31705 |
+ROW |108326 |1340 |31361 |
+ROW |108327 |1340 |31362 |
+ROW |108328 |1340 |31363 |
+ROW |108329 |1339 |31364 |
+ROW |108330 |1339 |31365 |
+ROW |108331 |1340 |31367 |
+ROW |108332 |1340 |31368 |
+ROW |108333 |1340 |31369 |
+ROW |108334 |1340 |31727 |
+ROW |108335 |1340 |31728 |
+ROW |108336 |1339 |31370 |
+ROW |108337 |1339 |31398 |
+ROW |108338 |1339 |31407 |
+ROW |108339 |1339 |31425 |
+ROW |108340 |1339 |31426 |
+ROW |108341 |1339 |31427 |
+ROW |108342 |1339 |31428 |
+ROW |108343 |1339 |31729 |
+ROW |108344 |1339 |31730 |
+ROW |108345 |1339 |31731 |
+ROW |108346 |1339 |31732 |
+ROW |108347 |1339 |31733 |
+ROW |108348 |1339 |31734 |
+ROW |108349 |1339 |31735 |
+ROW |108350 |1339 |31736 |
+ROW |108351 |1339 |31737 |
+ROW |108352 |1339 |31738 |
+ROW |108353 |1339 |31739 |
+ROW |108354 |1339 |31740 |
+ROW |108355 |1339 |31741 |
+ROW |108356 |1339 |31742 |
+ROW |108357 |1339 |31743 |
+ROW |108358 |1339 |31744 |
+ROW |108359 |1339 |31745 |
+ROW |108360 |1339 |31746 |
+ROW |108361 |1339 |31747 |
+ROW |108362 |1339 |31748 |
+ROW |108363 |1339 |31749 |
+ROW |108364 |1339 |31750 |
+ROW |108365 |1339 |31751 |
+ROW |108366 |1339 |31752 |
+ROW |108367 |1339 |31753 |
+ROW |108368 |1339 |31754 |
+ROW |108369 |1339 |31755 |
+ROW |108370 |1339 |31756 |
+ROW |108371 |1339 |31757 |
+ROW |108372 |1339 |31758 |
+ROW |108373 |1339 |31759 |
+ROW |108374 |1339 |31760 |
+ROW |108375 |1339 |31761 |
+ROW |108376 |1339 |31762 |
+ROW |108377 |1339 |31763 |
+ROW |108378 |1339 |31764 |
+ROW |108379 |1339 |31765 |
+ROW |108380 |1339 |31766 |
+ROW |108381 |1339 |31767 |
+ROW |108382 |1339 |31768 |
+ROW |108383 |1339 |31769 |
+ROW |108384 |1339 |31770 |
+ROW |108385 |1339 |31771 |
+ROW |108386 |1339 |31772 |
+ROW |108387 |1339 |31773 |
+ROW |108388 |1339 |31774 |
+ROW |108389 |1339 |31775 |
+ROW |108390 |1339 |31776 |
+ROW |108391 |1339 |31777 |
+ROW |108392 |1339 |31778 |
+ROW |108393 |1339 |31779 |
+ROW |108394 |1339 |31780 |
+ROW |108395 |1339 |31781 |
+ROW |108396 |1339 |31782 |
+ROW |108397 |1339 |31783 |
+ROW |108398 |1339 |31784 |
+ROW |108399 |1339 |31785 |
+ROW |108400 |1115 |28671 |
+ROW |108401 |1115 |28672 |
+ROW |108402 |1114 |28673 |
+ROW |108403 |1114 |28674 |
+ROW |108404 |1115 |28675 |
+ROW |108405 |1114 |28676 |
+ROW |108406 |1114 |28677 |
+ROW |108407 |1114 |28678 |
+ROW |108408 |1114 |28679 |
+ROW |108409 |1114 |28680 |
+ROW |108410 |1114 |28681 |
+ROW |108411 |1115 |28682 |
+ROW |108412 |1115 |28683 |
+ROW |108413 |1114 |28684 |
+ROW |108414 |1114 |28685 |
+ROW |108415 |1115 |28686 |
+ROW |108416 |1115 |28687 |
+ROW |108417 |1114 |28688 |
+ROW |108418 |1114 |28689 |
+ROW |108419 |1114 |28690 |
+ROW |108420 |1114 |28691 |
+ROW |108421 |1114 |28692 |
+ROW |108422 |1114 |28693 |
+ROW |108423 |1114 |28694 |
+ROW |108424 |1114 |28695 |
+ROW |108425 |1114 |28696 |
+ROW |108426 |1114 |28697 |
+ROW |108427 |1114 |28698 |
+ROW |108428 |1114 |28699 |
+ROW |108429 |1114 |28700 |
+ROW |108430 |1114 |28701 |
+ROW |108431 |1114 |28702 |
+ROW |108432 |1114 |28703 |
+ROW |108433 |1114 |28704 |
+ROW |108434 |1114 |28705 |
+ROW |108435 |1114 |28706 |
+ROW |108436 |1114 |28707 |
+ROW |108437 |1114 |28708 |
+ROW |108438 |1114 |28709 |
+ROW |108439 |1114 |28710 |
+ROW |108440 |1115 |28713 |
+ROW |108441 |1115 |28714 |
+ROW |108442 |1338 |31180 |
+ROW |108443 |1337 |31181 |
+ROW |108444 |1338 |31182 |
+ROW |108445 |1338 |31183 |
+ROW |108446 |1338 |31185 |
+ROW |108447 |1338 |31186 |
+ROW |108448 |1337 |31188 |
+ROW |108449 |1337 |31189 |
+ROW |108450 |1337 |31190 |
+ROW |108451 |1337 |31191 |
+ROW |108452 |1337 |31192 |
+ROW |108453 |1337 |31193 |
+ROW |108454 |1337 |31194 |
+ROW |108455 |1338 |31195 |
+ROW |108456 |1338 |31196 |
+ROW |108457 |1337 |32592 |
+ROW |108458 |1337 |32593 |
+ROW |108459 |1337 |32594 |
+ROW |108460 |1338 |32595 |
+ROW |108461 |1337 |31197 |
+ROW |108462 |1337 |31199 |
+ROW |108463 |1337 |31200 |
+ROW |108464 |1337 |31201 |
+ROW |108465 |1337 |31202 |
+ROW |108466 |1337 |31203 |
+ROW |108467 |1337 |31204 |
+ROW |108468 |1337 |31205 |
+ROW |108469 |1337 |31206 |
+ROW |108470 |1337 |31207 |
+ROW |108471 |1337 |31208 |
+ROW |108472 |1337 |31209 |
+ROW |108473 |1337 |31210 |
+ROW |108474 |1337 |31211 |
+ROW |108475 |1337 |31212 |
+ROW |108476 |1337 |31213 |
+ROW |108477 |1337 |31215 |
+ROW |108478 |1337 |31216 |
+ROW |108479 |1337 |31217 |
+ROW |108480 |1337 |31218 |
+ROW |108481 |1337 |31219 |
+ROW |108482 |1337 |31220 |
+ROW |108483 |1337 |31221 |
+ROW |108484 |1337 |31222 |
+ROW |108485 |1337 |31223 |
+ROW |108486 |1337 |31224 |
+ROW |108487 |1337 |31225 |
+ROW |108488 |1337 |31226 |
+ROW |108489 |1337 |31227 |
+ROW |108490 |1337 |31228 |
+ROW |108491 |1337 |31229 |
+ROW |108492 |1337 |31230 |
+ROW |108493 |1337 |31231 |
+ROW |108494 |1337 |31232 |
+ROW |108495 |1337 |31233 |
+ROW |108496 |1337 |31234 |
+ROW |108497 |1337 |31235 |
+ROW |108498 |1337 |31236 |
+ROW |108499 |1337 |31237 |
+ROW |108500 |1337 |31238 |
+ROW |108501 |1337 |31239 |
+ROW |108502 |1337 |32596 |
+ROW |108503 |1302 |30273 |
+ROW |108504 |1302 |30274 |
+ROW |108505 |1303 |30275 |
+ROW |108506 |1303 |30276 |
+ROW |108507 |1302 |30277 |
+ROW |108508 |1302 |30278 |
+ROW |108509 |1302 |30279 |
+ROW |108510 |1302 |30280 |
+ROW |108511 |1302 |30281 |
+ROW |108512 |1302 |30282 |
+ROW |108513 |1302 |30283 |
+ROW |108514 |1302 |30284 |
+ROW |108515 |1302 |30285 |
+ROW |108516 |1302 |30286 |
+ROW |108517 |1302 |30287 |
+ROW |108518 |1302 |30288 |
+ROW |108519 |1302 |30289 |
+ROW |108520 |1302 |30290 |
+ROW |108521 |1302 |30291 |
+ROW |108522 |1302 |30292 |
+ROW |108523 |1302 |30293 |
+ROW |108524 |1302 |30294 |
+ROW |108525 |1302 |30295 |
+ROW |108526 |1302 |30296 |
+ROW |108527 |1302 |30297 |
+ROW |108528 |1302 |30298 |
+ROW |108529 |1302 |30299 |
+ROW |108530 |1302 |30300 |
+ROW |108531 |1302 |30301 |
+ROW |108532 |1302 |30302 |
+ROW |108533 |1302 |30303 |
+ROW |108534 |1302 |30304 |
+ROW |108535 |1302 |30305 |
+ROW |108536 |1302 |30306 |
+ROW |108537 |1302 |30307 |
+ROW |108538 |1302 |30308 |
+ROW |108539 |1302 |30309 |
+ROW |108540 |1302 |30310 |
+ROW |108541 |1302 |30311 |
+ROW |108542 |1302 |30312 |
+ROW |108543 |1302 |30313 |
+ROW |108544 |1302 |30314 |
+ROW |108545 |1302 |30315 |
+ROW |108546 |1302 |30316 |
+ROW |108547 |1302 |30317 |
+ROW |108548 |1302 |30318 |
+ROW |108549 |1302 |30319 |
+ROW |108550 |1302 |30320 |
+ROW |108551 |1302 |30321 |
+ROW |108552 |1302 |30322 |
+ROW |108553 |1302 |30323 |
+ROW |108554 |1302 |30324 |
+ROW |108555 |1302 |30325 |
+ROW |108556 |1302 |30326 |
+ROW |108557 |1302 |30327 |
+ROW |108558 |1302 |30328 |
+ROW |108559 |1302 |30329 |
+ROW |108560 |1302 |30330 |
+ROW |108561 |1302 |30331 |
+ROW |108562 |1302 |30332 |
+ROW |108563 |1302 |30333 |
+ROW |108564 |1302 |30334 |
+ROW |108565 |1302 |30335 |
+ROW |108566 |1302 |30336 |
+ROW |108567 |1302 |30344 |
+ROW |108568 |1302 |30345 |
+ROW |108569 |1302 |30346 |
+ROW |108570 |1302 |30347 |
+ROW |108571 |1302 |30351 |
+ROW |108572 |1302 |30352 |
+ROW |108573 |1302 |30353 |
+ROW |108574 |1302 |30354 |
+ROW |108575 |1302 |30355 |
+ROW |108576 |1302 |30356 |
+ROW |108577 |1302 |30357 |
+ROW |108578 |1302 |30358 |
+ROW |108579 |1302 |30359 |
+ROW |108580 |1302 |30360 |
+ROW |108581 |1302 |30361 |
+ROW |108582 |1302 |30362 |
+ROW |108583 |1302 |30363 |
+ROW |108584 |1302 |30364 |
+ROW |108585 |1302 |30365 |
+ROW |108586 |1302 |30366 |
+ROW |108587 |1302 |30367 |
+ROW |108588 |1302 |30368 |
+ROW |108589 |1302 |30369 |
+ROW |108590 |1302 |30370 |
+ROW |108591 |1302 |30371 |
+ROW |108592 |1302 |30372 |
+ROW |108593 |1302 |30373 |
+ROW |108594 |1302 |30374 |
+ROW |108595 |1302 |30375 |
+ROW |108596 |1302 |30376 |
+ROW |108597 |1302 |30377 |
+ROW |108598 |1302 |30378 |
+ROW |108599 |1302 |30379 |
+ROW |108600 |1302 |30380 |
+ROW |108601 |1302 |30381 |
+ROW |108602 |1302 |30382 |
+ROW |108603 |1302 |30383 |
+ROW |108604 |1302 |30384 |
+ROW |108605 |1302 |30385 |
+ROW |108606 |1302 |30386 |
+ROW |108607 |1302 |30387 |
+ROW |108608 |1302 |30388 |
+ROW |108609 |1302 |30389 |
+ROW |108610 |1302 |30390 |
+ROW |108611 |1302 |30391 |
+ROW |108612 |1302 |30392 |
+ROW |108613 |1302 |30393 |
+ROW |108614 |1302 |30394 |
+ROW |108615 |1302 |30395 |
+ROW |108616 |1302 |30397 |
+ROW |108617 |1302 |30398 |
+ROW |108618 |1302 |30399 |
+ROW |108619 |1302 |30400 |
+ROW |108620 |1302 |30401 |
+ROW |108621 |1302 |30402 |
+ROW |108622 |1302 |30403 |
+ROW |108623 |1302 |30404 |
+ROW |108624 |780 |27065 |
+ROW |108625 |780 |27066 |
+ROW |108626 |780 |27067 |
+ROW |108627 |799 |27149 |
+ROW |108628 |799 |27150 |
+ROW |108629 |799 |27151 |
+ROW |108630 |805 |27192 |
+ROW |108631 |805 |27193 |
+ROW |108632 |805 |27194 |
+ROW |108633 |813 |27225 |
+ROW |108634 |813 |27226 |
+ROW |108635 |813 |27227 |
+ROW |108636 |822 |27261 |
+ROW |108637 |822 |27262 |
+ROW |108638 |822 |27263 |
+ROW |108639 |825 |27282 |
+ROW |108640 |825 |27283 |
+ROW |108641 |825 |27284 |
+ROW |108642 |842 |27333 |
+ROW |108643 |842 |27334 |
+ROW |108644 |842 |27335 |
+ROW |108645 |847 |27365 |
+ROW |108646 |847 |27366 |
+ROW |108647 |847 |27367 |
+ROW |108648 |876 |27462 |
+ROW |108649 |876 |27463 |
+ROW |108650 |876 |27464 |
+ROW |108651 |885 |27496 |
+ROW |108652 |885 |27497 |
+ROW |108653 |885 |27498 |
+ROW |108654 |894 |27532 |
+ROW |108655 |894 |27533 |
+ROW |108656 |894 |27534 |
+ROW |108657 |903 |27568 |
+ROW |108658 |903 |27569 |
+ROW |108659 |903 |27570 |
+ROW |108660 |915 |27631 |
+ROW |108661 |915 |27632 |
+ROW |108662 |915 |27633 |
+ROW |108663 |918 |27654 |
+ROW |108664 |918 |27655 |
+ROW |108665 |918 |27656 |
+ROW |108666 |936 |27734 |
+ROW |108667 |936 |27735 |
+ROW |108668 |936 |27736 |
+ROW |108669 |944 |27766 |
+ROW |108670 |944 |27767 |
+ROW |108671 |944 |27768 |
+ROW |108672 |951 |27800 |
+ROW |108673 |951 |27801 |
+ROW |108674 |951 |27802 |
+ROW |108675 |971 |27882 |
+ROW |108676 |971 |27883 |
+ROW |108677 |971 |27884 |
+ROW |108678 |979 |27919 |
+ROW |108679 |979 |27920 |
+ROW |108680 |979 |27921 |
+ROW |108681 |988 |27956 |
+ROW |108682 |988 |27957 |
+ROW |108683 |988 |27958 |
+ROW |108684 |994 |27986 |
+ROW |108685 |994 |27987 |
+ROW |108686 |994 |27988 |
+ROW |108687 |1000 |28015 |
+ROW |108688 |1000 |28016 |
+ROW |108689 |1000 |28017 |
+ROW |108690 |1030 |28130 |
+ROW |108691 |1030 |28131 |
+ROW |108692 |1030 |28132 |
+ROW |108693 |1055 |28233 |
+ROW |108694 |1055 |28234 |
+ROW |108695 |1055 |28235 |
+ROW |108696 |1060 |28282 |
+ROW |108697 |1060 |28283 |
+ROW |108698 |1060 |28284 |
+ROW |108699 |1070 |28330 |
+ROW |108700 |1070 |28331 |
+ROW |108701 |1070 |28332 |
+ROW |108702 |1079 |28377 |
+ROW |108703 |1079 |28378 |
+ROW |108704 |1079 |28379 |
+ROW |108705 |1095 |28454 |
+ROW |108706 |1095 |28455 |
+ROW |108707 |1095 |28456 |
+ROW |108708 |1102 |28482 |
+ROW |108709 |1102 |28483 |
+ROW |108710 |1102 |28484 |
+ROW |108711 |1127 |28957 |
+ROW |108712 |1127 |28958 |
+ROW |108713 |1127 |28959 |
+ROW |108714 |1136 |29050 |
+ROW |108715 |1136 |29051 |
+ROW |108716 |1136 |29052 |
+ROW |108717 |1271 |30046 |
+ROW |108718 |1271 |30047 |
+ROW |108719 |1271 |30048 |
+ROW |108720 |1414 |32601 |
+ROW |108721 |1414 |32602 |
+ROW |108722 |1414 |32603 |
+ROW |108723 |1422 |32765 |
+ROW |108724 |1422 |32766 |
+ROW |108725 |1422 |32767 |
+ROW |108726 |800 |27152 |
+ROW |108727 |799 |27154 |
+ROW |108728 |800 |27157 |
+ROW |108729 |799 |29844 |
+ROW |108730 |800 |29845 |
+ROW |108731 |800 |29846 |
+ROW |108732 |800 |29847 |
+ROW |108733 |800 |29848 |
+ROW |108734 |804 |27195 |
+ROW |108735 |804 |27199 |
+ROW |108736 |805 |27202 |
+ROW |108737 |812 |27228 |
+ROW |108738 |812 |27232 |
+ROW |108739 |813 |27235 |
+ROW |108740 |821 |27264 |
+ROW |108741 |821 |27268 |
+ROW |108742 |822 |27271 |
+ROW |108743 |824 |27285 |
+ROW |108744 |824 |27289 |
+ROW |108745 |825 |27292 |
+ROW |108746 |841 |27336 |
+ROW |108747 |841 |27340 |
+ROW |108748 |842 |27343 |
+ROW |108749 |846 |27368 |
+ROW |108750 |846 |27372 |
+ROW |108751 |847 |27375 |
+ROW |108752 |875 |27465 |
+ROW |108753 |875 |27469 |
+ROW |108754 |876 |27472 |
+ROW |108755 |884 |27499 |
+ROW |108756 |884 |27503 |
+ROW |108757 |885 |27506 |
+ROW |108758 |893 |27535 |
+ROW |108759 |893 |27539 |
+ROW |108760 |894 |27542 |
+ROW |108761 |902 |27571 |
+ROW |108762 |902 |27575 |
+ROW |108763 |903 |27578 |
+ROW |108764 |914 |27634 |
+ROW |108765 |914 |27638 |
+ROW |108766 |915 |27641 |
+ROW |108767 |917 |27657 |
+ROW |108768 |917 |27661 |
+ROW |108769 |918 |27664 |
+ROW |108770 |935 |27737 |
+ROW |108771 |935 |27741 |
+ROW |108772 |936 |27744 |
+ROW |108773 |943 |27769 |
+ROW |108774 |943 |27773 |
+ROW |108775 |944 |27776 |
+ROW |108776 |950 |27803 |
+ROW |108777 |950 |27807 |
+ROW |108778 |951 |27810 |
+ROW |108779 |970 |27885 |
+ROW |108780 |970 |27889 |
+ROW |108781 |971 |27892 |
+ROW |108782 |978 |27922 |
+ROW |108783 |978 |27926 |
+ROW |108784 |979 |27929 |
+ROW |108785 |987 |27959 |
+ROW |108786 |987 |27963 |
+ROW |108787 |988 |27966 |
+ROW |108788 |993 |27989 |
+ROW |108789 |993 |27993 |
+ROW |108790 |994 |27996 |
+ROW |108791 |999 |28018 |
+ROW |108792 |999 |28022 |
+ROW |108793 |1000 |28025 |
+ROW |108794 |1029 |28133 |
+ROW |108795 |1029 |28137 |
+ROW |108796 |1030 |28140 |
+ROW |108797 |1054 |28236 |
+ROW |108798 |1054 |28240 |
+ROW |108799 |1055 |28243 |
+ROW |108800 |1059 |28285 |
+ROW |108801 |1059 |28289 |
+ROW |108802 |1060 |28292 |
+ROW |108803 |1069 |28333 |
+ROW |108804 |1069 |28337 |
+ROW |108805 |1070 |28340 |
+ROW |108806 |1078 |28380 |
+ROW |108807 |1078 |28384 |
+ROW |108808 |1079 |28387 |
+ROW |108809 |1094 |28457 |
+ROW |108810 |1094 |28461 |
+ROW |108811 |1095 |28464 |
+ROW |108812 |1101 |28485 |
+ROW |108813 |1101 |28489 |
+ROW |108814 |1102 |28492 |
+ROW |108815 |1126 |28960 |
+ROW |108816 |1126 |28964 |
+ROW |108817 |1127 |28967 |
+ROW |108818 |1135 |29053 |
+ROW |108819 |1135 |29057 |
+ROW |108820 |1136 |29060 |
+ROW |108821 |1000 |29834 |
+ROW |108822 |999 |29835 |
+ROW |108823 |999 |29836 |
+ROW |108824 |999 |29837 |
+ROW |108825 |999 |29838 |
+ROW |108826 |805 |29849 |
+ROW |108827 |804 |29850 |
+ROW |108828 |804 |29851 |
+ROW |108829 |804 |29852 |
+ROW |108830 |804 |29853 |
+ROW |108831 |813 |29854 |
+ROW |108832 |812 |29855 |
+ROW |108833 |812 |29856 |
+ROW |108834 |812 |29857 |
+ROW |108835 |812 |29858 |
+ROW |108836 |822 |29859 |
+ROW |108837 |821 |29860 |
+ROW |108838 |821 |29861 |
+ROW |108839 |821 |29862 |
+ROW |108840 |821 |29863 |
+ROW |108841 |825 |29864 |
+ROW |108842 |824 |29865 |
+ROW |108843 |824 |29866 |
+ROW |108844 |824 |29867 |
+ROW |108845 |824 |29868 |
+ROW |108846 |842 |29869 |
+ROW |108847 |841 |29870 |
+ROW |108848 |841 |29871 |
+ROW |108849 |841 |29872 |
+ROW |108850 |841 |29873 |
+ROW |108851 |847 |29874 |
+ROW |108852 |846 |29875 |
+ROW |108853 |846 |29876 |
+ROW |108854 |846 |29877 |
+ROW |108855 |846 |29878 |
+ROW |108856 |876 |29879 |
+ROW |108857 |875 |29880 |
+ROW |108858 |875 |29881 |
+ROW |108859 |875 |29882 |
+ROW |108860 |875 |29883 |
+ROW |108861 |885 |29884 |
+ROW |108862 |884 |29885 |
+ROW |108863 |884 |29886 |
+ROW |108864 |884 |29887 |
+ROW |108865 |884 |29888 |
+ROW |108866 |894 |29889 |
+ROW |108867 |893 |29890 |
+ROW |108868 |893 |29891 |
+ROW |108869 |893 |29892 |
+ROW |108870 |893 |29893 |
+ROW |108871 |903 |29894 |
+ROW |108872 |902 |29895 |
+ROW |108873 |902 |29896 |
+ROW |108874 |902 |29897 |
+ROW |108875 |902 |29898 |
+ROW |108876 |915 |29899 |
+ROW |108877 |914 |29900 |
+ROW |108878 |914 |29901 |
+ROW |108879 |914 |29902 |
+ROW |108880 |914 |29903 |
+ROW |108881 |918 |29904 |
+ROW |108882 |917 |29905 |
+ROW |108883 |917 |29906 |
+ROW |108884 |917 |29907 |
+ROW |108885 |917 |29908 |
+ROW |108886 |936 |29909 |
+ROW |108887 |935 |29910 |
+ROW |108888 |935 |29911 |
+ROW |108889 |935 |29912 |
+ROW |108890 |935 |29913 |
+ROW |108891 |944 |29914 |
+ROW |108892 |943 |29915 |
+ROW |108893 |943 |29916 |
+ROW |108894 |943 |29917 |
+ROW |108895 |943 |29918 |
+ROW |108896 |951 |29919 |
+ROW |108897 |950 |29920 |
+ROW |108898 |950 |29921 |
+ROW |108899 |950 |29922 |
+ROW |108900 |950 |29923 |
+ROW |108901 |971 |29924 |
+ROW |108902 |970 |29925 |
+ROW |108903 |970 |29926 |
+ROW |108904 |970 |29927 |
+ROW |108905 |970 |29928 |
+ROW |108906 |979 |29929 |
+ROW |108907 |978 |29930 |
+ROW |108908 |978 |29931 |
+ROW |108909 |978 |29932 |
+ROW |108910 |978 |29933 |
+ROW |108911 |988 |29934 |
+ROW |108912 |987 |29935 |
+ROW |108913 |987 |29936 |
+ROW |108914 |987 |29937 |
+ROW |108915 |987 |29938 |
+ROW |108916 |994 |29939 |
+ROW |108917 |993 |29940 |
+ROW |108918 |993 |29941 |
+ROW |108919 |993 |29942 |
+ROW |108920 |993 |29943 |
+ROW |108921 |1030 |29944 |
+ROW |108922 |1029 |29945 |
+ROW |108923 |1029 |29946 |
+ROW |108924 |1029 |29947 |
+ROW |108925 |1029 |29948 |
+ROW |108926 |1055 |29954 |
+ROW |108927 |1054 |29955 |
+ROW |108928 |1054 |29956 |
+ROW |108929 |1054 |29957 |
+ROW |108930 |1054 |29958 |
+ROW |108931 |1060 |29959 |
+ROW |108932 |1059 |29960 |
+ROW |108933 |1059 |29961 |
+ROW |108934 |1059 |29962 |
+ROW |108935 |1059 |29963 |
+ROW |108936 |1070 |29964 |
+ROW |108937 |1069 |29965 |
+ROW |108938 |1069 |29966 |
+ROW |108939 |1069 |29967 |
+ROW |108940 |1069 |29968 |
+ROW |108941 |1079 |29969 |
+ROW |108942 |1078 |29970 |
+ROW |108943 |1078 |29971 |
+ROW |108944 |1078 |29972 |
+ROW |108945 |1078 |29973 |
+ROW |108946 |1095 |29974 |
+ROW |108947 |1094 |29975 |
+ROW |108948 |1094 |29976 |
+ROW |108949 |1094 |29977 |
+ROW |108950 |1094 |29978 |
+ROW |108951 |1102 |29979 |
+ROW |108952 |1101 |29980 |
+ROW |108953 |1101 |29981 |
+ROW |108954 |1101 |29982 |
+ROW |108955 |1101 |29983 |
+ROW |108956 |1127 |29984 |
+ROW |108957 |1126 |29985 |
+ROW |108958 |1126 |29986 |
+ROW |108959 |1126 |29987 |
+ROW |108960 |1126 |29988 |
+ROW |108961 |1136 |29989 |
+ROW |108962 |1135 |29990 |
+ROW |108963 |1135 |29991 |
+ROW |108964 |1135 |29992 |
+ROW |108965 |1135 |29993 |
+ROW |108966 |1270 |30049 |
+ROW |108967 |1270 |30050 |
+ROW |108968 |1270 |30051 |
+ROW |108969 |1270 |30052 |
+ROW |108970 |1270 |30053 |
+ROW |108971 |1270 |30054 |
+ROW |108972 |1271 |30055 |
+ROW |108973 |1271 |30056 |
+ROW |108974 |1413 |32604 |
+ROW |108975 |1413 |32605 |
+ROW |108976 |1413 |32606 |
+ROW |108977 |1413 |32607 |
+ROW |108978 |1413 |32608 |
+ROW |108979 |1413 |32609 |
+ROW |108980 |1414 |32610 |
+ROW |108981 |1414 |32611 |
+ROW |108982 |1421 |32768 |
+ROW |108983 |1421 |32769 |
+ROW |108984 |1421 |32770 |
+ROW |108985 |1421 |32771 |
+ROW |108986 |1421 |32772 |
+ROW |108987 |1421 |32773 |
+ROW |108988 |1422 |32774 |
+ROW |108989 |1422 |32775 |
+ROW |108990 |1283 |30142 |
+ROW |108991 |1286 |30143 |
+ROW |108992 |1292 |30145 |
+ROW |108993 |1295 |30146 |
+ROW |108994 |1284 |30157 |
+ROW |108995 |1284 |30158 |
+ROW |108996 |1284 |30159 |
+ROW |108997 |1287 |30163 |
+ROW |108998 |1287 |30164 |
+ROW |108999 |1287 |30165 |
+ROW |109000 |1293 |30175 |
+ROW |109001 |1293 |30176 |
+ROW |109002 |1293 |30177 |
+ROW |109003 |1296 |30181 |
+ROW |109004 |1296 |30182 |
+ROW |109005 |1296 |30183 |
+ROW |109006 |1419 |32741 |
+ROW |109007 |1420 |32753 |
+ROW |109008 |1221 |22231 |
+ROW |109009 |1221 |22232 |
+ROW |109010 |1221 |23318 |
+ROW |109011 |1222 |29544 |
+ROW |109012 |1223 |29545 |
+ROW |109013 |1223 |29546 |
+ROW |109014 |1224 |29547 |
+ROW |109015 |1225 |10020 |
+ROW |109016 |1225 |10059 |
+ROW |109017 |1226 |22833 |
+ROW |109018 |1226 |22834 |
+ROW |109019 |1228 |22873 |
+ROW |109020 |1228 |22874 |
+ROW |109021 |1230 |22913 |
+ROW |109022 |1230 |22914 |
+ROW |109023 |1232 |22953 |
+ROW |109024 |1232 |22954 |
+ROW |109025 |1234 |22993 |
+ROW |109026 |1234 |22994 |
+ROW |109027 |1236 |23033 |
+ROW |109028 |1236 |23034 |
+ROW |109029 |1238 |23160 |
+ROW |109030 |1238 |23161 |
+ROW |109031 |1225 |23319 |
+ROW |109032 |1226 |23320 |
+ROW |109033 |1228 |23321 |
+ROW |109034 |1230 |23322 |
+ROW |109035 |1232 |23323 |
+ROW |109036 |1234 |23324 |
+ROW |109037 |1236 |23325 |
+ROW |109038 |1238 |23326 |
+ROW |109039 |1161 |29548 |
+ROW |109040 |1227 |29549 |
+ROW |109041 |1229 |29550 |
+ROW |109042 |1231 |29551 |
+ROW |109043 |1233 |29552 |
+ROW |109044 |1235 |29553 |
+ROW |109045 |1237 |29554 |
+ROW |109046 |1219 |29555 |
+ROW |109047 |1241 |29558 |
+ROW |109048 |1242 |29559 |
+ROW |109049 |1241 |29560 |
+ROW |109050 |1269 |29995 |
+ROW |109051 |1192 |29996 |
+ROW |109052 |1269 |29997 |
+ROW |109053 |1240 |23287 |
+ROW |109054 |1240 |23288 |
+ROW |109055 |1240 |23327 |
+ROW |109056 |1171 |29557 |
+ROW |109057 |810 |27203 |
+ROW |109058 |807 |27207 |
+ROW |109059 |806 |27208 |
+ROW |109060 |810 |30086 |
+ROW |109061 |807 |30087 |
+ROW |109062 |807 |30088 |
+ROW |109063 |807 |30089 |
+ROW |109064 |808 |27212 |
+ROW |109065 |809 |27213 |
+ROW |109066 |810 |27214 |
+ROW |109067 |1279 |30091 |
+ROW |109068 |1279 |30092 |
+ROW |109069 |1364 |28305 |
+ROW |109070 |1068 |28323 |
+ROW |109071 |1068 |28324 |
+ROW |109072 |1062 |28325 |
+ROW |109073 |1062 |28326 |
+ROW |109074 |1064 |28327 |
+ROW |109075 |1064 |28328 |
+ROW |109076 |1066 |28329 |
+ROW |109077 |1363 |32307 |
+ROW |109078 |819 |27236 |
+ROW |109079 |819 |27237 |
+ROW |109080 |813 |27238 |
+ROW |109081 |814 |27240 |
+ROW |109082 |815 |30093 |
+ROW |109083 |816 |27246 |
+ROW |109084 |816 |27247 |
+ROW |109085 |817 |27248 |
+ROW |109086 |818 |27249 |
+ROW |109087 |818 |27250 |
+ROW |109088 |826 |27294 |
+ROW |109089 |831 |27295 |
+ROW |109090 |831 |27296 |
+ROW |109091 |835 |27297 |
+ROW |109092 |827 |30094 |
+ROW |109093 |836 |27299 |
+ROW |109094 |838 |27301 |
+ROW |109095 |837 |30095 |
+ROW |109096 |839 |30096 |
+ROW |109097 |829 |27312 |
+ROW |109098 |830 |27313 |
+ROW |109099 |828 |27314 |
+ROW |109100 |828 |27315 |
+ROW |109101 |833 |27316 |
+ROW |109102 |834 |27317 |
+ROW |109103 |832 |27318 |
+ROW |109104 |835 |27319 |
+ROW |109105 |835 |27320 |
+ROW |109106 |1444 |33197 |
+ROW |109107 |1444 |33198 |
+ROW |109108 |1444 |33199 |
+ROW |109109 |1439 |33200 |
+ROW |109110 |1439 |33201 |
+ROW |109111 |1439 |33202 |
+ROW |109112 |1440 |33203 |
+ROW |109113 |1440 |33204 |
+ROW |109114 |1439 |33205 |
+ROW |109115 |1439 |33206 |
+ROW |109116 |1439 |33207 |
+ROW |109117 |1440 |33208 |
+ROW |109118 |1444 |33209 |
+ROW |109119 |1444 |33210 |
+ROW |109120 |1437 |33219 |
+ROW |109121 |1440 |33220 |
+ROW |109122 |1438 |33221 |
+ROW |109123 |1441 |33222 |
+ROW |109124 |1441 |33223 |
+ROW |109125 |1441 |33224 |
+ROW |109126 |1443 |33235 |
+ROW |109127 |1445 |33236 |
+ROW |109128 |1445 |33237 |
+ROW |109129 |1453 |33238 |
+ROW |109130 |1453 |33239 |
+ROW |109131 |1453 |33240 |
+ROW |109132 |1448 |33241 |
+ROW |109133 |1448 |33242 |
+ROW |109134 |1448 |33243 |
+ROW |109135 |1449 |33244 |
+ROW |109136 |1449 |33245 |
+ROW |109137 |1448 |33246 |
+ROW |109138 |1448 |33247 |
+ROW |109139 |1448 |33248 |
+ROW |109140 |1449 |33249 |
+ROW |109141 |1453 |33250 |
+ROW |109142 |1453 |33251 |
+ROW |109143 |1446 |33260 |
+ROW |109144 |1449 |33261 |
+ROW |109145 |1447 |33262 |
+ROW |109146 |1450 |33263 |
+ROW |109147 |1450 |33264 |
+ROW |109148 |1450 |33265 |
+ROW |109149 |1452 |33276 |
+ROW |109150 |1454 |33277 |
+ROW |109151 |1454 |33278 |
+ROW |109152 |1462 |33279 |
+ROW |109153 |1462 |33280 |
+ROW |109154 |1462 |33281 |
+ROW |109155 |1457 |33282 |
+ROW |109156 |1457 |33283 |
+ROW |109157 |1457 |33284 |
+ROW |109158 |1458 |33285 |
+ROW |109159 |1458 |33286 |
+ROW |109160 |1457 |33287 |
+ROW |109161 |1457 |33288 |
+ROW |109162 |1457 |33289 |
+ROW |109163 |1458 |33290 |
+ROW |109164 |1462 |33291 |
+ROW |109165 |1462 |33292 |
+ROW |109166 |1455 |33301 |
+ROW |109167 |1458 |33302 |
+ROW |109168 |1456 |33303 |
+ROW |109169 |1459 |33304 |
+ROW |109170 |1459 |33305 |
+ROW |109171 |1459 |33306 |
+ROW |109172 |1461 |33317 |
+ROW |109173 |1463 |33318 |
+ROW |109174 |1463 |33319 |
+ROW |109175 |1471 |33320 |
+ROW |109176 |1471 |33321 |
+ROW |109177 |1471 |33322 |
+ROW |109178 |1466 |33323 |
+ROW |109179 |1466 |33324 |
+ROW |109180 |1466 |33325 |
+ROW |109181 |1467 |33326 |
+ROW |109182 |1467 |33327 |
+ROW |109183 |1466 |33328 |
+ROW |109184 |1466 |33329 |
+ROW |109185 |1466 |33330 |
+ROW |109186 |1467 |33331 |
+ROW |109187 |1471 |33332 |
+ROW |109188 |1471 |33333 |
+ROW |109189 |1464 |33342 |
+ROW |109190 |1467 |33343 |
+ROW |109191 |1465 |33344 |
+ROW |109192 |1468 |33345 |
+ROW |109193 |1468 |33346 |
+ROW |109194 |1468 |33347 |
+ROW |109195 |1470 |33358 |
+ROW |109196 |1472 |33359 |
+ROW |109197 |1472 |33360 |
+ROW |109198 |1480 |33361 |
+ROW |109199 |1480 |33362 |
+ROW |109200 |1480 |33363 |
+ROW |109201 |1475 |33364 |
+ROW |109202 |1475 |33365 |
+ROW |109203 |1475 |33366 |
+ROW |109204 |1476 |33367 |
+ROW |109205 |1476 |33368 |
+ROW |109206 |1475 |33369 |
+ROW |109207 |1475 |33370 |
+ROW |109208 |1475 |33371 |
+ROW |109209 |1476 |33372 |
+ROW |109210 |1480 |33373 |
+ROW |109211 |1480 |33374 |
+ROW |109212 |1473 |33383 |
+ROW |109213 |1476 |33384 |
+ROW |109214 |1474 |33385 |
+ROW |109215 |1477 |33386 |
+ROW |109216 |1477 |33387 |
+ROW |109217 |1477 |33388 |
+ROW |109218 |1479 |33399 |
+ROW |109219 |1481 |33400 |
+ROW |109220 |1481 |33401 |
+ROW |109221 |851 |27376 |
+ROW |109222 |852 |27378 |
+ROW |109223 |852 |27379 |
+ROW |109224 |852 |30097 |
+ROW |109225 |869 |27380 |
+ROW |109226 |870 |27382 |
+ROW |109227 |870 |27383 |
+ROW |109228 |858 |27385 |
+ROW |109229 |858 |27386 |
+ROW |109230 |1048 |28209 |
+ROW |109231 |1048 |28210 |
+ROW |109232 |858 |30098 |
+ROW |109233 |870 |30099 |
+ROW |109234 |1048 |30100 |
+ROW |109235 |848 |27415 |
+ROW |109236 |848 |27416 |
+ROW |109237 |849 |27417 |
+ROW |109238 |852 |27419 |
+ROW |109239 |853 |27420 |
+ROW |109240 |853 |27421 |
+ROW |109241 |854 |27422 |
+ROW |109242 |855 |27423 |
+ROW |109243 |1056 |28246 |
+ROW |109244 |848 |30101 |
+ROW |109245 |856 |27425 |
+ROW |109246 |856 |27426 |
+ROW |109247 |857 |27427 |
+ROW |109248 |858 |27428 |
+ROW |109249 |859 |27429 |
+ROW |109250 |859 |27430 |
+ROW |109251 |860 |27431 |
+ROW |109252 |861 |27432 |
+ROW |109253 |868 |27443 |
+ROW |109254 |868 |27444 |
+ROW |109255 |870 |27445 |
+ROW |109256 |871 |27446 |
+ROW |109257 |871 |27447 |
+ROW |109258 |872 |27448 |
+ROW |109259 |873 |27449 |
+ROW |109260 |1048 |28208 |
+ROW |109261 |1049 |28215 |
+ROW |109262 |1050 |28216 |
+ROW |109263 |1051 |28217 |
+ROW |109264 |1051 |28218 |
+ROW |109265 |1052 |28220 |
+ROW |109266 |1052 |28222 |
+ROW |109267 |1057 |28247 |
+ROW |109268 |856 |30102 |
+ROW |109269 |868 |30103 |
+ROW |109270 |1052 |30104 |
+ROW |109271 |877 |27478 |
+ROW |109272 |880 |27479 |
+ROW |109273 |881 |27480 |
+ROW |109274 |882 |27481 |
+ROW |109275 |882 |27482 |
+ROW |109276 |882 |27483 |
+ROW |109277 |882 |27484 |
+ROW |109278 |879 |27485 |
+ROW |109279 |878 |30105 |
+ROW |109280 |891 |27508 |
+ROW |109281 |891 |27509 |
+ROW |109282 |891 |27510 |
+ROW |109283 |886 |27511 |
+ROW |109284 |891 |30106 |
+ROW |109285 |888 |27517 |
+ROW |109286 |890 |27518 |
+ROW |109287 |889 |27519 |
+ROW |109288 |887 |30107 |
+ROW |109289 |900 |27543 |
+ROW |109290 |900 |27544 |
+ROW |109291 |900 |27545 |
+ROW |109292 |900 |27546 |
+ROW |109293 |895 |27547 |
+ROW |109294 |897 |27553 |
+ROW |109295 |899 |27554 |
+ROW |109296 |898 |27555 |
+ROW |109297 |896 |30108 |
+ROW |109298 |909 |27579 |
+ROW |109299 |909 |27580 |
+ROW |109300 |909 |27582 |
+ROW |109301 |909 |27583 |
+ROW |109302 |906 |27584 |
+ROW |109303 |906 |27585 |
+ROW |109304 |904 |27586 |
+ROW |109305 |909 |30109 |
+ROW |109306 |905 |27591 |
+ROW |109307 |907 |27593 |
+ROW |109308 |908 |27594 |
+ROW |109309 |908 |27595 |
+ROW |109310 |905 |30110 |
+ROW |109311 |905 |30111 |
+ROW |109312 |919 |27671 |
+ROW |109313 |921 |27672 |
+ROW |109314 |922 |27673 |
+ROW |109315 |923 |27674 |
+ROW |109316 |924 |27675 |
+ROW |109317 |924 |27676 |
+ROW |109318 |924 |27677 |
+ROW |109319 |924 |27678 |
+ROW |109320 |924 |27679 |
+ROW |109321 |920 |30112 |
+ROW |109322 |1036 |28141 |
+ROW |109323 |1036 |28142 |
+ROW |109324 |1031 |28143 |
+ROW |109325 |1033 |28150 |
+ROW |109326 |1032 |28153 |
+ROW |109327 |1034 |28154 |
+ROW |109328 |1035 |28155 |
+ROW |109329 |1033 |28156 |
+ROW |109330 |1036 |28157 |
+ROW |109331 |1036 |28158 |
+ROW |109332 |1032 |30113 |
+ROW |109333 |1032 |30114 |
+ROW |109334 |1032 |30115 |
+ROW |109335 |941 |27748 |
+ROW |109336 |941 |27749 |
+ROW |109337 |941 |27750 |
+ROW |109338 |939 |27751 |
+ROW |109339 |937 |27753 |
+ROW |109340 |941 |27754 |
+ROW |109341 |940 |27755 |
+ROW |109342 |938 |30116 |
+ROW |109343 |948 |27777 |
+ROW |109344 |948 |27778 |
+ROW |109345 |945 |27783 |
+ROW |109346 |945 |27784 |
+ROW |109347 |948 |27785 |
+ROW |109348 |946 |27786 |
+ROW |109349 |947 |27787 |
+ROW |109350 |957 |27812 |
+ROW |109351 |957 |27813 |
+ROW |109352 |951 |27814 |
+ROW |109353 |957 |30117 |
+ROW |109354 |954 |27821 |
+ROW |109355 |956 |27822 |
+ROW |109356 |955 |27823 |
+ROW |109357 |952 |28894 |
+ROW |109358 |953 |30118 |
+ROW |109359 |1486 |33402 |
+ROW |109360 |1486 |33403 |
+ROW |109361 |1486 |33404 |
+ROW |109362 |1483 |33405 |
+ROW |109363 |1483 |33406 |
+ROW |109364 |1482 |33407 |
+ROW |109365 |1483 |33408 |
+ROW |109366 |1483 |33409 |
+ROW |109367 |1483 |33410 |
+ROW |109368 |1483 |33411 |
+ROW |109369 |1486 |33412 |
+ROW |109370 |1486 |33413 |
+ROW |109371 |1044 |28200 |
+ROW |109372 |1044 |28201 |
+ROW |109373 |1045 |28202 |
+ROW |109374 |1045 |28203 |
+ROW |109375 |1047 |28204 |
+ROW |109376 |1047 |28205 |
+ROW |109377 |1046 |28206 |
+ROW |109378 |1484 |33429 |
+ROW |109379 |1484 |33430 |
+ROW |109380 |1484 |33431 |
+ROW |109381 |976 |27893 |
+ROW |109382 |976 |27894 |
+ROW |109383 |976 |27895 |
+ROW |109384 |973 |27898 |
+ROW |109385 |973 |27900 |
+ROW |109386 |976 |30119 |
+ROW |109387 |973 |30120 |
+ROW |109388 |972 |27904 |
+ROW |109389 |974 |27905 |
+ROW |109390 |975 |27906 |
+ROW |109391 |975 |27907 |
+ROW |109392 |975 |27908 |
+ROW |109393 |974 |31790 |
+ROW |109394 |1365 |32308 |
+ROW |109395 |1368 |32309 |
+ROW |109396 |1370 |32310 |
+ROW |109397 |1370 |32311 |
+ROW |109398 |1366 |32312 |
+ROW |109399 |1369 |32313 |
+ROW |109400 |1369 |32314 |
+ROW |109401 |1369 |32315 |
+ROW |109402 |1369 |32316 |
+ROW |109403 |1368 |32317 |
+ROW |109404 |1368 |32318 |
+ROW |109405 |1365 |32319 |
+ROW |109406 |1367 |32320 |
+ROW |109407 |1367 |32321 |
+ROW |109408 |1367 |32322 |
+ROW |109409 |1366 |32323 |
+ROW |109410 |1366 |32324 |
+ROW |109411 |1371 |32325 |
+ROW |109412 |1365 |32326 |
+ROW |109413 |1365 |32327 |
+ROW |109414 |1370 |32328 |
+ROW |109415 |1366 |32330 |
+ROW |109416 |1372 |32331 |
+ROW |109417 |1376 |32332 |
+ROW |109418 |1377 |32333 |
+ROW |109419 |1377 |32334 |
+ROW |109420 |1373 |32335 |
+ROW |109421 |1376 |32336 |
+ROW |109422 |1376 |32337 |
+ROW |109423 |1376 |32338 |
+ROW |109424 |1375 |32339 |
+ROW |109425 |1378 |32340 |
+ROW |109426 |1375 |32341 |
+ROW |109427 |1375 |32342 |
+ROW |109428 |1374 |32343 |
+ROW |109429 |1374 |32344 |
+ROW |109430 |1374 |32345 |
+ROW |109431 |1373 |32346 |
+ROW |109432 |1373 |32347 |
+ROW |109433 |1377 |32348 |
+ROW |109434 |1373 |32350 |
+ROW |109435 |1379 |32351 |
+ROW |109436 |1382 |32352 |
+ROW |109437 |1384 |32353 |
+ROW |109438 |1384 |32354 |
+ROW |109439 |1380 |32355 |
+ROW |109440 |1383 |32356 |
+ROW |109441 |1383 |32357 |
+ROW |109442 |1383 |32358 |
+ROW |109443 |1383 |32359 |
+ROW |109444 |1382 |32360 |
+ROW |109445 |1382 |32361 |
+ROW |109446 |1379 |32362 |
+ROW |109447 |1381 |32363 |
+ROW |109448 |1381 |32364 |
+ROW |109449 |1381 |32365 |
+ROW |109450 |1380 |32366 |
+ROW |109451 |1380 |32367 |
+ROW |109452 |1385 |32368 |
+ROW |109453 |1379 |32369 |
+ROW |109454 |1379 |32370 |
+ROW |109455 |1384 |32371 |
+ROW |109456 |1380 |32373 |
+ROW |109457 |1390 |32374 |
+ROW |109458 |1387 |32375 |
+ROW |109459 |1387 |32376 |
+ROW |109460 |1388 |32377 |
+ROW |109461 |1388 |32378 |
+ROW |109462 |1388 |32379 |
+ROW |109463 |1389 |32380 |
+ROW |109464 |1386 |32382 |
+ROW |109465 |1391 |32383 |
+ROW |109466 |1393 |32384 |
+ROW |109467 |1395 |32385 |
+ROW |109468 |1392 |32386 |
+ROW |109469 |1394 |32387 |
+ROW |109470 |1394 |32388 |
+ROW |109471 |1394 |32389 |
+ROW |109472 |1393 |32390 |
+ROW |109473 |1392 |32391 |
+ROW |109474 |1391 |32392 |
+ROW |109475 |1392 |32393 |
+ROW |109476 |1392 |32394 |
+ROW |109477 |1396 |32395 |
+ROW |109478 |1391 |32396 |
+ROW |109479 |1391 |32397 |
+ROW |109480 |1391 |32398 |
+ROW |109481 |1395 |32399 |
+ROW |109482 |1392 |32401 |
+ROW |109483 |1397 |32402 |
+ROW |109484 |1399 |32403 |
+ROW |109485 |1401 |32404 |
+ROW |109486 |1398 |32405 |
+ROW |109487 |1400 |32406 |
+ROW |109488 |1400 |32407 |
+ROW |109489 |1400 |32408 |
+ROW |109490 |1399 |32409 |
+ROW |109491 |1398 |32410 |
+ROW |109492 |1397 |32411 |
+ROW |109493 |1398 |32412 |
+ROW |109494 |1398 |32413 |
+ROW |109495 |1402 |32414 |
+ROW |109496 |1397 |32415 |
+ROW |109497 |1397 |32416 |
+ROW |109498 |1397 |32417 |
+ROW |109499 |1401 |32418 |
+ROW |109500 |1398 |32420 |
+ROW |109501 |1409 |32421 |
+ROW |109502 |1407 |32422 |
+ROW |109503 |1405 |32423 |
+ROW |109504 |1405 |32424 |
+ROW |109505 |1407 |32425 |
+ROW |109506 |1407 |32426 |
+ROW |109507 |1407 |32427 |
+ROW |109508 |1408 |32428 |
+ROW |109509 |1408 |32429 |
+ROW |109510 |1404 |32436 |
+ROW |109511 |1404 |32437 |
+ROW |109512 |1404 |32438 |
+ROW |109513 |1403 |32439 |
+ROW |109514 |1404 |32440 |
+ROW |109515 |1406 |32441 |
+ROW |109516 |1406 |32442 |
+ROW |109517 |1406 |32443 |
+ROW |109518 |1406 |32444 |
+ROW |109519 |985 |27930 |
+ROW |109520 |985 |27931 |
+ROW |109521 |981 |27935 |
+ROW |109522 |980 |27936 |
+ROW |109523 |985 |30121 |
+ROW |109524 |981 |30122 |
+ROW |109525 |981 |30123 |
+ROW |109526 |982 |27940 |
+ROW |109527 |982 |27941 |
+ROW |109528 |984 |27942 |
+ROW |109529 |983 |27943 |
+ROW |109530 |991 |27967 |
+ROW |109531 |991 |27968 |
+ROW |109532 |991 |27970 |
+ROW |109533 |991 |27971 |
+ROW |109534 |990 |27972 |
+ROW |109535 |990 |27973 |
+ROW |109536 |989 |27975 |
+ROW |109537 |1282 |30124 |
+ROW |109538 |991 |30125 |
+ROW |109539 |990 |30126 |
+ROW |109540 |1280 |30129 |
+ROW |109541 |1281 |30130 |
+ROW |109542 |997 |27997 |
+ROW |109543 |997 |27998 |
+ROW |109544 |997 |27999 |
+ROW |109545 |997 |28000 |
+ROW |109546 |995 |28003 |
+ROW |109547 |996 |30131 |
+ROW |109548 |1003 |28026 |
+ROW |109549 |1003 |28027 |
+ROW |109550 |1001 |28031 |
+ROW |109551 |1002 |30132 |
+ROW |109552 |1002 |30133 |
+ROW |109553 |1002 |30134 |
+ROW |109554 |1002 |30135 |
+ROW |109555 |1002 |30136 |
+ROW |109556 |1142 |29087 |
+ROW |109557 |1142 |29088 |
+ROW |109558 |1142 |29089 |
+ROW |109559 |1142 |29090 |
+ROW |109560 |1142 |29091 |
+ROW |109561 |1142 |29092 |
+ROW |109562 |1142 |29093 |
+ROW |109563 |1142 |29094 |
+ROW |109564 |1142 |29095 |
+ROW |109565 |1142 |29096 |
+ROW |109566 |1142 |29097 |
+ROW |109567 |1142 |29098 |
+ROW |109568 |1142 |29099 |
+ROW |109569 |1142 |29100 |
+ROW |109570 |1142 |29101 |
+ROW |109571 |1142 |29102 |
+ROW |109572 |1144 |29103 |
+ROW |109573 |1144 |29104 |
+ROW |109574 |1144 |29105 |
+ROW |109575 |1144 |29106 |
+ROW |109576 |1144 |29107 |
+ROW |109577 |1144 |29108 |
+ROW |109578 |1151 |29110 |
+ROW |109579 |1148 |29111 |
+ROW |109580 |1148 |29112 |
+ROW |109581 |1148 |29113 |
+ROW |109582 |1148 |29114 |
+ROW |109583 |1148 |29115 |
+ROW |109584 |1148 |29116 |
+ROW |109585 |1148 |29117 |
+ROW |109586 |1148 |29118 |
+ROW |109587 |1148 |29119 |
+ROW |109588 |1150 |29120 |
+ROW |109589 |1149 |29121 |
+ROW |109590 |1149 |29122 |
+ROW |109591 |1149 |29123 |
+ROW |109592 |1152 |29124 |
+ROW |109593 |1152 |29125 |
+ROW |109594 |1152 |29126 |
+ROW |109595 |1152 |29127 |
+ROW |109596 |1152 |29128 |
+ROW |109597 |1152 |29129 |
+ROW |109598 |1152 |29130 |
+ROW |109599 |1152 |29131 |
+ROW |109600 |1152 |29132 |
+ROW |109601 |1152 |29133 |
+ROW |109602 |1152 |29134 |
+ROW |109603 |1152 |29135 |
+ROW |109604 |1152 |29136 |
+ROW |109605 |1152 |29137 |
+ROW |109606 |1152 |29138 |
+ROW |109607 |1152 |29139 |
+ROW |109608 |1154 |29140 |
+ROW |109609 |1154 |29141 |
+ROW |109610 |1154 |29142 |
+ROW |109611 |1154 |29143 |
+ROW |109612 |1154 |29144 |
+ROW |109613 |1154 |29145 |
+ROW |109614 |1161 |29147 |
+ROW |109615 |1158 |29148 |
+ROW |109616 |1158 |29149 |
+ROW |109617 |1158 |29150 |
+ROW |109618 |1158 |29151 |
+ROW |109619 |1158 |29152 |
+ROW |109620 |1158 |29153 |
+ROW |109621 |1158 |29154 |
+ROW |109622 |1158 |29155 |
+ROW |109623 |1158 |29156 |
+ROW |109624 |1160 |29157 |
+ROW |109625 |1159 |29158 |
+ROW |109626 |1159 |29159 |
+ROW |109627 |1159 |29160 |
+ROW |109628 |1162 |29161 |
+ROW |109629 |1162 |29162 |
+ROW |109630 |1162 |29163 |
+ROW |109631 |1162 |29164 |
+ROW |109632 |1162 |29165 |
+ROW |109633 |1162 |29166 |
+ROW |109634 |1162 |29167 |
+ROW |109635 |1162 |29168 |
+ROW |109636 |1162 |29169 |
+ROW |109637 |1162 |29170 |
+ROW |109638 |1162 |29171 |
+ROW |109639 |1162 |29172 |
+ROW |109640 |1162 |29173 |
+ROW |109641 |1162 |29174 |
+ROW |109642 |1162 |29175 |
+ROW |109643 |1162 |29176 |
+ROW |109644 |1164 |29177 |
+ROW |109645 |1164 |29178 |
+ROW |109646 |1164 |29179 |
+ROW |109647 |1164 |29180 |
+ROW |109648 |1164 |29181 |
+ROW |109649 |1164 |29182 |
+ROW |109650 |1171 |29184 |
+ROW |109651 |1168 |29185 |
+ROW |109652 |1168 |29186 |
+ROW |109653 |1168 |29187 |
+ROW |109654 |1168 |29188 |
+ROW |109655 |1168 |29189 |
+ROW |109656 |1168 |29190 |
+ROW |109657 |1168 |29191 |
+ROW |109658 |1168 |29192 |
+ROW |109659 |1168 |29193 |
+ROW |109660 |1170 |29194 |
+ROW |109661 |1169 |29195 |
+ROW |109662 |1169 |29196 |
+ROW |109663 |1169 |29197 |
+ROW |109664 |1142 |29198 |
+ROW |109665 |1144 |31270 |
+ROW |109666 |1152 |29199 |
+ROW |109667 |1154 |31271 |
+ROW |109668 |1162 |29200 |
+ROW |109669 |1164 |31272 |
+ROW |109670 |1146 |31278 |
+ROW |109671 |1156 |31281 |
+ROW |109672 |1166 |31284 |
+ROW |109673 |1146 |31287 |
+ROW |109674 |1146 |31290 |
+ROW |109675 |1156 |31293 |
+ROW |109676 |1156 |31296 |
+ROW |109677 |1166 |31299 |
+ROW |109678 |1166 |31302 |
+ROW |109679 |1173 |29273 |
+ROW |109680 |1173 |29274 |
+ROW |109681 |1173 |29275 |
+ROW |109682 |1173 |29276 |
+ROW |109683 |1173 |29277 |
+ROW |109684 |1173 |29278 |
+ROW |109685 |1173 |29279 |
+ROW |109686 |1173 |29280 |
+ROW |109687 |1173 |29281 |
+ROW |109688 |1173 |29282 |
+ROW |109689 |1173 |29283 |
+ROW |109690 |1173 |29284 |
+ROW |109691 |1173 |29285 |
+ROW |109692 |1173 |29286 |
+ROW |109693 |1173 |29287 |
+ROW |109694 |1173 |29288 |
+ROW |109695 |1175 |29289 |
+ROW |109696 |1175 |29290 |
+ROW |109697 |1175 |29291 |
+ROW |109698 |1175 |29292 |
+ROW |109699 |1175 |29293 |
+ROW |109700 |1175 |29294 |
+ROW |109701 |1182 |29296 |
+ROW |109702 |1179 |29297 |
+ROW |109703 |1179 |29298 |
+ROW |109704 |1179 |29299 |
+ROW |109705 |1179 |29300 |
+ROW |109706 |1179 |29301 |
+ROW |109707 |1179 |29302 |
+ROW |109708 |1179 |29303 |
+ROW |109709 |1179 |29304 |
+ROW |109710 |1179 |29305 |
+ROW |109711 |1181 |29306 |
+ROW |109712 |1180 |29307 |
+ROW |109713 |1180 |29308 |
+ROW |109714 |1180 |29309 |
+ROW |109715 |1183 |29310 |
+ROW |109716 |1183 |29311 |
+ROW |109717 |1183 |29312 |
+ROW |109718 |1183 |29313 |
+ROW |109719 |1183 |29314 |
+ROW |109720 |1183 |29315 |
+ROW |109721 |1183 |29316 |
+ROW |109722 |1183 |29317 |
+ROW |109723 |1183 |29318 |
+ROW |109724 |1183 |29319 |
+ROW |109725 |1183 |29320 |
+ROW |109726 |1183 |29321 |
+ROW |109727 |1183 |29322 |
+ROW |109728 |1183 |29323 |
+ROW |109729 |1183 |29324 |
+ROW |109730 |1183 |29325 |
+ROW |109731 |1185 |29326 |
+ROW |109732 |1185 |29327 |
+ROW |109733 |1185 |29328 |
+ROW |109734 |1185 |29329 |
+ROW |109735 |1185 |29330 |
+ROW |109736 |1185 |29331 |
+ROW |109737 |1192 |29333 |
+ROW |109738 |1189 |29334 |
+ROW |109739 |1189 |29335 |
+ROW |109740 |1189 |29336 |
+ROW |109741 |1189 |29337 |
+ROW |109742 |1189 |29338 |
+ROW |109743 |1189 |29339 |
+ROW |109744 |1189 |29340 |
+ROW |109745 |1189 |29341 |
+ROW |109746 |1189 |29342 |
+ROW |109747 |1191 |29343 |
+ROW |109748 |1190 |29344 |
+ROW |109749 |1190 |29345 |
+ROW |109750 |1190 |29346 |
+ROW |109751 |1173 |29347 |
+ROW |109752 |1175 |31303 |
+ROW |109753 |1183 |29348 |
+ROW |109754 |1185 |31304 |
+ROW |109755 |1177 |31309 |
+ROW |109756 |1187 |31312 |
+ROW |109757 |1177 |31315 |
+ROW |109758 |1177 |31318 |
+ROW |109759 |1187 |31321 |
+ROW |109760 |1187 |31324 |
+ROW |109761 |1201 |29395 |
+ROW |109762 |1196 |29396 |
+ROW |109763 |1196 |29397 |
+ROW |109764 |1194 |29398 |
+ROW |109765 |1193 |29399 |
+ROW |109766 |1196 |29400 |
+ROW |109767 |1196 |29401 |
+ROW |109768 |1196 |29402 |
+ROW |109769 |1196 |29403 |
+ROW |109770 |1194 |29404 |
+ROW |109771 |1193 |29405 |
+ROW |109772 |1193 |29406 |
+ROW |109773 |1193 |29407 |
+ROW |109774 |1193 |29408 |
+ROW |109775 |1193 |29409 |
+ROW |109776 |1193 |29410 |
+ROW |109777 |1193 |29411 |
+ROW |109778 |1193 |29412 |
+ROW |109779 |1193 |29413 |
+ROW |109780 |1194 |29414 |
+ROW |109781 |1197 |29415 |
+ROW |109782 |1193 |29416 |
+ROW |109783 |1193 |29417 |
+ROW |109784 |1193 |29418 |
+ROW |109785 |1193 |29419 |
+ROW |109786 |1193 |29420 |
+ROW |109787 |1199 |29421 |
+ROW |109788 |1195 |29422 |
+ROW |109789 |1194 |29423 |
+ROW |109790 |1194 |29424 |
+ROW |109791 |1194 |29425 |
+ROW |109792 |1193 |29426 |
+ROW |109793 |1193 |29427 |
+ROW |109794 |1195 |29428 |
+ROW |109795 |1201 |29450 |
+ROW |109796 |1201 |29451 |
+ROW |109797 |1128 |28978 |
+ROW |109798 |1128 |28979 |
+ROW |109799 |1128 |28980 |
+ROW |109800 |1128 |28981 |
+ROW |109801 |1128 |28982 |
+ROW |109802 |1128 |28983 |
+ROW |109803 |1128 |28984 |
+ROW |109804 |1128 |28985 |
+ROW |109805 |1128 |28986 |
+ROW |109806 |1130 |28987 |
+ROW |109807 |1130 |28988 |
+ROW |109808 |1130 |28989 |
+ROW |109809 |1130 |28990 |
+ROW |109810 |1130 |28991 |
+ROW |109811 |1130 |28992 |
+ROW |109812 |1132 |28993 |
+ROW |109813 |1132 |28994 |
+ROW |109814 |1132 |28995 |
+ROW |109815 |1132 |28996 |
+ROW |109816 |1132 |28997 |
+ROW |109817 |1132 |28998 |
+ROW |109818 |1132 |28999 |
+ROW |109819 |1132 |29000 |
+ROW |109820 |1132 |29001 |
+ROW |109821 |1134 |29002 |
+ROW |109822 |1134 |29003 |
+ROW |109823 |1134 |29004 |
+ROW |109824 |1134 |29005 |
+ROW |109825 |1134 |29006 |
+ROW |109826 |1134 |29007 |
+ROW |109827 |1130 |29017 |
+ROW |109828 |1130 |29018 |
+ROW |109829 |1130 |29019 |
+ROW |109830 |1130 |29020 |
+ROW |109831 |1130 |29021 |
+ROW |109832 |1130 |29022 |
+ROW |109833 |1130 |29023 |
+ROW |109834 |1130 |29024 |
+ROW |109835 |1130 |29025 |
+ROW |109836 |1130 |29026 |
+ROW |109837 |1134 |29034 |
+ROW |109838 |1134 |29035 |
+ROW |109839 |1134 |29036 |
+ROW |109840 |1134 |29037 |
+ROW |109841 |1134 |29038 |
+ROW |109842 |1134 |29039 |
+ROW |109843 |1134 |29040 |
+ROW |109844 |1134 |29041 |
+ROW |109845 |1134 |29042 |
+ROW |109846 |1134 |29043 |
+ROW |109847 |1130 |29048 |
+ROW |109848 |1134 |29049 |
+ROW |109849 |1202 |29454 |
+ROW |109850 |1202 |29455 |
+ROW |109851 |1202 |29456 |
+ROW |109852 |1202 |29457 |
+ROW |109853 |1202 |29458 |
+ROW |109854 |1202 |29459 |
+ROW |109855 |1203 |29460 |
+ROW |109856 |1203 |29461 |
+ROW |109857 |1203 |29462 |
+ROW |109858 |1203 |29463 |
+ROW |109859 |1203 |29466 |
+ROW |109860 |1203 |29467 |
+ROW |109861 |1203 |29468 |
+ROW |109862 |1203 |29469 |
+ROW |109863 |1203 |29470 |
+ROW |109864 |1209 |29472 |
+ROW |109865 |1207 |29473 |
+ROW |109866 |1207 |29474 |
+ROW |109867 |1207 |29475 |
+ROW |109868 |1207 |29476 |
+ROW |109869 |1207 |29477 |
+ROW |109870 |1208 |29478 |
+ROW |109871 |1202 |30137 |
+ROW |109872 |1202 |31325 |
+ROW |109873 |1203 |31326 |
+ROW |109874 |1203 |31327 |
+ROW |109875 |1211 |31455 |
+ROW |109876 |1212 |29480 |
+ROW |109877 |1212 |29481 |
+ROW |109878 |1212 |29482 |
+ROW |109879 |1212 |29483 |
+ROW |109880 |1212 |29484 |
+ROW |109881 |1212 |29485 |
+ROW |109882 |1213 |29486 |
+ROW |109883 |1213 |29487 |
+ROW |109884 |1213 |29488 |
+ROW |109885 |1213 |29489 |
+ROW |109886 |1213 |29492 |
+ROW |109887 |1213 |29493 |
+ROW |109888 |1213 |29494 |
+ROW |109889 |1213 |29495 |
+ROW |109890 |1213 |29496 |
+ROW |109891 |1219 |29498 |
+ROW |109892 |1217 |29499 |
+ROW |109893 |1217 |29500 |
+ROW |109894 |1217 |29501 |
+ROW |109895 |1217 |29502 |
+ROW |109896 |1217 |29503 |
+ROW |109897 |1218 |29504 |
+ROW |109898 |1212 |30138 |
+ROW |109899 |1212 |31328 |
+ROW |109900 |1213 |31329 |
+ROW |109901 |1213 |31330 |
+ROW |109902 |1216 |31456 |
+ROW |109903 |1203 |31331 |
+ROW |109904 |1213 |31332 |
+ROW |109905 |1310 |30425 |
+ROW |109906 |1311 |30426 |
+ROW |109907 |1243 |29561 |
+ROW |109908 |1243 |29562 |
+ROW |109909 |1243 |29563 |
+ROW |109910 |1243 |29564 |
+ROW |109911 |1243 |29565 |
+ROW |109912 |1243 |29566 |
+ROW |109913 |1244 |29567 |
+ROW |109914 |1244 |29568 |
+ROW |109915 |1244 |29569 |
+ROW |109916 |1244 |29570 |
+ROW |109917 |1244 |29573 |
+ROW |109918 |1244 |29574 |
+ROW |109919 |1244 |29575 |
+ROW |109920 |1244 |29576 |
+ROW |109921 |1244 |29577 |
+ROW |109922 |1250 |29579 |
+ROW |109923 |1248 |29580 |
+ROW |109924 |1248 |29581 |
+ROW |109925 |1248 |29582 |
+ROW |109926 |1248 |29583 |
+ROW |109927 |1248 |29584 |
+ROW |109928 |1249 |29585 |
+ROW |109929 |1243 |30139 |
+ROW |109930 |1243 |31343 |
+ROW |109931 |1244 |31344 |
+ROW |109932 |1244 |31345 |
+ROW |109933 |1252 |31477 |
+ROW |109934 |1253 |29587 |
+ROW |109935 |1253 |29588 |
+ROW |109936 |1253 |29589 |
+ROW |109937 |1253 |29590 |
+ROW |109938 |1253 |29591 |
+ROW |109939 |1253 |29592 |
+ROW |109940 |1254 |29593 |
+ROW |109941 |1254 |29594 |
+ROW |109942 |1254 |29595 |
+ROW |109943 |1254 |29596 |
+ROW |109944 |1254 |29599 |
+ROW |109945 |1254 |29600 |
+ROW |109946 |1254 |29601 |
+ROW |109947 |1254 |29602 |
+ROW |109948 |1254 |29603 |
+ROW |109949 |1242 |29605 |
+ROW |109950 |1258 |29606 |
+ROW |109951 |1258 |29607 |
+ROW |109952 |1258 |29608 |
+ROW |109953 |1258 |29609 |
+ROW |109954 |1258 |29610 |
+ROW |109955 |1259 |29611 |
+ROW |109956 |1253 |30140 |
+ROW |109957 |1253 |31346 |
+ROW |109958 |1254 |31347 |
+ROW |109959 |1254 |31348 |
+ROW |109960 |1257 |31478 |
+ROW |109961 |1244 |31349 |
+ROW |109962 |1254 |31350 |
+ROW |109963 |1312 |30429 |
+ROW |109964 |1313 |30430 |
+ROW |109965 |1492 |34083 |
+ROW |109966 |1493 |33568 |
+ROW |109967 |1493 |33569 |
+ROW |109968 |1493 |33570 |
+ROW |109969 |1492 |33571 |
+ROW |109970 |1492 |33572 |
+ROW |109971 |1492 |33574 |
+ROW |109972 |1492 |33575 |
+ROW |109973 |1492 |33576 |
+ROW |109974 |1492 |33577 |
+ROW |109975 |1492 |33578 |
+ROW |109976 |1493 |33579 |
+ROW |109977 |1493 |33580 |
+ROW |109978 |1493 |33581 |
+ROW |109979 |1493 |33582 |
+ROW |109980 |1493 |33583 |
+ROW |109981 |1493 |33584 |
+ROW |109982 |1493 |33585 |
+ROW |109983 |1493 |33589 |
+ROW |109984 |1493 |33590 |
+ROW |109985 |1493 |33591 |
+ROW |109986 |1493 |33592 |
+ROW |109987 |1493 |33593 |
+ROW |109988 |1493 |33594 |
+ROW |109989 |1493 |33595 |
+ROW |109990 |1493 |33602 |
+ROW |109991 |1493 |33603 |
+ROW |109992 |1493 |33604 |
+ROW |109993 |1493 |33605 |
+ROW |109994 |1493 |33606 |
+ROW |109995 |1492 |33607 |
+ROW |109996 |1493 |33608 |
+ROW |109997 |1493 |33609 |
+ROW |109998 |1493 |33610 |
+ROW |109999 |1493 |33611 |
+ROW |110000 |1493 |33612 |
+ROW |110001 |1493 |33613 |
+ROW |110002 |1493 |33614 |
+ROW |110003 |1493 |33615 |
+ROW |110004 |1493 |33616 |
+ROW |110005 |1493 |33617 |
+ROW |110006 |1493 |33618 |
+ROW |110007 |1494 |34084 |
+ROW |110008 |1495 |33619 |
+ROW |110009 |1495 |33620 |
+ROW |110010 |1495 |33621 |
+ROW |110011 |1494 |33622 |
+ROW |110012 |1494 |33623 |
+ROW |110013 |1494 |33625 |
+ROW |110014 |1494 |33626 |
+ROW |110015 |1494 |33627 |
+ROW |110016 |1494 |33628 |
+ROW |110017 |1494 |33629 |
+ROW |110018 |1495 |33630 |
+ROW |110019 |1495 |33631 |
+ROW |110020 |1495 |33632 |
+ROW |110021 |1495 |33633 |
+ROW |110022 |1495 |33634 |
+ROW |110023 |1495 |33635 |
+ROW |110024 |1495 |33636 |
+ROW |110025 |1495 |33640 |
+ROW |110026 |1495 |33641 |
+ROW |110027 |1495 |33642 |
+ROW |110028 |1495 |33643 |
+ROW |110029 |1495 |33644 |
+ROW |110030 |1495 |33645 |
+ROW |110031 |1495 |33646 |
+ROW |110032 |1495 |33653 |
+ROW |110033 |1495 |33654 |
+ROW |110034 |1495 |33655 |
+ROW |110035 |1495 |33656 |
+ROW |110036 |1495 |33657 |
+ROW |110037 |1494 |33658 |
+ROW |110038 |1495 |33659 |
+ROW |110039 |1495 |33660 |
+ROW |110040 |1495 |33661 |
+ROW |110041 |1495 |33662 |
+ROW |110042 |1495 |33663 |
+ROW |110043 |1495 |33664 |
+ROW |110044 |1495 |33665 |
+ROW |110045 |1495 |33666 |
+ROW |110046 |1495 |33667 |
+ROW |110047 |1495 |33668 |
+ROW |110048 |1495 |33669 |
+ROW |110049 |1496 |34085 |
+ROW |110050 |1497 |33670 |
+ROW |110051 |1497 |33671 |
+ROW |110052 |1497 |33672 |
+ROW |110053 |1496 |33673 |
+ROW |110054 |1496 |33674 |
+ROW |110055 |1496 |33676 |
+ROW |110056 |1496 |33677 |
+ROW |110057 |1496 |33678 |
+ROW |110058 |1496 |33679 |
+ROW |110059 |1496 |33680 |
+ROW |110060 |1497 |33681 |
+ROW |110061 |1497 |33682 |
+ROW |110062 |1497 |33683 |
+ROW |110063 |1497 |33684 |
+ROW |110064 |1497 |33685 |
+ROW |110065 |1497 |33686 |
+ROW |110066 |1497 |33687 |
+ROW |110067 |1497 |33691 |
+ROW |110068 |1497 |33692 |
+ROW |110069 |1497 |33693 |
+ROW |110070 |1497 |33694 |
+ROW |110071 |1497 |33695 |
+ROW |110072 |1497 |33696 |
+ROW |110073 |1497 |33697 |
+ROW |110074 |1497 |33704 |
+ROW |110075 |1497 |33705 |
+ROW |110076 |1497 |33706 |
+ROW |110077 |1497 |33707 |
+ROW |110078 |1497 |33708 |
+ROW |110079 |1496 |33709 |
+ROW |110080 |1497 |33710 |
+ROW |110081 |1497 |33711 |
+ROW |110082 |1497 |33712 |
+ROW |110083 |1497 |33713 |
+ROW |110084 |1497 |33714 |
+ROW |110085 |1497 |33715 |
+ROW |110086 |1497 |33716 |
+ROW |110087 |1497 |33717 |
+ROW |110088 |1497 |33718 |
+ROW |110089 |1497 |33719 |
+ROW |110090 |1497 |33720 |
+ROW |110091 |1498 |34086 |
+ROW |110092 |1499 |33721 |
+ROW |110093 |1499 |33722 |
+ROW |110094 |1499 |33723 |
+ROW |110095 |1498 |33724 |
+ROW |110096 |1498 |33725 |
+ROW |110097 |1498 |33727 |
+ROW |110098 |1498 |33728 |
+ROW |110099 |1498 |33729 |
+ROW |110100 |1498 |33730 |
+ROW |110101 |1498 |33731 |
+ROW |110102 |1499 |33732 |
+ROW |110103 |1499 |33733 |
+ROW |110104 |1499 |33734 |
+ROW |110105 |1499 |33735 |
+ROW |110106 |1499 |33736 |
+ROW |110107 |1499 |33737 |
+ROW |110108 |1499 |33738 |
+ROW |110109 |1499 |33742 |
+ROW |110110 |1499 |33743 |
+ROW |110111 |1499 |33744 |
+ROW |110112 |1499 |33745 |
+ROW |110113 |1499 |33746 |
+ROW |110114 |1499 |33747 |
+ROW |110115 |1499 |33748 |
+ROW |110116 |1499 |33755 |
+ROW |110117 |1499 |33756 |
+ROW |110118 |1499 |33757 |
+ROW |110119 |1499 |33758 |
+ROW |110120 |1499 |33759 |
+ROW |110121 |1498 |33760 |
+ROW |110122 |1499 |33761 |
+ROW |110123 |1499 |33762 |
+ROW |110124 |1499 |33763 |
+ROW |110125 |1499 |33764 |
+ROW |110126 |1499 |33765 |
+ROW |110127 |1499 |33766 |
+ROW |110128 |1499 |33767 |
+ROW |110129 |1499 |33768 |
+ROW |110130 |1499 |33769 |
+ROW |110131 |1499 |33770 |
+ROW |110132 |1499 |33771 |
+ROW |110133 |1500 |34087 |
+ROW |110134 |1501 |33772 |
+ROW |110135 |1501 |33773 |
+ROW |110136 |1501 |33774 |
+ROW |110137 |1500 |33775 |
+ROW |110138 |1500 |33776 |
+ROW |110139 |1500 |33778 |
+ROW |110140 |1500 |33779 |
+ROW |110141 |1500 |33780 |
+ROW |110142 |1500 |33781 |
+ROW |110143 |1500 |33782 |
+ROW |110144 |1501 |33783 |
+ROW |110145 |1501 |33784 |
+ROW |110146 |1501 |33785 |
+ROW |110147 |1501 |33786 |
+ROW |110148 |1501 |33787 |
+ROW |110149 |1501 |33788 |
+ROW |110150 |1501 |33789 |
+ROW |110151 |1501 |33793 |
+ROW |110152 |1501 |33794 |
+ROW |110153 |1501 |33795 |
+ROW |110154 |1501 |33796 |
+ROW |110155 |1501 |33797 |
+ROW |110156 |1501 |33798 |
+ROW |110157 |1501 |33799 |
+ROW |110158 |1501 |33806 |
+ROW |110159 |1501 |33807 |
+ROW |110160 |1501 |33808 |
+ROW |110161 |1501 |33809 |
+ROW |110162 |1501 |33810 |
+ROW |110163 |1500 |33811 |
+ROW |110164 |1501 |33812 |
+ROW |110165 |1501 |33813 |
+ROW |110166 |1501 |33814 |
+ROW |110167 |1501 |33815 |
+ROW |110168 |1501 |33816 |
+ROW |110169 |1501 |33817 |
+ROW |110170 |1501 |33818 |
+ROW |110171 |1501 |33819 |
+ROW |110172 |1501 |33820 |
+ROW |110173 |1501 |33821 |
+ROW |110174 |1501 |33822 |
+ROW |110175 |1502 |34088 |
+ROW |110176 |1503 |33823 |
+ROW |110177 |1503 |33824 |
+ROW |110178 |1503 |33825 |
+ROW |110179 |1502 |33826 |
+ROW |110180 |1502 |33827 |
+ROW |110181 |1502 |33829 |
+ROW |110182 |1502 |33830 |
+ROW |110183 |1502 |33831 |
+ROW |110184 |1502 |33832 |
+ROW |110185 |1502 |33833 |
+ROW |110186 |1503 |33834 |
+ROW |110187 |1503 |33835 |
+ROW |110188 |1503 |33836 |
+ROW |110189 |1503 |33837 |
+ROW |110190 |1503 |33838 |
+ROW |110191 |1503 |33839 |
+ROW |110192 |1503 |33840 |
+ROW |110193 |1503 |33844 |
+ROW |110194 |1503 |33845 |
+ROW |110195 |1503 |33846 |
+ROW |110196 |1503 |33847 |
+ROW |110197 |1503 |33848 |
+ROW |110198 |1503 |33849 |
+ROW |110199 |1503 |33850 |
+ROW |110200 |1503 |33857 |
+ROW |110201 |1503 |33858 |
+ROW |110202 |1503 |33859 |
+ROW |110203 |1503 |33860 |
+ROW |110204 |1503 |33861 |
+ROW |110205 |1502 |33862 |
+ROW |110206 |1503 |33863 |
+ROW |110207 |1503 |33864 |
+ROW |110208 |1503 |33865 |
+ROW |110209 |1503 |33866 |
+ROW |110210 |1503 |33867 |
+ROW |110211 |1503 |33868 |
+ROW |110212 |1503 |33869 |
+ROW |110213 |1503 |33870 |
+ROW |110214 |1503 |33871 |
+ROW |110215 |1503 |33872 |
+ROW |110216 |1503 |33873 |
+ROW |110217 |1504 |34089 |
+ROW |110218 |1505 |33874 |
+ROW |110219 |1505 |33875 |
+ROW |110220 |1505 |33876 |
+ROW |110221 |1504 |33877 |
+ROW |110222 |1504 |33878 |
+ROW |110223 |1504 |33880 |
+ROW |110224 |1504 |33881 |
+ROW |110225 |1504 |33882 |
+ROW |110226 |1504 |33883 |
+ROW |110227 |1504 |33884 |
+ROW |110228 |1505 |33885 |
+ROW |110229 |1505 |33886 |
+ROW |110230 |1505 |33887 |
+ROW |110231 |1505 |33888 |
+ROW |110232 |1505 |33889 |
+ROW |110233 |1505 |33890 |
+ROW |110234 |1505 |33891 |
+ROW |110235 |1505 |33895 |
+ROW |110236 |1505 |33896 |
+ROW |110237 |1505 |33897 |
+ROW |110238 |1505 |33898 |
+ROW |110239 |1505 |33899 |
+ROW |110240 |1505 |33900 |
+ROW |110241 |1505 |33901 |
+ROW |110242 |1505 |33908 |
+ROW |110243 |1505 |33909 |
+ROW |110244 |1505 |33910 |
+ROW |110245 |1505 |33911 |
+ROW |110246 |1505 |33912 |
+ROW |110247 |1504 |33913 |
+ROW |110248 |1505 |33914 |
+ROW |110249 |1505 |33915 |
+ROW |110250 |1505 |33916 |
+ROW |110251 |1505 |33917 |
+ROW |110252 |1505 |33918 |
+ROW |110253 |1505 |33919 |
+ROW |110254 |1505 |33920 |
+ROW |110255 |1505 |33921 |
+ROW |110256 |1505 |33922 |
+ROW |110257 |1505 |33923 |
+ROW |110258 |1505 |33924 |
+ROW |110259 |1488 |34090 |
+ROW |110260 |1489 |33433 |
+ROW |110261 |1489 |33434 |
+ROW |110262 |1488 |33435 |
+ROW |110263 |1488 |33436 |
+ROW |110264 |1488 |33438 |
+ROW |110265 |1488 |33439 |
+ROW |110266 |1488 |33440 |
+ROW |110267 |1488 |33441 |
+ROW |110268 |1488 |33442 |
+ROW |110269 |1489 |33443 |
+ROW |110270 |1489 |33444 |
+ROW |110271 |1489 |33445 |
+ROW |110272 |1489 |33446 |
+ROW |110273 |1489 |33447 |
+ROW |110274 |1489 |33448 |
+ROW |110275 |1489 |33449 |
+ROW |110276 |1489 |33453 |
+ROW |110277 |1489 |33454 |
+ROW |110278 |1489 |33455 |
+ROW |110279 |1489 |33456 |
+ROW |110280 |1489 |33457 |
+ROW |110281 |1489 |33458 |
+ROW |110282 |1489 |33459 |
+ROW |110283 |1489 |33925 |
+ROW |110284 |1489 |33465 |
+ROW |110285 |1489 |33466 |
+ROW |110286 |1489 |33467 |
+ROW |110287 |1489 |33468 |
+ROW |110288 |1489 |33469 |
+ROW |110289 |1488 |33470 |
+ROW |110290 |1489 |33471 |
+ROW |110291 |1489 |33472 |
+ROW |110292 |1489 |33473 |
+ROW |110293 |1489 |33474 |
+ROW |110294 |1489 |33475 |
+ROW |110295 |1489 |33476 |
+ROW |110296 |1489 |33477 |
+ROW |110297 |1489 |33478 |
+ROW |110298 |1489 |33927 |
+ROW |110299 |1489 |33928 |
+ROW |110300 |1489 |33929 |
+ROW |110301 |1506 |34091 |
+ROW |110302 |1507 |33930 |
+ROW |110303 |1507 |33931 |
+ROW |110304 |1507 |33932 |
+ROW |110305 |1506 |33933 |
+ROW |110306 |1506 |33934 |
+ROW |110307 |1506 |33936 |
+ROW |110308 |1506 |33937 |
+ROW |110309 |1506 |33938 |
+ROW |110310 |1506 |33939 |
+ROW |110311 |1506 |33940 |
+ROW |110312 |1507 |33941 |
+ROW |110313 |1507 |33942 |
+ROW |110314 |1507 |33943 |
+ROW |110315 |1507 |33944 |
+ROW |110316 |1507 |33945 |
+ROW |110317 |1507 |33946 |
+ROW |110318 |1507 |33947 |
+ROW |110319 |1507 |33951 |
+ROW |110320 |1507 |33952 |
+ROW |110321 |1507 |33953 |
+ROW |110322 |1507 |33954 |
+ROW |110323 |1507 |33955 |
+ROW |110324 |1507 |33956 |
+ROW |110325 |1507 |33957 |
+ROW |110326 |1507 |33964 |
+ROW |110327 |1507 |33965 |
+ROW |110328 |1507 |33966 |
+ROW |110329 |1507 |33967 |
+ROW |110330 |1507 |33968 |
+ROW |110331 |1506 |33969 |
+ROW |110332 |1507 |33970 |
+ROW |110333 |1507 |33971 |
+ROW |110334 |1507 |33972 |
+ROW |110335 |1507 |33973 |
+ROW |110336 |1507 |33974 |
+ROW |110337 |1507 |33975 |
+ROW |110338 |1507 |33976 |
+ROW |110339 |1507 |33977 |
+ROW |110340 |1507 |33978 |
+ROW |110341 |1507 |33979 |
+ROW |110342 |1507 |33980 |
+ROW |110343 |1508 |34092 |
+ROW |110344 |1509 |33981 |
+ROW |110345 |1509 |33982 |
+ROW |110346 |1509 |33983 |
+ROW |110347 |1508 |33984 |
+ROW |110348 |1508 |33985 |
+ROW |110349 |1508 |33987 |
+ROW |110350 |1508 |33988 |
+ROW |110351 |1508 |33989 |
+ROW |110352 |1508 |33990 |
+ROW |110353 |1508 |33991 |
+ROW |110354 |1509 |33992 |
+ROW |110355 |1509 |33993 |
+ROW |110356 |1509 |33994 |
+ROW |110357 |1509 |33995 |
+ROW |110358 |1509 |33996 |
+ROW |110359 |1509 |33997 |
+ROW |110360 |1509 |33998 |
+ROW |110361 |1509 |34002 |
+ROW |110362 |1509 |34003 |
+ROW |110363 |1509 |34004 |
+ROW |110364 |1509 |34005 |
+ROW |110365 |1509 |34006 |
+ROW |110366 |1509 |34007 |
+ROW |110367 |1509 |34008 |
+ROW |110368 |1509 |34015 |
+ROW |110369 |1509 |34016 |
+ROW |110370 |1509 |34017 |
+ROW |110371 |1509 |34018 |
+ROW |110372 |1509 |34019 |
+ROW |110373 |1508 |34020 |
+ROW |110374 |1509 |34021 |
+ROW |110375 |1509 |34022 |
+ROW |110376 |1509 |34023 |
+ROW |110377 |1509 |34024 |
+ROW |110378 |1509 |34025 |
+ROW |110379 |1509 |34026 |
+ROW |110380 |1509 |34027 |
+ROW |110381 |1509 |34028 |
+ROW |110382 |1509 |34029 |
+ROW |110383 |1509 |34030 |
+ROW |110384 |1509 |34031 |
+ROW |110385 |1510 |34093 |
+ROW |110386 |1511 |34032 |
+ROW |110387 |1511 |34033 |
+ROW |110388 |1511 |34034 |
+ROW |110389 |1510 |34035 |
+ROW |110390 |1510 |34036 |
+ROW |110391 |1510 |34038 |
+ROW |110392 |1510 |34039 |
+ROW |110393 |1510 |34040 |
+ROW |110394 |1510 |34041 |
+ROW |110395 |1510 |34042 |
+ROW |110396 |1511 |34043 |
+ROW |110397 |1511 |34044 |
+ROW |110398 |1511 |34045 |
+ROW |110399 |1511 |34046 |
+ROW |110400 |1511 |34047 |
+ROW |110401 |1511 |34048 |
+ROW |110402 |1511 |34049 |
+ROW |110403 |1511 |34053 |
+ROW |110404 |1511 |34054 |
+ROW |110405 |1511 |34055 |
+ROW |110406 |1511 |34056 |
+ROW |110407 |1511 |34057 |
+ROW |110408 |1511 |34058 |
+ROW |110409 |1511 |34059 |
+ROW |110410 |1511 |34066 |
+ROW |110411 |1511 |34067 |
+ROW |110412 |1511 |34068 |
+ROW |110413 |1511 |34069 |
+ROW |110414 |1511 |34070 |
+ROW |110415 |1510 |34071 |
+ROW |110416 |1511 |34072 |
+ROW |110417 |1511 |34073 |
+ROW |110418 |1511 |34074 |
+ROW |110419 |1511 |34075 |
+ROW |110420 |1511 |34076 |
+ROW |110421 |1511 |34077 |
+ROW |110422 |1511 |34078 |
+ROW |110423 |1511 |34079 |
+ROW |110424 |1511 |34080 |
+ROW |110425 |1511 |34081 |
+ROW |110426 |1511 |34082 |
+ROW |110427 |1424 |32776 |
+ROW |110428 |1424 |32777 |
+ROW |110429 |1424 |32778 |
+ROW |110430 |1424 |32779 |
+ROW |110431 |1491 |33479 |
+ROW |110432 |1490 |33480 |
+ROW |110433 |1491 |33481 |
+ROW |110434 |1491 |33482 |
+ROW |110435 |1491 |33483 |
+ROW |110436 |1491 |33484 |
+ROW |110437 |1491 |33485 |
+ROW |110438 |1491 |33486 |
+ROW |110439 |1491 |33487 |
+ROW |110440 |1490 |33488 |
+ROW |110441 |1490 |33489 |
+ROW |110442 |1491 |33490 |
+ROW |110443 |1490 |33491 |
+ROW |110444 |1491 |33492 |
+ROW |110445 |1490 |33493 |
+ROW |110446 |1490 |33494 |
+ROW |110447 |1490 |33495 |
+ROW |110448 |1491 |33496 |
+ROW |110449 |1491 |33497 |
+ROW |110450 |1491 |33498 |
+ROW |110451 |1491 |33499 |
+ROW |110452 |1490 |33500 |
+ROW |110453 |1490 |33501 |
+ROW |110454 |1491 |33502 |
+ROW |110455 |1491 |33503 |
+ROW |110456 |1490 |33504 |
+ROW |110457 |1490 |33505 |
+ROW |110458 |1490 |33506 |
+ROW |110459 |1490 |33507 |
+ROW |110460 |1490 |33508 |
+ROW |110461 |1490 |33509 |
+ROW |110462 |1491 |33510 |
+ROW |110463 |1491 |33511 |
+ROW |110464 |1490 |33512 |
+ROW |110465 |1491 |33545 |
+ROW |110466 |1491 |33551 |
+ROW |110467 |1491 |33552 |
+ROW |110468 |1491 |33553 |
+ROW |110469 |1491 |33559 |
+ROW |110470 |1491 |33560 |
+ROW |110471 |1491 |33561 |
+ROW |110472 |1491 |33562 |
+ROW |110473 |1416 |32612 |
+ROW |110474 |1416 |32613 |
+ROW |110475 |1416 |32614 |
+ROW |110476 |1416 |32615 |
+ROW |110477 |1325 |30685 |
+ROW |110478 |1277 |30066 |
+ROW |110479 |1277 |30067 |
+ROW |110480 |1277 |30068 |
+ROW |110481 |1277 |30069 |
+ROW |110482 |1277 |30070 |
+ROW |110483 |1276 |30071 |
+ROW |110484 |1271 |30072 |
+ROW |110485 |1274 |30073 |
+ROW |110486 |1274 |30074 |
+ROW |110487 |1273 |30075 |
+ROW |110488 |1275 |30076 |
+ROW |110489 |1275 |30077 |
+ROW |110490 |1275 |30078 |
+ROW |110491 |1275 |30079 |
+ROW |110492 |1278 |30080 |
+ROW |110493 |1278 |30081 |
+ROW |110494 |1278 |30082 |
+ROW |110495 |1272 |30083 |
+ROW |110496 |1272 |30084 |
+ROW |110497 |1272 |30085 |
+ROW |110498 |1070 |28341 |
+ROW |110499 |1073 |28342 |
+ROW |110500 |1073 |28344 |
+ROW |110501 |1073 |28345 |
+ROW |110502 |1073 |30141 |
+ROW |110503 |1076 |28354 |
+ROW |110504 |1076 |28355 |
+ROW |110505 |1076 |28356 |
+ROW |110506 |1076 |28357 |
+ROW |110507 |1075 |28358 |
+ROW |110508 |1072 |28359 |
+ROW |110509 |1072 |28360 |
+ROW |110510 |1074 |28361 |
+ROW |110511 |1074 |28362 |
+ROW |110512 |1074 |28363 |
+ROW |110513 |1074 |28364 |
+ROW |110514 |1074 |28365 |
+ROW |110515 |1074 |28366 |
+ROW |110516 |1074 |28367 |
+ROW |110517 |1077 |28368 |
+ROW |110518 |1077 |28369 |
+ROW |110519 |1077 |28370 |
+ROW |110520 |1077 |28371 |
+ROW |110521 |1077 |28372 |
+ROW |110522 |1077 |28373 |
+ROW |110523 |1071 |28374 |
+ROW |110524 |1071 |28375 |
+ROW |110525 |1071 |28376 |
+ROW |110526 |1085 |28388 |
+ROW |110527 |1082 |28390 |
+ROW |110528 |1082 |28391 |
+ROW |110529 |1079 |29994 |
+ROW |110530 |1085 |28404 |
+ROW |110531 |1085 |28405 |
+ROW |110532 |1085 |28406 |
+ROW |110533 |1085 |28407 |
+ROW |110534 |1085 |28408 |
+ROW |110535 |1085 |28409 |
+ROW |110536 |1084 |28411 |
+ROW |110537 |1081 |28412 |
+ROW |110538 |1080 |28413 |
+ROW |110539 |1080 |28414 |
+ROW |110540 |1080 |28415 |
+ROW |110541 |1080 |28416 |
+ROW |110542 |1083 |28417 |
+ROW |110543 |1083 |28418 |
+ROW |110544 |1083 |28419 |
+ROW |110545 |1083 |28420 |
+ROW |110546 |1083 |28421 |
+ROW |110547 |1083 |28422 |
+ROW |110548 |1086 |28423 |
+ROW |110549 |1086 |28424 |
+ROW |110550 |1086 |28425 |
+ROW |110551 |1085 |32732 |
+ROW |110552 |1085 |32733 |
+ROW |110553 |1085 |32734 |
+ROW |110554 |1085 |32735 |
+ROW |110555 |1085 |32736 |
+ROW |110556 |1085 |32737 |
+ROW |110557 |1085 |32738 |
+ROW |110558 |1085 |32739 |
+ROW |110559 |1085 |32740 |
+ROW |110560 |1095 |28465 |
+ROW |110561 |1097 |28466 |
+ROW |110562 |1097 |28467 |
+ROW |110563 |1100 |28474 |
+ROW |110564 |1100 |28475 |
+ROW |110565 |1100 |28476 |
+ROW |110566 |1099 |28477 |
+ROW |110567 |1096 |28478 |
+ROW |110568 |1096 |28479 |
+ROW |110569 |1098 |28480 |
+ROW |110570 |1098 |28481 |
+ROW |110571 |1104 |28495 |
+ROW |110572 |1103 |28496 |
+ROW |110573 |1355 |31969 |
+ROW |110574 |1355 |31970 |
+ROW |110575 |1356 |31971 |
+ROW |110576 |1355 |31972 |
+ROW |110577 |1355 |31973 |
+ROW |110578 |1355 |31974 |
+ROW |110579 |1355 |31975 |
+ROW |110580 |1355 |31976 |
+ROW |110581 |1355 |31977 |
+ROW |110582 |1355 |31978 |
+ROW |110583 |1355 |31979 |
+ROW |110584 |1355 |31980 |
+ROW |110585 |1355 |31981 |
+ROW |110586 |1355 |31982 |
+ROW |110587 |1355 |31983 |
+ROW |110588 |1355 |31984 |
+ROW |110589 |1355 |31985 |
+ROW |110590 |1355 |31986 |
+ROW |110591 |1355 |31987 |
+ROW |110592 |1355 |31988 |
+ROW |110593 |1355 |31989 |
+ROW |110594 |1355 |32461 |
+ROW |110595 |1355 |32462 |
TABLE |mappings
FIELDS|mappingid|valuemapid|value|newvalue |
@@ -35956,10 +35758,9 @@ ROW |66095 |33433 |1 |1 |0.1
ROW |66096 |33433 |2 |20 |6h |0 | |
ROW |66097 |33434 |1 |1 |0.01 |0 | |
ROW |66098 |33435 |1 |20 |6h |0 | |
-ROW |66099 |33436 |1 |20 |1h |0 | |
-ROW |66100 |33437 |1 |20 |1h |0 | |
+ROW |66099 |33436 |1 |20 |6h |0 | |
ROW |66101 |33438 |1 |20 |6h |0 | |
-ROW |66102 |33439 |1 |20 |1h |0 | |
+ROW |66102 |33439 |1 |20 |6h |0 | |
ROW |66103 |33440 |1 |20 |1d |0 | |
ROW |66104 |33441 |1 |20 |1d |0 | |
ROW |66105 |33443 |1 |1 |0.1 |0 | |
@@ -36122,10 +35923,9 @@ ROW |66261 |33569 |1 |1 |0.1
ROW |66262 |33569 |2 |20 |6h |0 | |
ROW |66263 |33570 |1 |1 |0.01 |0 | |
ROW |66264 |33571 |1 |20 |6h |0 | |
-ROW |66265 |33572 |1 |20 |1h |0 | |
-ROW |66266 |33573 |1 |20 |1h |0 | |
+ROW |66265 |33572 |1 |20 |6h |0 | |
ROW |66267 |33574 |1 |20 |6h |0 | |
-ROW |66268 |33575 |1 |20 |1h |0 | |
+ROW |66268 |33575 |1 |20 |6h |0 | |
ROW |66269 |33576 |1 |20 |1d |0 | |
ROW |66270 |33577 |1 |20 |1d |0 | |
ROW |66271 |33579 |1 |1 |0.1 |0 | |
@@ -36174,10 +35974,9 @@ ROW |66313 |33620 |1 |1 |0.1
ROW |66314 |33620 |2 |20 |6h |0 | |
ROW |66315 |33621 |1 |1 |0.01 |0 | |
ROW |66316 |33622 |1 |20 |6h |0 | |
-ROW |66317 |33623 |1 |20 |1h |0 | |
-ROW |66318 |33624 |1 |20 |1h |0 | |
+ROW |66317 |33623 |1 |20 |6h |0 | |
ROW |66319 |33625 |1 |20 |6h |0 | |
-ROW |66320 |33626 |1 |20 |1h |0 | |
+ROW |66320 |33626 |1 |20 |6h |0 | |
ROW |66321 |33627 |1 |20 |1d |0 | |
ROW |66322 |33628 |1 |20 |1d |0 | |
ROW |66323 |33630 |1 |1 |0.1 |0 | |
@@ -36226,10 +36025,9 @@ ROW |66365 |33671 |1 |1 |0.1
ROW |66366 |33671 |2 |20 |6h |0 | |
ROW |66367 |33672 |1 |1 |0.01 |0 | |
ROW |66368 |33673 |1 |20 |6h |0 | |
-ROW |66369 |33674 |1 |20 |1h |0 | |
-ROW |66370 |33675 |1 |20 |1h |0 | |
+ROW |66369 |33674 |1 |20 |6h |0 | |
ROW |66371 |33676 |1 |20 |6h |0 | |
-ROW |66372 |33677 |1 |20 |1h |0 | |
+ROW |66372 |33677 |1 |20 |6h |0 | |
ROW |66373 |33678 |1 |20 |1d |0 | |
ROW |66374 |33679 |1 |20 |1d |0 | |
ROW |66375 |33681 |1 |1 |0.1 |0 | |
@@ -36278,10 +36076,9 @@ ROW |66417 |33722 |1 |1 |0.1
ROW |66418 |33722 |2 |20 |6h |0 | |
ROW |66419 |33723 |1 |1 |0.01 |0 | |
ROW |66420 |33724 |1 |20 |6h |0 | |
-ROW |66421 |33725 |1 |20 |1h |0 | |
-ROW |66422 |33726 |1 |20 |1h |0 | |
+ROW |66421 |33725 |1 |20 |6h |0 | |
ROW |66423 |33727 |1 |20 |6h |0 | |
-ROW |66424 |33728 |1 |20 |1h |0 | |
+ROW |66424 |33728 |1 |20 |6h |0 | |
ROW |66425 |33729 |1 |20 |1d |0 | |
ROW |66426 |33730 |1 |20 |1d |0 | |
ROW |66427 |33732 |1 |1 |0.1 |0 | |
@@ -36330,10 +36127,9 @@ ROW |66469 |33773 |1 |1 |0.1
ROW |66470 |33773 |2 |20 |6h |0 | |
ROW |66471 |33774 |1 |1 |0.01 |0 | |
ROW |66472 |33775 |1 |20 |6h |0 | |
-ROW |66473 |33776 |1 |20 |1h |0 | |
-ROW |66474 |33777 |1 |20 |1h |0 | |
+ROW |66473 |33776 |1 |20 |6h |0 | |
ROW |66475 |33778 |1 |20 |6h |0 | |
-ROW |66476 |33779 |1 |20 |1h |0 | |
+ROW |66476 |33779 |1 |20 |6h |0 | |
ROW |66477 |33780 |1 |20 |1d |0 | |
ROW |66478 |33781 |1 |20 |1d |0 | |
ROW |66479 |33783 |1 |1 |0.1 |0 | |
@@ -36382,10 +36178,9 @@ ROW |66521 |33824 |1 |1 |0.1
ROW |66522 |33824 |2 |20 |6h |0 | |
ROW |66523 |33825 |1 |1 |0.01 |0 | |
ROW |66524 |33826 |1 |20 |6h |0 | |
-ROW |66525 |33827 |1 |20 |1h |0 | |
-ROW |66526 |33828 |1 |20 |1h |0 | |
+ROW |66525 |33827 |1 |20 |6h |0 | |
ROW |66527 |33829 |1 |20 |6h |0 | |
-ROW |66528 |33830 |1 |20 |1h |0 | |
+ROW |66528 |33830 |1 |20 |6h |0 | |
ROW |66529 |33831 |1 |20 |1d |0 | |
ROW |66530 |33832 |1 |20 |1d |0 | |
ROW |66531 |33834 |1 |1 |0.1 |0 | |
@@ -36434,10 +36229,9 @@ ROW |66573 |33875 |1 |1 |0.1
ROW |66574 |33875 |2 |20 |6h |0 | |
ROW |66575 |33876 |1 |1 |0.01 |0 | |
ROW |66576 |33877 |1 |20 |6h |0 | |
-ROW |66577 |33878 |1 |20 |1h |0 | |
-ROW |66578 |33879 |1 |20 |1h |0 | |
+ROW |66577 |33878 |1 |20 |6h |0 | |
ROW |66579 |33880 |1 |20 |6h |0 | |
-ROW |66580 |33881 |1 |20 |1h |0 | |
+ROW |66580 |33881 |1 |20 |6h |0 | |
ROW |66581 |33882 |1 |20 |1d |0 | |
ROW |66582 |33883 |1 |20 |1d |0 | |
ROW |66583 |33885 |1 |1 |0.1 |0 | |
@@ -36492,10 +36286,9 @@ ROW |66631 |33931 |1 |1 |0.1
ROW |66632 |33931 |2 |20 |6h |0 | |
ROW |66633 |33932 |1 |1 |0.01 |0 | |
ROW |66634 |33933 |1 |20 |6h |0 | |
-ROW |66635 |33934 |1 |20 |1h |0 | |
-ROW |66636 |33935 |1 |20 |1h |0 | |
+ROW |66635 |33934 |1 |20 |6h |0 | |
ROW |66637 |33936 |1 |20 |6h |0 | |
-ROW |66638 |33937 |1 |20 |1h |0 | |
+ROW |66638 |33937 |1 |20 |6h |0 | |
ROW |66639 |33938 |1 |20 |1d |0 | |
ROW |66640 |33939 |1 |20 |1d |0 | |
ROW |66641 |33941 |1 |1 |0.1 |0 | |
@@ -36544,10 +36337,9 @@ ROW |66683 |33982 |1 |1 |0.1
ROW |66684 |33982 |2 |20 |6h |0 | |
ROW |66685 |33983 |1 |1 |0.01 |0 | |
ROW |66686 |33984 |1 |20 |6h |0 | |
-ROW |66687 |33985 |1 |20 |1h |0 | |
-ROW |66688 |33986 |1 |20 |1h |0 | |
+ROW |66687 |33985 |1 |20 |6h |0 | |
ROW |66689 |33987 |1 |20 |6h |0 | |
-ROW |66690 |33988 |1 |20 |1h |0 | |
+ROW |66690 |33988 |1 |20 |6h |0 | |
ROW |66691 |33989 |1 |20 |1d |0 | |
ROW |66692 |33990 |1 |20 |1d |0 | |
ROW |66693 |33992 |1 |1 |0.1 |0 | |
@@ -36596,10 +36388,9 @@ ROW |66735 |34033 |1 |1 |0.1
ROW |66736 |34033 |2 |20 |6h |0 | |
ROW |66737 |34034 |1 |1 |0.01 |0 | |
ROW |66738 |34035 |1 |20 |6h |0 | |
-ROW |66739 |34036 |1 |20 |1h |0 | |
-ROW |66740 |34037 |1 |20 |1h |0 | |
+ROW |66739 |34036 |1 |20 |6h |0 | |
ROW |66741 |34038 |1 |20 |6h |0 | |
-ROW |66742 |34039 |1 |20 |1h |0 | |
+ROW |66742 |34039 |1 |20 |6h |0 | |
ROW |66743 |34040 |1 |20 |1d |0 | |
ROW |66744 |34041 |1 |20 |1d |0 | |
ROW |66745 |34043 |1 |1 |0.1 |0 | |
@@ -36642,6 +36433,28 @@ ROW |66781 |34080 |1 |1 |0.1
ROW |66782 |34080 |2 |20 |6h |0 | |
ROW |66783 |34081 |1 |20 |6h |0 | |
ROW |66784 |34082 |1 |20 |6h |0 | |
+ROW |66785 |34083 |1 |20 |6h |0 | |
+ROW |66786 |33595 |1 |20 |6h |0 | |
+ROW |66787 |34084 |1 |20 |6h |0 | |
+ROW |66788 |33646 |1 |20 |6h |0 | |
+ROW |66789 |34085 |1 |20 |6h |0 | |
+ROW |66790 |33697 |1 |20 |6h |0 | |
+ROW |66791 |34086 |1 |20 |6h |0 | |
+ROW |66792 |33748 |1 |20 |6h |0 | |
+ROW |66793 |34087 |1 |20 |6h |0 | |
+ROW |66794 |33799 |1 |20 |6h |0 | |
+ROW |66795 |34088 |1 |20 |6h |0 | |
+ROW |66796 |33850 |1 |20 |6h |0 | |
+ROW |66797 |34089 |1 |20 |6h |0 | |
+ROW |66798 |33901 |1 |20 |6h |0 | |
+ROW |66799 |34090 |1 |20 |6h |0 | |
+ROW |66800 |33459 |1 |20 |6h |0 | |
+ROW |66801 |34091 |1 |20 |6h |0 | |
+ROW |66802 |33957 |1 |20 |6h |0 | |
+ROW |66803 |34092 |1 |20 |6h |0 | |
+ROW |66804 |34008 |1 |20 |6h |0 | |
+ROW |66805 |34093 |1 |20 |6h |0 | |
+ROW |66806 |34059 |1 |20 |6h |0 | |
TABLE |sysmap_shape
FIELDS|sysmap_shapeid|sysmapid|type|x |y |width|height|text |font|font_size|font_color|text_halign|text_valign|border_type|border_width|border_color|background_color|zindex|
@@ -36751,271 +36564,271 @@ ROW |126 |32975 |{#NODE} |$.node
TABLE |lld_override
FIELDS|lld_overrideid|itemid|name |step|evaltype|formula|stop|
-ROW |168 |30961 |trigger |1 |0 | |0 |
-ROW |169 |33063 |Primary metrics |1 |0 | |0 |
-ROW |170 |33063 |Arbiter metrics |2 |0 | |0 |
-ROW |171 |32742 |ID filter |1 |0 | |0 |
-ROW |172 |32743 |Self-test |1 |0 | |0 |
-ROW |173 |32743 |Not NVMe |2 |0 | |0 |
-ROW |174 |32754 |ID filter |1 |0 | |0 |
-ROW |175 |32755 |Self-test |1 |0 | |0 |
-ROW |176 |32755 |Not NVMe |2 |0 | |0 |
-ROW |177 |28306 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
-ROW |178 |28306 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
-ROW |179 |28306 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
-ROW |180 |28306 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
-ROW |181 |28307 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
-ROW |182 |28307 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
-ROW |183 |28307 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
-ROW |184 |28307 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
-ROW |185 |32306 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
-ROW |186 |32306 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
-ROW |187 |32306 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
-ROW |188 |32306 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
-ROW |189 |33598 |Temp |1 |0 | |0 |
-ROW |190 |33599 |Temp |1 |0 | |0 |
-ROW |191 |33649 |Temp |1 |0 | |0 |
-ROW |192 |33650 |Temp |1 |0 | |0 |
-ROW |193 |33700 |Temp |1 |0 | |0 |
-ROW |194 |33701 |Temp |1 |0 | |0 |
-ROW |195 |33751 |Temp |1 |0 | |0 |
-ROW |196 |33752 |Temp |1 |0 | |0 |
-ROW |197 |33802 |Temp |1 |0 | |0 |
-ROW |198 |33803 |Temp |1 |0 | |0 |
-ROW |199 |33853 |Temp |1 |0 | |0 |
-ROW |200 |33854 |Temp |1 |0 | |0 |
-ROW |201 |33904 |Temp |1 |0 | |0 |
-ROW |202 |33905 |Temp |1 |0 | |0 |
-ROW |203 |33462 |Temp |1 |0 | |0 |
-ROW |204 |33463 |Temp |1 |0 | |0 |
-ROW |205 |33960 |Temp |1 |0 | |0 |
-ROW |206 |33961 |Temp |1 |0 | |0 |
-ROW |207 |34011 |Temp |1 |0 | |0 |
-ROW |208 |34012 |Temp |1 |0 | |0 |
-ROW |209 |34062 |Temp |1 |0 | |0 |
-ROW |210 |34063 |Temp |1 |0 | |0 |
-ROW |211 |32618 |Do not discover aggregate metrics|1 |0 | |0 |
-ROW |212 |30687 |trigger SENSOR_LO_WARN |1 |0 | |0 |
-ROW |213 |30687 |trigger SENSOR_LO_CRIT |2 |0 | |0 |
-ROW |214 |30687 |trigger SENSOR_LO_DISAST |3 |0 | |0 |
-ROW |215 |30687 |trigger SENSOR_HI_WARN |4 |0 | |0 |
-ROW |216 |30687 |trigger SENSOR_HI_CRIT |5 |0 | |0 |
-ROW |217 |30687 |trigger SENSOR_HI_DISAST |6 |0 | |0 |
+ROW |218 |30961 |trigger |1 |0 | |0 |
+ROW |219 |33063 |Primary metrics |1 |0 | |0 |
+ROW |220 |33063 |Arbiter metrics |2 |0 | |0 |
+ROW |221 |32742 |ID filter |1 |0 | |0 |
+ROW |222 |32743 |Self-test |1 |0 | |0 |
+ROW |223 |32743 |Not NVMe |2 |0 | |0 |
+ROW |224 |32754 |ID filter |1 |0 | |0 |
+ROW |225 |32755 |Self-test |1 |0 | |0 |
+ROW |226 |32755 |Not NVMe |2 |0 | |0 |
+ROW |227 |28306 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
+ROW |228 |28306 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
+ROW |229 |28306 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
+ROW |230 |28306 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
+ROW |231 |28307 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
+ROW |232 |28307 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
+ROW |233 |28307 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
+ROW |234 |28307 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
+ROW |235 |32306 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
+ROW |236 |32306 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
+ROW |237 |32306 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
+ROW |238 |32306 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
+ROW |239 |33598 |Temp |1 |0 | |0 |
+ROW |240 |33599 |Temp |1 |0 | |0 |
+ROW |241 |33649 |Temp |1 |0 | |0 |
+ROW |242 |33650 |Temp |1 |0 | |0 |
+ROW |243 |33700 |Temp |1 |0 | |0 |
+ROW |244 |33701 |Temp |1 |0 | |0 |
+ROW |245 |33751 |Temp |1 |0 | |0 |
+ROW |246 |33752 |Temp |1 |0 | |0 |
+ROW |247 |33802 |Temp |1 |0 | |0 |
+ROW |248 |33803 |Temp |1 |0 | |0 |
+ROW |249 |33853 |Temp |1 |0 | |0 |
+ROW |250 |33854 |Temp |1 |0 | |0 |
+ROW |251 |33904 |Temp |1 |0 | |0 |
+ROW |252 |33905 |Temp |1 |0 | |0 |
+ROW |253 |33462 |Temp |1 |0 | |0 |
+ROW |254 |33463 |Temp |1 |0 | |0 |
+ROW |255 |33960 |Temp |1 |0 | |0 |
+ROW |256 |33961 |Temp |1 |0 | |0 |
+ROW |257 |34011 |Temp |1 |0 | |0 |
+ROW |258 |34012 |Temp |1 |0 | |0 |
+ROW |259 |34062 |Temp |1 |0 | |0 |
+ROW |260 |34063 |Temp |1 |0 | |0 |
+ROW |261 |32618 |Do not discover aggregate metrics|1 |0 | |0 |
+ROW |262 |30687 |trigger SENSOR_LO_WARN |1 |0 | |0 |
+ROW |263 |30687 |trigger SENSOR_LO_CRIT |2 |0 | |0 |
+ROW |264 |30687 |trigger SENSOR_LO_DISAST |3 |0 | |0 |
+ROW |265 |30687 |trigger SENSOR_HI_WARN |4 |0 | |0 |
+ROW |266 |30687 |trigger SENSOR_HI_CRIT |5 |0 | |0 |
+ROW |267 |30687 |trigger SENSOR_HI_DISAST |6 |0 | |0 |
TABLE |lld_override_condition
FIELDS|lld_override_conditionid|lld_overrideid|operator|macro |value |
-ROW |116 |168 |8 |{#GRPC.CODE} |{$ETCD.GRPC_CODE.TRIGGER.MATCHES}|
-ROW |117 |169 |8 |{#NODE_STATE} |1 |
-ROW |118 |170 |8 |{#NODE_STATE} |7 |
-ROW |119 |171 |8 |{#ID} |{$SMART.ATTRIBUTE.ID.MATCHES} |
-ROW |120 |171 |8 |{#NAME} |{$SMART.DISK.NAME.MATCHES} |
-ROW |121 |172 |8 |{#DISKTYPE} |nvme |
-ROW |122 |173 |9 |{#DISKTYPE} |nvme |
-ROW |123 |174 |8 |{#ID} |{$SMART.ATTRIBUTE.ID.MATCHES} |
-ROW |124 |174 |8 |{#NAME} |{$SMART.DISK.NAME.MATCHES} |
-ROW |125 |175 |8 |{#DISKTYPE} |nvme |
-ROW |126 |176 |9 |{#DISKTYPE} |nvme |
-ROW |127 |177 |8 |{#THRESHOLD_LO_WARN} |^$ |
-ROW |128 |178 |8 |{#THRESHOLD_LO_CRIT} |^$ |
-ROW |129 |179 |8 |{#THRESHOLD_HI_WARN} |^$ |
-ROW |130 |180 |8 |{#THRESHOLD_HI_CRIT} |^$ |
-ROW |131 |181 |8 |{#THRESHOLD_LO_WARN} |^$ |
-ROW |132 |182 |8 |{#THRESHOLD_LO_CRIT} |^$ |
-ROW |133 |183 |8 |{#THRESHOLD_HI_WARN} |^$ |
-ROW |134 |184 |8 |{#THRESHOLD_HI_CRIT} |^$ |
-ROW |135 |185 |8 |{#THRESHOLD_LO_WARN} |^$ |
-ROW |136 |186 |8 |{#THRESHOLD_LO_CRIT} |^$ |
-ROW |137 |187 |8 |{#THRESHOLD_HI_WARN} |^$ |
-ROW |138 |188 |8 |{#THRESHOLD_HI_CRIT} |^$ |
-ROW |139 |189 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |140 |190 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |141 |191 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |142 |192 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |143 |193 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |144 |194 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |145 |195 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |146 |196 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |147 |197 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |148 |198 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |149 |199 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |150 |200 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |151 |201 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |152 |202 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |153 |203 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |154 |204 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |155 |205 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |156 |206 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |157 |207 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |158 |208 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |159 |209 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |160 |210 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |161 |211 |8 |{#FSTYPE} |3&pipe;4 |
+ROW |162 |218 |8 |{#GRPC.CODE} |{$ETCD.GRPC_CODE.TRIGGER.MATCHES}|
+ROW |163 |219 |8 |{#NODE_STATE} |1 |
+ROW |164 |220 |8 |{#NODE_STATE} |7 |
+ROW |165 |221 |8 |{#ID} |{$SMART.ATTRIBUTE.ID.MATCHES} |
+ROW |166 |221 |8 |{#NAME} |{$SMART.DISK.NAME.MATCHES} |
+ROW |167 |222 |8 |{#DISKTYPE} |nvme |
+ROW |168 |223 |9 |{#DISKTYPE} |nvme |
+ROW |169 |224 |8 |{#ID} |{$SMART.ATTRIBUTE.ID.MATCHES} |
+ROW |170 |224 |8 |{#NAME} |{$SMART.DISK.NAME.MATCHES} |
+ROW |171 |225 |8 |{#DISKTYPE} |nvme |
+ROW |172 |226 |9 |{#DISKTYPE} |nvme |
+ROW |173 |227 |8 |{#THRESHOLD_LO_WARN} |^$ |
+ROW |174 |228 |8 |{#THRESHOLD_LO_CRIT} |^$ |
+ROW |175 |229 |8 |{#THRESHOLD_HI_WARN} |^$ |
+ROW |176 |230 |8 |{#THRESHOLD_HI_CRIT} |^$ |
+ROW |177 |231 |8 |{#THRESHOLD_LO_WARN} |^$ |
+ROW |178 |232 |8 |{#THRESHOLD_LO_CRIT} |^$ |
+ROW |179 |233 |8 |{#THRESHOLD_HI_WARN} |^$ |
+ROW |180 |234 |8 |{#THRESHOLD_HI_CRIT} |^$ |
+ROW |181 |235 |8 |{#THRESHOLD_LO_WARN} |^$ |
+ROW |182 |236 |8 |{#THRESHOLD_LO_CRIT} |^$ |
+ROW |183 |237 |8 |{#THRESHOLD_HI_WARN} |^$ |
+ROW |184 |238 |8 |{#THRESHOLD_HI_CRIT} |^$ |
+ROW |185 |239 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |186 |240 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |187 |241 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |188 |242 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |189 |243 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |190 |244 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |191 |245 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |192 |246 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |193 |247 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |194 |248 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |195 |249 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |196 |250 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |197 |251 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |198 |252 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |199 |253 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |200 |254 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |201 |255 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |202 |256 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |203 |257 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |204 |258 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |205 |259 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |206 |260 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |207 |261 |8 |{#FSTYPE} |3&pipe;4 |
TABLE |lld_override_operation
FIELDS|lld_override_operationid|lld_overrideid|operationobject|operator|value |
-ROW |171 |168 |1 |2 |Too many failed gRPC requests |
-ROW |172 |169 |0 |2 |Number of replicas |
-ROW |173 |169 |0 |2 |Unhealthy replicas |
-ROW |174 |169 |0 |2 |Number of unhealthy replicas |
-ROW |175 |169 |0 |2 |Replication lag |
-ROW |176 |170 |0 |2 |Replication lag |
-ROW |177 |171 |0 |8 | |
-ROW |178 |172 |0 |2 |Self-test |
-ROW |179 |173 |0 |8 |Media&pipe;Percentage&pipe;Critical |
-ROW |180 |174 |0 |8 | |
-ROW |181 |175 |0 |2 |Self-test |
-ROW |182 |176 |0 |8 |Media&pipe;Percentage&pipe;Critical |
-ROW |183 |177 |1 |8 |Temperature is below the warning threshold |
-ROW |184 |178 |1 |8 |Temperature is below the critical threshold|
-ROW |185 |179 |1 |8 |Temperature is above the warning threshold |
-ROW |186 |180 |1 |8 |Temperature is above the critical threshold|
-ROW |187 |181 |1 |8 |Fan speed is below the warning threshold |
-ROW |188 |182 |1 |8 |Fan speed is below the critical threshold |
-ROW |189 |183 |1 |8 |Fan speed is above the warning threshold |
-ROW |190 |184 |1 |8 |Fan speed is above the critical threshold |
-ROW |191 |185 |1 |8 |Voltage is below the warning threshold |
-ROW |192 |186 |1 |8 |Voltage is below the critical threshold |
-ROW |193 |187 |1 |8 |Voltage is above the warning threshold |
-ROW |194 |188 |1 |8 |Voltage is above the critical threshold |
-ROW |195 |189 |0 |2 |Humidity |
-ROW |196 |190 |0 |2 |Humidity |
-ROW |197 |191 |0 |2 |Humidity |
-ROW |198 |192 |0 |2 |Humidity |
-ROW |199 |193 |0 |2 |Humidity |
-ROW |200 |194 |0 |2 |Humidity |
-ROW |201 |195 |0 |2 |Humidity |
-ROW |202 |196 |0 |2 |Humidity |
-ROW |203 |197 |0 |2 |Humidity |
-ROW |204 |198 |0 |2 |Humidity |
-ROW |205 |199 |0 |2 |Humidity |
-ROW |206 |200 |0 |2 |Humidity |
-ROW |207 |201 |0 |2 |Humidity |
-ROW |208 |202 |0 |2 |Humidity |
-ROW |209 |203 |0 |2 |Humidity |
-ROW |210 |204 |0 |2 |Humidity |
-ROW |211 |205 |0 |2 |Humidity |
-ROW |212 |206 |0 |2 |Humidity |
-ROW |213 |207 |0 |2 |Humidity |
-ROW |214 |208 |0 |2 |Humidity |
-ROW |215 |209 |0 |2 |Humidity |
-ROW |216 |210 |0 |2 |Humidity |
-ROW |217 |211 |0 |2 |Saved |
-ROW |218 |212 |1 |2 |{#SENSOR_LO_WARN} |
-ROW |219 |213 |1 |2 |{#SENSOR_LO_CRIT} |
-ROW |220 |214 |1 |2 |{#SENSOR_LO_DISAST} |
-ROW |221 |215 |1 |2 |{#SENSOR_HI_WARN} |
-ROW |222 |216 |1 |2 |{#SENSOR_HI_CRIT} |
-ROW |223 |217 |1 |2 |{#SENSOR_HI_DISAST} |
+ROW |224 |218 |1 |2 |Too many failed gRPC requests |
+ROW |225 |219 |0 |2 |Number of replicas |
+ROW |226 |219 |0 |2 |Unhealthy replicas |
+ROW |227 |219 |0 |2 |Number of unhealthy replicas |
+ROW |228 |219 |0 |2 |Replication lag |
+ROW |229 |220 |0 |2 |Replication lag |
+ROW |230 |221 |0 |8 | |
+ROW |231 |222 |0 |2 |Self-test |
+ROW |232 |223 |0 |8 |Media&pipe;Percentage&pipe;Critical |
+ROW |233 |224 |0 |8 | |
+ROW |234 |225 |0 |2 |Self-test |
+ROW |235 |226 |0 |8 |Media&pipe;Percentage&pipe;Critical |
+ROW |236 |227 |1 |8 |Temperature is below the warning threshold |
+ROW |237 |228 |1 |8 |Temperature is below the critical threshold|
+ROW |238 |229 |1 |8 |Temperature is above the warning threshold |
+ROW |239 |230 |1 |8 |Temperature is above the critical threshold|
+ROW |240 |231 |1 |8 |Fan speed is below the warning threshold |
+ROW |241 |232 |1 |8 |Fan speed is below the critical threshold |
+ROW |242 |233 |1 |8 |Fan speed is above the warning threshold |
+ROW |243 |234 |1 |8 |Fan speed is above the critical threshold |
+ROW |244 |235 |1 |8 |Voltage is below the warning threshold |
+ROW |245 |236 |1 |8 |Voltage is below the critical threshold |
+ROW |246 |237 |1 |8 |Voltage is above the warning threshold |
+ROW |247 |238 |1 |8 |Voltage is above the critical threshold |
+ROW |248 |239 |0 |2 |Humidity |
+ROW |249 |240 |0 |2 |Humidity |
+ROW |250 |241 |0 |2 |Humidity |
+ROW |251 |242 |0 |2 |Humidity |
+ROW |252 |243 |0 |2 |Humidity |
+ROW |253 |244 |0 |2 |Humidity |
+ROW |254 |245 |0 |2 |Humidity |
+ROW |255 |246 |0 |2 |Humidity |
+ROW |256 |247 |0 |2 |Humidity |
+ROW |257 |248 |0 |2 |Humidity |
+ROW |258 |249 |0 |2 |Humidity |
+ROW |259 |250 |0 |2 |Humidity |
+ROW |260 |251 |0 |2 |Humidity |
+ROW |261 |252 |0 |2 |Humidity |
+ROW |262 |253 |0 |2 |Humidity |
+ROW |263 |254 |0 |2 |Humidity |
+ROW |264 |255 |0 |2 |Humidity |
+ROW |265 |256 |0 |2 |Humidity |
+ROW |266 |257 |0 |2 |Humidity |
+ROW |267 |258 |0 |2 |Humidity |
+ROW |268 |259 |0 |2 |Humidity |
+ROW |269 |260 |0 |2 |Humidity |
+ROW |270 |261 |0 |2 |Saved |
+ROW |271 |262 |1 |2 |{#SENSOR_LO_WARN} |
+ROW |272 |263 |1 |2 |{#SENSOR_LO_CRIT} |
+ROW |273 |264 |1 |2 |{#SENSOR_LO_DISAST} |
+ROW |274 |265 |1 |2 |{#SENSOR_HI_WARN} |
+ROW |275 |266 |1 |2 |{#SENSOR_HI_CRIT} |
+ROW |276 |267 |1 |2 |{#SENSOR_HI_DISAST} |
TABLE |lld_override_opstatus
FIELDS|lld_override_operationid|status|
-ROW |171 |0 |
-ROW |172 |0 |
-ROW |173 |0 |
-ROW |174 |0 |
-ROW |175 |0 |
-ROW |176 |0 |
-ROW |177 |0 |
-ROW |178 |0 |
-ROW |179 |0 |
-ROW |180 |0 |
-ROW |181 |0 |
-ROW |182 |0 |
-ROW |183 |0 |
-ROW |184 |0 |
-ROW |185 |0 |
-ROW |186 |0 |
-ROW |187 |0 |
-ROW |188 |0 |
-ROW |189 |0 |
-ROW |190 |0 |
-ROW |191 |0 |
-ROW |192 |0 |
-ROW |193 |0 |
-ROW |194 |0 |
-ROW |195 |0 |
-ROW |196 |0 |
-ROW |197 |0 |
-ROW |198 |0 |
-ROW |199 |0 |
-ROW |200 |0 |
-ROW |201 |0 |
-ROW |202 |0 |
-ROW |203 |0 |
-ROW |204 |0 |
-ROW |205 |0 |
-ROW |206 |0 |
-ROW |207 |0 |
-ROW |208 |0 |
-ROW |209 |0 |
-ROW |210 |0 |
-ROW |211 |0 |
-ROW |212 |0 |
-ROW |213 |0 |
-ROW |214 |0 |
-ROW |215 |0 |
-ROW |216 |0 |
-ROW |217 |0 |
-ROW |218 |0 |
-ROW |219 |0 |
-ROW |220 |0 |
-ROW |221 |0 |
-ROW |222 |0 |
-ROW |223 |0 |
+ROW |224 |0 |
+ROW |225 |0 |
+ROW |226 |0 |
+ROW |227 |0 |
+ROW |228 |0 |
+ROW |229 |0 |
+ROW |230 |0 |
+ROW |231 |0 |
+ROW |232 |0 |
+ROW |233 |0 |
+ROW |234 |0 |
+ROW |235 |0 |
+ROW |236 |0 |
+ROW |237 |0 |
+ROW |238 |0 |
+ROW |239 |0 |
+ROW |240 |0 |
+ROW |241 |0 |
+ROW |242 |0 |
+ROW |243 |0 |
+ROW |244 |0 |
+ROW |245 |0 |
+ROW |246 |0 |
+ROW |247 |0 |
+ROW |248 |0 |
+ROW |249 |0 |
+ROW |250 |0 |
+ROW |251 |0 |
+ROW |252 |0 |
+ROW |253 |0 |
+ROW |254 |0 |
+ROW |255 |0 |
+ROW |256 |0 |
+ROW |257 |0 |
+ROW |258 |0 |
+ROW |259 |0 |
+ROW |260 |0 |
+ROW |261 |0 |
+ROW |262 |0 |
+ROW |263 |0 |
+ROW |264 |0 |
+ROW |265 |0 |
+ROW |266 |0 |
+ROW |267 |0 |
+ROW |268 |0 |
+ROW |269 |0 |
+ROW |270 |0 |
+ROW |271 |0 |
+ROW |272 |0 |
+ROW |273 |0 |
+ROW |274 |0 |
+ROW |275 |0 |
+ROW |276 |0 |
TABLE |lld_override_opdiscover
FIELDS|lld_override_operationid|discover|
-ROW |171 |0 |
-ROW |172 |0 |
-ROW |173 |0 |
-ROW |174 |0 |
-ROW |175 |1 |
-ROW |176 |1 |
-ROW |177 |1 |
-ROW |178 |1 |
-ROW |179 |1 |
-ROW |180 |1 |
-ROW |181 |1 |
-ROW |182 |1 |
-ROW |183 |1 |
-ROW |184 |1 |
-ROW |185 |1 |
-ROW |186 |1 |
-ROW |187 |1 |
-ROW |188 |1 |
-ROW |189 |1 |
-ROW |190 |1 |
-ROW |191 |1 |
-ROW |192 |1 |
-ROW |193 |1 |
-ROW |194 |1 |
-ROW |195 |1 |
-ROW |196 |1 |
-ROW |197 |1 |
-ROW |198 |1 |
-ROW |199 |1 |
-ROW |200 |1 |
-ROW |201 |1 |
-ROW |202 |1 |
-ROW |203 |1 |
-ROW |204 |1 |
-ROW |205 |1 |
-ROW |206 |1 |
-ROW |207 |1 |
-ROW |208 |1 |
-ROW |209 |1 |
-ROW |210 |1 |
-ROW |211 |1 |
-ROW |212 |1 |
-ROW |213 |1 |
-ROW |214 |1 |
-ROW |215 |1 |
-ROW |216 |1 |
-ROW |217 |1 |
-ROW |218 |1 |
-ROW |219 |1 |
-ROW |220 |1 |
-ROW |221 |1 |
-ROW |222 |1 |
-ROW |223 |1 |
+ROW |224 |0 |
+ROW |225 |0 |
+ROW |226 |0 |
+ROW |227 |0 |
+ROW |228 |1 |
+ROW |229 |1 |
+ROW |230 |1 |
+ROW |231 |1 |
+ROW |232 |1 |
+ROW |233 |1 |
+ROW |234 |1 |
+ROW |235 |1 |
+ROW |236 |1 |
+ROW |237 |1 |
+ROW |238 |1 |
+ROW |239 |1 |
+ROW |240 |1 |
+ROW |241 |1 |
+ROW |242 |1 |
+ROW |243 |1 |
+ROW |244 |1 |
+ROW |245 |1 |
+ROW |246 |1 |
+ROW |247 |1 |
+ROW |248 |1 |
+ROW |249 |1 |
+ROW |250 |1 |
+ROW |251 |1 |
+ROW |252 |1 |
+ROW |253 |1 |
+ROW |254 |1 |
+ROW |255 |1 |
+ROW |256 |1 |
+ROW |257 |1 |
+ROW |258 |1 |
+ROW |259 |1 |
+ROW |260 |1 |
+ROW |261 |1 |
+ROW |262 |1 |
+ROW |263 |1 |
+ROW |264 |1 |
+ROW |265 |1 |
+ROW |266 |1 |
+ROW |267 |1 |
+ROW |268 |1 |
+ROW |269 |1 |
+ROW |270 |1 |
+ROW |271 |1 |
+ROW |272 |1 |
+ROW |273 |1 |
+ROW |274 |1 |
+ROW |275 |1 |
+ROW |276 |1 |